Fix issues with single and double clicks in ChatView
[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 "networkmodel.h"
33 #include "buffermodel.h"
34 #include "messagemodel.h"
35 #include "qtuisettings.h"
36
37 ChatMonitorView::ChatMonitorView(ChatMonitorFilter *filter, QWidget *parent)
38   : ChatView(filter, parent),
39     _filter(filter)
40 {
41   scene()->setSenderCutoffMode(ChatScene::CutoffLeft);
42 }
43
44 void ChatMonitorView::addActionsToMenu(QMenu *menu, const QPointF &pos) {
45   ChatView::addActionsToMenu(menu, pos);
46   menu->addSeparator();
47   QAction *showOwnNicksAction = menu->addAction(tr("Show Own Messages"), _filter, SLOT(setShowOwnMessages(bool)));
48   showOwnNicksAction->setCheckable(true);
49   showOwnNicksAction->setChecked(_filter->showOwnMessages());
50
51   if(scene()->columnByScenePos(pos) == ChatLineModel::SenderColumn) {
52     menu->addSeparator();
53
54     QAction *showNetworkAction = menu->addAction(tr("Show Network Name"), this, SLOT(showFieldsChanged(bool)));
55     showNetworkAction->setCheckable(true);
56     showNetworkAction->setChecked(_filter->showFields() & ChatMonitorFilter::NetworkField);
57     showNetworkAction->setData(ChatMonitorFilter::NetworkField);
58
59     QAction *showBufferAction = menu->addAction(tr("Show Buffer Name"), this, SLOT(showFieldsChanged(bool)));
60     showBufferAction->setCheckable(true);
61     showBufferAction->setChecked(_filter->showFields() & ChatMonitorFilter::BufferField);
62     showBufferAction->setData(ChatMonitorFilter::BufferField);
63   }
64 }
65
66 void ChatMonitorView::mouseDoubleClickEvent(QMouseEvent *event) {
67   if(scene()->columnByScenePos(event->pos()) != ChatLineModel::SenderColumn) {
68     ChatView::mouseDoubleClickEvent(event);
69     return;
70   }
71
72   ChatItem *chatItem = dynamic_cast<ChatItem *>(itemAt(event->pos()));
73   if(!chatItem) {
74     event->ignore();
75     return;
76   }
77
78   event->accept();
79   BufferId bufferId = chatItem->data(MessageModel::BufferIdRole).value<BufferId>();
80   if(!bufferId.isValid())
81     return;
82
83   Client::bufferModel()->switchToBuffer(bufferId);
84 }
85
86 void ChatMonitorView::showFieldsChanged(bool checked) {
87   QAction *showAction = qobject_cast<QAction *>(sender());
88   if(!showAction)
89     return;
90
91   if(checked)
92     _filter->addShowField(showAction->data().toInt());
93   else
94     _filter->removeShowField(showAction->data().toInt());
95 }