cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / awaylogview.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2020 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 void AwayLogView::addActionsToMenu(QMenu* menu, const QPointF& pos)
38 {
39     ChatView::addActionsToMenu(menu, pos);
40     if (!menu->isEmpty())
41         menu->addSeparator();
42
43     if (scene()->columnByScenePos(pos) == ChatLineModel::SenderColumn) {
44         menu->addSeparator();
45
46         auto* showNetworkAction = new Action(tr("Show Network Name"), menu, this, &AwayLogView::showFieldsChanged);
47         showNetworkAction->setCheckable(true);
48         showNetworkAction->setChecked(filter()->showFields() & ChatMonitorFilter::NetworkField);
49         showNetworkAction->setData(ChatMonitorFilter::NetworkField);
50         menu->addAction(showNetworkAction);
51
52         auto* showBufferAction = new Action(tr("Show Buffer Name"), menu, this, &AwayLogView::showFieldsChanged);
53         showBufferAction->setCheckable(true);
54         showBufferAction->setChecked(filter()->showFields() & ChatMonitorFilter::BufferField);
55         showBufferAction->setData(ChatMonitorFilter::BufferField);
56         menu->addAction(showBufferAction);
57     }
58 }