uisupport: Provide helpers for dealing with widget changes
[quassel.git] / src / qtui / awaylogview.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "awaylogview.h"
22
23 #include <QAction>
24 #include <QMenu>
25
26 #include "action.h"
27 #include "awaylogfilter.h"
28 #include "chatlinemodel.h"
29 #include "chatscene.h"
30
31 AwayLogView::AwayLogView(AwayLogFilter *filter, QWidget *parent)
32     : ChatMonitorView(filter, parent)
33 {
34     setWindowTitle(tr("Away Log"));
35 }
36
37
38 void AwayLogView::addActionsToMenu(QMenu *menu, const QPointF &pos)
39 {
40     ChatView::addActionsToMenu(menu, pos);
41     if (!menu->isEmpty())
42         menu->addSeparator();
43
44     if (scene()->columnByScenePos(pos) == ChatLineModel::SenderColumn) {
45         menu->addSeparator();
46
47         auto *showNetworkAction = new Action(tr("Show Network Name"), menu, this, SLOT(showFieldsChanged(bool)));
48         showNetworkAction->setCheckable(true);
49         showNetworkAction->setChecked(filter()->showFields() & ChatMonitorFilter::NetworkField);
50         showNetworkAction->setData(ChatMonitorFilter::NetworkField);
51         menu->addAction(showNetworkAction);
52
53         auto *showBufferAction = new Action(tr("Show Buffer Name"), menu, this, SLOT(showFieldsChanged(bool)));
54         showBufferAction->setCheckable(true);
55         showBufferAction->setChecked(filter()->showFields() & ChatMonitorFilter::BufferField);
56         showBufferAction->setData(ChatMonitorFilter::BufferField);
57         menu->addAction(showBufferAction);
58     }
59 }