Fix menu names according to seele's review p.16
[quassel.git] / src / qtui / chatmonitorview.cpp
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
21 #include "chatmonitorview.h"
22
23 #include <QAction>
24 #include <QMenu>
25 #include <QContextMenuEvent>
26
27 #include "chatmonitorfilter.h"
28 #include "chatlinemodel.h"
29 #include "chatitem.h"
30 #include "chatscene.h"
31 #include "client.h"
32 #include "iconloader.h"
33 #include "networkmodel.h"
34 #include "buffermodel.h"
35 #include "messagemodel.h"
36 #include "qtuisettings.h"
37 #include "settingspagedlg.h"
38 #include "settingspages/chatmonitorsettingspage.h"
39
40 ChatMonitorView::ChatMonitorView(ChatMonitorFilter *filter, QWidget *parent)
41   : ChatView(filter, parent),
42     _filter(filter)
43 {
44   scene()->setSenderCutoffMode(ChatScene::CutoffLeft);
45 }
46
47 void ChatMonitorView::addActionsToMenu(QMenu *menu, const QPointF &pos) {
48   ChatView::addActionsToMenu(menu, pos);
49   menu->addSeparator();
50   QAction *showOwnNicksAction = menu->addAction(tr("Show Own Messages"), _filter, SLOT(setShowOwnMessages(bool)));
51   showOwnNicksAction->setCheckable(true);
52   showOwnNicksAction->setChecked(_filter->showOwnMessages());
53
54   if(scene()->columnByScenePos(pos) == ChatLineModel::SenderColumn) {
55     menu->addSeparator();
56
57     QAction *showNetworkAction = menu->addAction(tr("Show Network Name"), this, SLOT(showFieldsChanged(bool)));
58     showNetworkAction->setCheckable(true);
59     showNetworkAction->setChecked(_filter->showFields() & ChatMonitorFilter::NetworkField);
60     showNetworkAction->setData(ChatMonitorFilter::NetworkField);
61
62     QAction *showBufferAction = menu->addAction(tr("Show Buffer Name"), this, SLOT(showFieldsChanged(bool)));
63     showBufferAction->setCheckable(true);
64     showBufferAction->setChecked(_filter->showFields() & ChatMonitorFilter::BufferField);
65     showBufferAction->setData(ChatMonitorFilter::BufferField);
66   }
67
68   menu->addSeparator();
69   menu->addAction(SmallIcon("configure"), tr("Configure..."), this, SLOT(showSettingsPage()));
70 }
71
72 void ChatMonitorView::mouseDoubleClickEvent(QMouseEvent *event) {
73   if(scene()->columnByScenePos(event->pos()) != ChatLineModel::SenderColumn) {
74     ChatView::mouseDoubleClickEvent(event);
75     return;
76   }
77
78   ChatItem *chatItem = dynamic_cast<ChatItem *>(itemAt(event->pos()));
79   if(!chatItem) {
80     event->ignore();
81     return;
82   }
83
84   event->accept();
85   BufferId bufferId = chatItem->data(MessageModel::BufferIdRole).value<BufferId>();
86   if(!bufferId.isValid())
87     return;
88
89   Client::bufferModel()->switchToBuffer(bufferId);
90 }
91
92 void ChatMonitorView::showFieldsChanged(bool checked) {
93   QAction *showAction = qobject_cast<QAction *>(sender());
94   if(!showAction)
95     return;
96
97   if(checked)
98     _filter->addShowField(showAction->data().toInt());
99   else
100     _filter->removeShowField(showAction->data().toInt());
101 }
102
103 void ChatMonitorView::showSettingsPage() {
104   SettingsPageDlg dlg(new ChatMonitorSettingsPage(), this);
105   dlg.exec();
106 }