Fixed formatting code %O (which should switch off all format codes, but accidentally
[quassel.git] / gui / networkview.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel Team                             *
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) any later version.                                   *
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 #ifndef _NETWORKVIEW_H_
22 #define _NETWORKVIEW_H_
23
24 #include <QtGui>
25 #include "ui_networkview.h"
26 #include "guiproxy.h"
27 #include "buffer.h"
28
29 typedef QHash<QString, QHash<QString, Buffer*> > BufferHash;
30
31 class NetworkViewWidget : public QWidget {
32   Q_OBJECT
33
34   public:
35     NetworkViewWidget(QWidget *parent = 0);
36
37     QTreeWidget *tree() { return ui.tree; }
38
39     virtual QSize sizeHint () const;
40
41   signals:
42     void bufferSelected(QString net, QString buf);
43
44   private slots:
45
46
47   private:
48     Ui::NetworkViewWidget ui;
49
50 };
51
52 class NetworkView : public QDockWidget {
53   Q_OBJECT
54
55   public:
56     enum Mode {
57       NoActive = 0x01, NoInactive = 0x02,
58       SomeNets = 0x04, AllNets = 0x08,
59       NoChannels = 0x10, NoQueries = 0x20, NoServers = 0x40
60     };
61
62     NetworkView(QString name, int mode, QStringList nets = QStringList(), QWidget *parent = 0);
63     void setMode(int mode, QStringList nets = QStringList());
64     void setName(QString name);
65
66
67   public slots:
68     void bufferUpdated(Buffer *);
69     void bufferDestroyed(Buffer *);
70     void setBuffers(QList<Buffer *>);
71     void selectBuffer(Buffer *);
72
73   signals:
74     void bufferSelected(Buffer *);
75     void fakeUserInput(BufferId, QString);
76     
77   private slots:
78     void itemClicked(QTreeWidgetItem *item);
79     void itemDoubleClicked(QTreeWidgetItem *item);
80     
81   private:
82     int mode;
83     QString name;
84     QStringList networks;
85     Buffer *currentBuffer;
86     //QHash<QString, QHash<QString, Buffer*> > buffers;
87     QHash<Buffer *, QTreeWidgetItem *> bufitems;
88     QHash<QString, QTreeWidgetItem *> netitems;
89     //QHash<QString, QHash<QString, QTreeWidgetItem *> > items;
90     QTreeWidget *tree;
91
92     bool shouldShow(Buffer *);
93 };
94
95
96 #endif