PageRenderTime 55ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

/quassel-0.7.3/src/qtui/awaylogview.cpp

#
C++ | 54 lines | 27 code | 8 blank | 19 comment | 3 complexity | 1fc7b7d7ba9c94ba389f870a99338248 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0
  1. /***************************************************************************
  2. * Copyright (C) 2005-08 by the Quassel Project *
  3. * devel@quassel-irc.org *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU General Public License as published by *
  7. * the Free Software Foundation; either version 2 of the License, or *
  8. * (at your option) version 3. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU General Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU General Public License *
  16. * along with this program; if not, write to the *
  17. * Free Software Foundation, Inc., *
  18. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
  19. ***************************************************************************/
  20. #include "awaylogview.h"
  21. #include <QAction>
  22. #include <QMenu>
  23. #include "awaylogfilter.h"
  24. #include "chatlinemodel.h"
  25. #include "chatscene.h"
  26. AwayLogView::AwayLogView(AwayLogFilter *filter, QWidget *parent)
  27. : ChatMonitorView(filter, parent)
  28. {
  29. setWindowTitle(tr("Away Log"));
  30. }
  31. void AwayLogView::addActionsToMenu(QMenu *menu, const QPointF &pos) {
  32. ChatView::addActionsToMenu(menu, pos);
  33. if(!menu->isEmpty())
  34. menu->addSeparator();
  35. if(scene()->columnByScenePos(pos) == ChatLineModel::SenderColumn) {
  36. menu->addSeparator();
  37. QAction *showNetworkAction = menu->addAction(tr("Show Network Name"), this, SLOT(showFieldsChanged(bool)));
  38. showNetworkAction->setCheckable(true);
  39. showNetworkAction->setChecked(filter()->showFields() & ChatMonitorFilter::NetworkField);
  40. showNetworkAction->setData(ChatMonitorFilter::NetworkField);
  41. QAction *showBufferAction = menu->addAction(tr("Show Buffer Name"), this, SLOT(showFieldsChanged(bool)));
  42. showBufferAction->setCheckable(true);
  43. showBufferAction->setChecked(filter()->showFields() & ChatMonitorFilter::BufferField);
  44. showBufferAction->setData(ChatMonitorFilter::BufferField);
  45. }
  46. }