Lock Buffer- and Nick-Lists too
[quassel.git] / src / qtui / nicklistwidget.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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
33 class Buffer;
34 class NickView;
35 class QDockWidget;
36
37 class NickListWidget : public AbstractItemView
38 {
39     Q_OBJECT
40
41 public:
42     NickListWidget(QWidget *parent = 0);
43
44 public slots:
45     void showWidget(bool visible);
46     void setVisible(bool visible) override;
47
48 signals:
49     void nickSelectionChanged(const QModelIndexList &);
50
51 protected:
52     QSize sizeHint() const override;
53     void hideEvent(QHideEvent *) override;
54     void showEvent(QShowEvent *) override;
55
56 protected slots:
57     void currentChanged(const QModelIndex &current, const QModelIndex &previous) override;
58     void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end) override;
59
60 private slots:
61     void removeBuffer(BufferId bufferId);
62     void nickSelectionChanged();
63
64 private:
65     Ui::NickListWidget ui;
66     QHash<BufferId, NickView *> nickViews;
67
68     QDockWidget *dock() const;
69 };
70
71
72 // ==============================
73 //  NickList Dock
74 // ==============================
75 class NickListDock : public QDockWidget
76 {
77     Q_OBJECT
78
79 public:
80     NickListDock(const QString &title, QWidget *parent = 0);
81     // ~NickListDock();
82
83     void setLocked(bool locked);
84
85     // virtual bool event(QEvent *event);
86 };
87
88
89 #endif