feb48a11b0a378f7c605e041d41df77f08bf1b35
[quassel.git] / src / uisupport / bufferview.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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 BUFFERVIEW_H_
22 #define BUFFERVIEW_H_
23
24 #include <QAction>
25 #include <QMenu>
26 #include <QDockWidget>
27 #include <QModelIndex>
28 #include <QStyledItemDelegate>
29 #include <QPointer>
30
31 #include "actioncollection.h"
32 #include "bufferviewconfig.h"
33 #include "networkmodel.h"
34 #include "treeviewtouch.h"
35 #include "types.h"
36
37 /*****************************************
38  * The TreeView showing the Buffers
39  *****************************************/
40 class BufferView : public TreeViewTouch
41 {
42     Q_OBJECT
43
44 public:
45     enum Direction {
46         Forward = 1,
47         Backward = -1
48     };
49
50     BufferView(QWidget *parent = 0);
51     void init();
52
53     void setModel(QAbstractItemModel *model);
54     void setFilteredModel(QAbstractItemModel *model, BufferViewConfig *config);
55
56     void setConfig(BufferViewConfig *config);
57     inline BufferViewConfig *config() { return _config; }
58
59     void addActionsToMenu(QMenu *menu, const QModelIndex &index);
60     void addFilterActions(QMenu *contextMenu, const QModelIndex &index);
61
62     void selectFirstBuffer();
63
64 public slots:
65     void setRootIndexForNetworkId(const NetworkId &networkId);
66     void removeSelectedBuffers(bool permanently = false);
67     void menuActionTriggered(QAction *);
68     void nextBuffer();
69     void previousBuffer();
70     void hideCurrentBuffer();
71     void filterTextChanged(QString filterString);
72     void changeHighlight(const Direction direction);
73     void selectHighlighted();
74     void clearHighlight();
75
76 signals:
77     void removeBuffer(const QModelIndex &);
78     void removeBufferPermanently(const QModelIndex &);
79
80 protected:
81     virtual void dropEvent(QDropEvent *event);
82     virtual void rowsInserted(const QModelIndex &parent, int start, int end);
83     virtual void wheelEvent(QWheelEvent *);
84     virtual QSize sizeHint() const;
85     virtual void focusInEvent(QFocusEvent *event) { QAbstractScrollArea::focusInEvent(event); }
86     virtual void contextMenuEvent(QContextMenuEvent *event);
87
88 #if QT_VERSION < 0x050000
89     virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
90 #else
91     virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles);
92 #endif
93
94 private slots:
95     void joinChannel(const QModelIndex &index);
96     void toggleHeader(bool checked);
97
98     /**
99      * Expand all active networks and collapse inactive ones unless manually changed
100      *
101      * Applies to all networks.  Shouldn't need called except during initialization.
102      */
103     void setExpandedState();
104
105     /**
106      * Save the current display state of the given network
107      *
108      * Tracks expanded or collapsed and active or inactive.
109      *
110      * @see setExpandedState()
111      * @param[in] networkIdx QModelIndex of the root network to store
112      */
113     void storeExpandedState(const QModelIndex &networkIdx);
114
115     /**
116      * Set the display state of the given network according to network status and manual changes
117      *
118      * Expands if active or previously expanded, collapses if inactive or previously collapsed.
119      *
120      * @see storeExpandedState()
121      * @param[in] networkIdx QModelIndex of the root network to update
122      */
123     void setExpandedState(const QModelIndex &networkIdx);
124
125     void on_configChanged();
126     void on_layoutChanged();
127
128     void changeBuffer(Direction direction);
129
130 private:
131     QPointer<BufferViewConfig> _config;
132
133     enum ExpandedState {
134         WasExpanded = 0x01,
135         WasActive = 0x02
136     };
137     QHash<NetworkId, short> _expandedState;
138     QModelIndex m_currentHighlight;
139 };
140
141
142 // ******************************
143 //  BufferViewDelgate
144 // ******************************
145
146 class BufferViewDelegate : public QStyledItemDelegate
147 {
148     Q_OBJECT
149
150 public:
151     BufferViewDelegate(QObject *parent = 0);
152     bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index) override;
153
154     QModelIndex currentHighlight;
155     void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
156
157 protected:
158     virtual void customEvent(QEvent *event) override;
159 };
160
161
162 // ==============================
163 //  BufferView Dock
164 // ==============================
165 class BufferViewDock : public QDockWidget
166 {
167     Q_OBJECT
168     Q_PROPERTY(bool active READ isActive WRITE setActive STORED true)
169
170 public :
171         BufferViewDock(BufferViewConfig *config, QWidget *parent);
172
173     int bufferViewId() const;
174     BufferViewConfig *config() const;
175     inline BufferView *bufferView() const { return qobject_cast<BufferView *>(widget()); }
176     inline bool isActive() const { return _active; }
177     void setWidget(QWidget *newWidget);
178     void setLocked(bool locked);
179     QWidget *widget() const { return _childWidget; }
180
181     void activateFilter();
182
183 public slots:
184     void setActive(bool active = true);
185
186 protected slots:
187     virtual bool eventFilter(QObject *object, QEvent *event);
188     virtual void focusInEvent(QFocusEvent*event) { qDebug() << event; }
189
190 private slots:
191     void bufferViewRenamed(const QString &newName);
192     void updateTitle();
193     void configChanged();
194     void onFilterReturnPressed();
195
196 private:
197     QWidget *_childWidget;
198     QWidget *_widget;
199     QPointer<QWidget> _oldFocusItem; // QPointer in case the old item gets deleted
200     QLineEdit *_filterEdit;
201     bool _active;
202     QString _title;
203 };
204
205
206 #endif