1/***************************************************************************
2 * Copyright (C) 2005-2014 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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
20
21#ifndef NICKLISTWIDGET_H_
22#define NICKLISTWIDGET_H_
23
24#include "ui_nicklistwidget.h"
25#include "abstractitemview.h"
26#include "buffermodel.h"
27
28#include "types.h"
29
30#include <QHash>
31#include <QDockWidget>
32
33class Buffer;
34class NickView;
35class QDockWidget;
36
37class NickListWidget : public AbstractItemView
38{
39 Q_OBJECT
40
41public:
42 NickListWidget(QWidget *parent = 0);
43
44public slots:
45 void showWidget(bool visible);
46
47signals:
48 void nickSelectionChanged(const QModelIndexList &);
49
50protected:
51 virtual QSize sizeHint() const;
52 virtual void hideEvent(QHideEvent *);
53 virtual void showEvent(QShowEvent *);
54
55protected slots:
56 virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
57 virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
58
59private slots:
60 void removeBuffer(BufferId bufferId);
61 void nickSelectionChanged();
62
63private:
64 Ui::NickListWidget ui;
65 QHash<BufferId, NickView *> nickViews;
66
67 QDockWidget *dock() const;
68};
69
70
71// ==============================
72// NickList Dock
73// ==============================
74class NickListDock : public QDockWidget
75{
76 Q_OBJECT
77
78public:
79 NickListDock(const QString &title, QWidget *parent = 0);
80 // ~NickListDock();
81
82 // virtual bool event(QEvent *event);
83};
84
85
86#endif
87