fixing BR #261 (making fields removable from the chatmonitor). Changes effect current...
[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 "chatscene.h"
30 #include "qtuisettings.h"
31
32 ChatMonitorView::ChatMonitorView(ChatMonitorFilter *filter, QWidget *parent)
33   : ChatView(filter, parent),
34     _filter(filter)
35 {
36 }
37
38 void ChatMonitorView::contextMenuEvent(QContextMenuEvent *event) {
39   if(scene()->sectionByScenePos(event->pos()) != ChatLineModel::SenderColumn)
40     return;
41   
42   int showFields = _filter->showFields();
43
44   QMenu contextMenu(this);
45   QAction *showNetworkAction = contextMenu.addAction(tr("Show network name"), this, SLOT(showFieldsChanged(bool)));
46   showNetworkAction->setCheckable(true);
47   showNetworkAction->setChecked(showFields & ChatMonitorFilter::NetworkField);
48   showNetworkAction->setData(ChatMonitorFilter::NetworkField);
49   
50   QAction *showBufferAction = contextMenu.addAction(tr("Show buffer name"), this, SLOT(showFieldsChanged(bool)));
51   showBufferAction->setCheckable(true);
52   showBufferAction->setChecked(showFields & ChatMonitorFilter::BufferField);
53   showBufferAction->setData(ChatMonitorFilter::BufferField);
54
55   contextMenu.exec(QCursor::pos());
56 }
57
58 void ChatMonitorView::showFieldsChanged(bool checked) {
59   QAction *showAction = qobject_cast<QAction *>(sender());
60   if(!showAction)
61     return;
62
63   if(checked)
64     _filter->addShowField(showAction->data().toInt());
65   else
66     _filter->removeShowField(showAction->data().toInt());    
67 }