1 /***************************************************************************
2 * Copyright (C) 2005-2016 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 ***************************************************************************/
21 #ifndef NICKLISTWIDGET_H_
22 #define NICKLISTWIDGET_H_
24 #include "ui_nicklistwidget.h"
25 #include "abstractitemview.h"
26 #include "buffermodel.h"
31 #include <QDockWidget>
37 class NickListWidget : public AbstractItemView
42 NickListWidget(QWidget *parent = 0);
45 void showWidget(bool visible);
46 void setVisible(bool visible) override;
49 void nickSelectionChanged(const QModelIndexList &);
52 QSize sizeHint() const override;
53 void hideEvent(QHideEvent *) override;
54 void showEvent(QShowEvent *) override;
57 void currentChanged(const QModelIndex ¤t, const QModelIndex &previous) override;
58 void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end) override;
61 void removeBuffer(BufferId bufferId);
62 void nickSelectionChanged();
65 Ui::NickListWidget ui;
66 QHash<BufferId, NickView *> nickViews;
68 QDockWidget *dock() const;
72 // ==============================
74 // ==============================
75 class NickListDock : public QDockWidget
80 NickListDock(const QString &title, QWidget *parent = 0);
83 // virtual bool event(QEvent *event);