X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fawaylogview.cpp;h=bc98ea931237435561566ffb0ebb184056631ced;hp=ed87085cf7f312c1b93d8da8a7e5b625cdebce9a;hb=f04db2cb802b1296ca739c823495930c71d3b4ab;hpb=c91b08f855152297a89ec3586792f6616acd0eb9 diff --git a/src/qtui/awaylogview.cpp b/src/qtui/awaylogview.cpp index ed87085c..bc98ea93 100644 --- a/src/qtui/awaylogview.cpp +++ b/src/qtui/awaylogview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2013 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "awaylogview.h" @@ -28,27 +28,29 @@ #include "chatscene.h" AwayLogView::AwayLogView(AwayLogFilter *filter, QWidget *parent) - : ChatMonitorView(filter, parent) + : ChatMonitorView(filter, parent) { - setWindowTitle(tr("Away Log")); + setWindowTitle(tr("Away Log")); } -void AwayLogView::addActionsToMenu(QMenu *menu, const QPointF &pos) { - ChatView::addActionsToMenu(menu, pos); - if(!menu->isEmpty()) - menu->addSeparator(); - if(scene()->columnByScenePos(pos) == ChatLineModel::SenderColumn) { - menu->addSeparator(); - - QAction *showNetworkAction = menu->addAction(tr("Show Network Name"), this, SLOT(showFieldsChanged(bool))); - showNetworkAction->setCheckable(true); - showNetworkAction->setChecked(filter()->showFields() & ChatMonitorFilter::NetworkField); - showNetworkAction->setData(ChatMonitorFilter::NetworkField); - - QAction *showBufferAction = menu->addAction(tr("Show Buffer Name"), this, SLOT(showFieldsChanged(bool))); - showBufferAction->setCheckable(true); - showBufferAction->setChecked(filter()->showFields() & ChatMonitorFilter::BufferField); - showBufferAction->setData(ChatMonitorFilter::BufferField); - } +void AwayLogView::addActionsToMenu(QMenu *menu, const QPointF &pos) +{ + ChatView::addActionsToMenu(menu, pos); + if (!menu->isEmpty()) + menu->addSeparator(); + + if (scene()->columnByScenePos(pos) == ChatLineModel::SenderColumn) { + menu->addSeparator(); + + QAction *showNetworkAction = menu->addAction(tr("Show Network Name"), this, SLOT(showFieldsChanged(bool))); + showNetworkAction->setCheckable(true); + showNetworkAction->setChecked(filter()->showFields() & ChatMonitorFilter::NetworkField); + showNetworkAction->setData(ChatMonitorFilter::NetworkField); + + QAction *showBufferAction = menu->addAction(tr("Show Buffer Name"), this, SLOT(showFieldsChanged(bool))); + showBufferAction->setCheckable(true); + showBufferAction->setChecked(filter()->showFields() & ChatMonitorFilter::BufferField); + showBufferAction->setData(ChatMonitorFilter::BufferField); + } }