ac8707733d576c271dbea596364102658445f224
[quassel.git] / gui / networkview.h
1 /***************************************************************************
2  *   Copyright (C) 2005/06 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     QTreeWidget *tree() { return ui.tree; }
36
37     virtual QSize sizeHint () const;
38
39   public slots:
40
41
42   signals:
43     void bufferSelected(QString net, QString buf);
44
45   private slots:
46
47
48   private:
49     Ui::NetworkViewWidget ui;
50
51 };
52
53 class NetworkView : public QDockWidget {
54   Q_OBJECT
55
56   public:
57     NetworkView(QString network, QWidget *parent = 0);
58
59   public slots:
60     void buffersUpdated(BufferHash);
61     void selectBuffer(QString net, QString buf);
62
63   signals:
64     void bufferSelected(QString net, QString buf);
65
66   private slots:
67     void itemClicked(QTreeWidgetItem *item);
68
69   private:
70     QString network;
71     QString currentNetwork, currentBuffer;
72     QHash<QString, QHash<QString, Buffer*> > buffers;
73     QHash<QString, QHash<QString, QTreeWidgetItem *> > items;
74     QTreeWidget *tree;
75
76 };
77
78
79 #endif