Renamed NetworkView[Widget] to BufferView[Widget].
[quassel.git] / gui / bufferview.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 _BUFFERVIEW_H_
22 #define _BUFFERVIEW_H_
23
24 #include <QtGui>
25 #include "ui_bufferview.h"
26 #include "guiproxy.h"
27 #include "buffer.h"
28
29 typedef QHash<QString, QHash<QString, Buffer*> > BufferHash;
30
31 class BufferViewWidget : public QWidget {
32   Q_OBJECT
33
34   public:
35     BufferViewWidget(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::BufferViewWidget ui;
49
50 };
51
52 class BufferView : 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     enum ActivityLevel {
63       NoActivity = 0x00, OtherActivity = 0x01,
64       NewMessage = 0x02, Highlight = 0x40
65     };
66     
67     BufferView(QString name, int mode, QStringList nets = QStringList(), QWidget *parent = 0);
68     void setMode(int mode, QStringList nets = QStringList());
69     void setName(QString name);
70
71
72   public slots:
73     void bufferUpdated(Buffer *);
74     void bufferActivity(uint, Buffer *);
75     void bufferDestroyed(Buffer *);
76     void setBuffers(QList<Buffer *>);
77     void selectBuffer(Buffer *);
78
79   signals:
80     void bufferSelected(Buffer *);
81     void fakeUserInput(BufferId, QString);
82     
83   private slots:
84     void itemClicked(QTreeWidgetItem *item);
85     void itemDoubleClicked(QTreeWidgetItem *item);
86     
87   private:
88     int mode;
89     QString name;
90     QStringList networks;
91     Buffer *currentBuffer;
92     //QHash<QString, QHash<QString, Buffer*> > buffers;
93     QHash<Buffer *, QTreeWidgetItem *> bufitems;
94     QHash<QString, QTreeWidgetItem *> netitems;
95     //QHash<QString, QHash<QString, QTreeWidgetItem *> > items;
96     QTreeWidget *tree;
97
98     bool shouldShow(Buffer *);
99     void clearActivity(Buffer *);
100 };
101
102
103 #endif