PageRenderTime 37ms CodeModel.GetById 30ms app.highlight 6ms RepoModel.GetById 0ms app.codeStats 1ms

/quassel-0.7.3/src/qtui/awaylogview.cpp

#
C++ | 54 lines | 27 code | 8 blank | 19 comment | 3 complexity | 1fc7b7d7ba9c94ba389f870a99338248 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0
 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 "awaylogview.h"
22
23#include <QAction>
24#include <QMenu>
25
26#include "awaylogfilter.h"
27#include "chatlinemodel.h"
28#include "chatscene.h"
29
30AwayLogView::AwayLogView(AwayLogFilter *filter, QWidget *parent)
31  : ChatMonitorView(filter, parent)
32{
33  setWindowTitle(tr("Away Log"));
34}
35
36void AwayLogView::addActionsToMenu(QMenu *menu, const QPointF &pos) {
37  ChatView::addActionsToMenu(menu, pos);
38  if(!menu->isEmpty())
39    menu->addSeparator();
40
41  if(scene()->columnByScenePos(pos) == ChatLineModel::SenderColumn) {
42    menu->addSeparator();
43
44    QAction *showNetworkAction = menu->addAction(tr("Show Network Name"), this, SLOT(showFieldsChanged(bool)));
45    showNetworkAction->setCheckable(true);
46    showNetworkAction->setChecked(filter()->showFields() & ChatMonitorFilter::NetworkField);
47    showNetworkAction->setData(ChatMonitorFilter::NetworkField);
48
49    QAction *showBufferAction = menu->addAction(tr("Show Buffer Name"), this, SLOT(showFieldsChanged(bool)));
50    showBufferAction->setCheckable(true);
51    showBufferAction->setChecked(filter()->showFields() & ChatMonitorFilter::BufferField);
52    showBufferAction->setData(ChatMonitorFilter::BufferField);
53  }
54}