One last test for the CIA bot:
[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 "buffer.h"
27
28 typedef QHash<QString, QHash<QString, Buffer*> > BufferHash;
29
30 class NetworkViewWidget : public QWidget {
31   Q_OBJECT
32
33   public:
34     NetworkViewWidget(QWidget *parent = 0);
35
36     QTreeWidget *tree() { return ui.tree; }
37
38     virtual QSize sizeHint () const;
39
40   signals:
41     void bufferSelected(QString net, QString buf);
42
43   private slots:
44
45
46   private:
47     Ui::NetworkViewWidget ui;
48
49 };
50
51 class NetworkView : public QDockWidget {
52   Q_OBJECT
53
54   public:
55     enum Mode {
56       NoActive = 0x01, NoInactive = 0x02,
57       SomeNets = 0x04, AllNets = 0x08,
58       NoChannels = 0x10, NoQueries = 0x20, NoServers = 0x40
59     };
60
61     NetworkView(QString name, int mode, QStringList nets = QStringList(), QWidget *parent = 0);
62     void setMode(int mode, QStringList nets = QStringList());
63     void setName(QString name);
64
65
66   public slots:
67     void bufferUpdated(Buffer *);
68     void bufferDestroyed(Buffer *);
69     void setBuffers(QList<Buffer *>);
70     void selectBuffer(Buffer *);
71
72   signals:
73     void bufferSelected(Buffer *);
74
75   private slots:
76     void itemClicked(QTreeWidgetItem *item);
77
78   private:
79     int mode;
80     QString name;
81     QStringList networks;
82     Buffer *currentBuffer;
83     //QHash<QString, QHash<QString, Buffer*> > buffers;
84     QHash<Buffer *, QTreeWidgetItem *> bufitems;
85     QHash<QString, QTreeWidgetItem *> netitems;
86     //QHash<QString, QHash<QString, QTreeWidgetItem *> > items;
87     QTreeWidget *tree;
88
89     bool shouldShow(Buffer *);
90 };
91
92
93 #endif