added entries and disabled some not-yet-functioning entries
[quassel.git] / src / uisupport / nickview.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 <QHeaderView>
22 #include <QDebug>
23 #include <QMenu>
24
25 #include "nickview.h"
26 #include "nickmodel.h"
27 #include "networkmodel.h"
28 #include "types.h"
29 #include "client.h"
30
31
32 NickView::NickView(QWidget *parent)
33   : QTreeView(parent)
34 {
35   setIndentation(10);
36   setAnimated(true);
37   header()->hide();
38   setSortingEnabled(true);
39   sortByColumn(0, Qt::AscendingOrder);
40
41   setContextMenuPolicy(Qt::CustomContextMenu);
42
43   connect(this, SIGNAL(customContextMenuRequested(const QPoint&)), 
44           this, SLOT(showContextMenu(const QPoint&)));
45 }
46
47 NickView::~NickView() {
48 }
49
50 void NickView::init() {
51   if(!model())
52     return;
53
54   for(int i = 1; i < model()->columnCount(); i++)
55     setColumnHidden(i, true);
56
57   expandAll();
58 }
59
60 void NickView::setModel(QAbstractItemModel *model) {
61   QTreeView::setModel(model);
62   init();
63 }
64
65 void NickView::rowsInserted(const QModelIndex &index, int start, int end) {
66   QTreeView::rowsInserted(index, start, end);
67   expandAll();  // FIXME We need to do this more intelligently. Maybe a pimped TreeView?
68 }
69
70 void NickView::showContextMenu(const QPoint & pos ) {
71   QModelIndex index = indexAt(pos);
72   QString username = index.sibling(index.row(), 0).data().toString();
73   BufferInfo bufferInfo = index.data(NetworkModel::BufferInfoRole).value<BufferInfo>();
74
75   QMenu nickContextMenu(this);
76
77   QAction *whoisAction = nickContextMenu.addAction(tr("WHOIS"));
78   QAction *versionAction = nickContextMenu.addAction(tr("VERSION"));
79   versionAction->setEnabled(false);
80   QAction *pingAction = nickContextMenu.addAction(tr("PING"));
81   pingAction->setEnabled(false);
82
83   nickContextMenu.addSeparator();
84
85   QMenu *modeMenu = nickContextMenu.addMenu(tr("Modes"));
86   QAction *opAction = modeMenu->addAction(tr("Op %1").arg(username));
87   QAction *deOpAction = modeMenu->addAction(tr("Deop %1").arg(username));
88   QAction *voiceAction = modeMenu->addAction(tr("Voice %1").arg(username));
89   QAction *deVoiceAction = modeMenu->addAction(tr("Devoice %1").arg(username));
90
91   QMenu *kickBanMenu = nickContextMenu.addMenu(tr("Kick/Ban"));
92   QAction *kickAction = kickBanMenu->addAction(tr("Kick %1").arg(username));
93   QAction *kickBanAction = kickBanMenu->addAction(tr("Kickban %1").arg(username));
94   QAction *ignoreAction = nickContextMenu.addAction(tr("Ignore"));
95   ignoreAction->setEnabled(false);
96
97   nickContextMenu.addSeparator();
98
99   QAction *queryAction = nickContextMenu.addAction(tr("Query"));
100   queryAction->setEnabled(false);
101   QAction *dccChatAction = nickContextMenu.addAction(tr("DCC-Chat"));
102   dccChatAction->setEnabled(false);
103   QAction *sendFileAction = nickContextMenu.addAction(tr("Send file"));
104   sendFileAction->setEnabled(false);
105
106   QAction *result = nickContextMenu.exec(QCursor::pos());
107
108   if(result == whoisAction)    { Client::instance()->userInput(bufferInfo, "/WHOIS "+username); }
109   else if(result == versionAction)  { Client::instance()->userInput(bufferInfo, "/CTCP "+username+" VERSION"); }
110   else if(result == pingAction)     { Client::instance()->userInput(bufferInfo, "/CTCP "+username+" PING"); }
111
112   else if(result == opAction)       { Client::instance()->userInput(bufferInfo, "/OP "+username); }
113   else if(result == deOpAction)     { Client::instance()->userInput(bufferInfo, "/DEOP "+username); }
114   else if(result == voiceAction)    { Client::instance()->userInput(bufferInfo, "/VOICE "+username); }
115   else if(result == deVoiceAction)  { Client::instance()->userInput(bufferInfo, "/DEVOICE "+username); }
116
117   else if(result == kickAction)     { Client::instance()->userInput(bufferInfo, "/KICK "+username); }
118   else if(result == kickBanAction)  { Client::instance()->userInput(bufferInfo, "/KICKBAN "+username); }
119 }