fixing speed up aftermath
[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 }
42
43 void ChatMonitorView::contextMenuEvent(QContextMenuEvent *event) {
44   QMenu contextMenu(this);
45
46   QAction *showOwnNicksAction = contextMenu.addAction(tr("Show own messages"), _filter, SLOT(setShowOwnMessages(bool)));
47   showOwnNicksAction->setCheckable(true);
48   showOwnNicksAction->setChecked(_filter->showOwnMessages());
49     
50   if(scene()->sectionByScenePos(event->pos()) == ChatLineModel::SenderColumn) {
51     contextMenu.addSeparator();
52
53     QAction *showNetworkAction = contextMenu.addAction(tr("Show network name"), this, SLOT(showFieldsChanged(bool)));
54     showNetworkAction->setCheckable(true);
55     showNetworkAction->setChecked(_filter->showFields() & ChatMonitorFilter::NetworkField);
56     showNetworkAction->setData(ChatMonitorFilter::NetworkField);
57
58     QAction *showBufferAction = contextMenu.addAction(tr("Show buffer name"), this, SLOT(showFieldsChanged(bool)));
59     showBufferAction->setCheckable(true);
60     showBufferAction->setChecked(_filter->showFields() & ChatMonitorFilter::BufferField);
61     showBufferAction->setData(ChatMonitorFilter::BufferField);
62   }
63
64   contextMenu.exec(QCursor::pos());
65 }
66
67 void ChatMonitorView::mouseDoubleClickEvent(QMouseEvent *event) {
68   if(scene()->sectionByScenePos(event->pos()) != ChatLineModel::SenderColumn) {
69     ChatView::mouseDoubleClickEvent(event);
70     return;
71   }
72
73   ChatItem *chatItem = dynamic_cast<ChatItem *>(itemAt(event->pos()));
74   if(!chatItem) {
75     event->ignore();
76     return;
77   }
78
79   event->accept();
80   BufferId bufferId = chatItem->data(MessageModel::BufferIdRole).value<BufferId>();
81   if(!bufferId.isValid())
82     return;
83
84   Client::bufferModel()->switchToBuffer(bufferId);
85 }
86
87 void ChatMonitorView::showFieldsChanged(bool checked) {
88   QAction *showAction = qobject_cast<QAction *>(sender());
89   if(!showAction)
90     return;
91
92   if(checked)
93     _filter->addShowField(showAction->data().toInt());
94   else
95     _filter->removeShowField(showAction->data().toInt());
96 }