qt4-b-gone: Remove all code supporting Qt < 5.5 and KDE4
[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(const QString& filterString);
72     void changeHighlight(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     virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles);
89
90 private slots:
91     void joinChannel(const QModelIndex &index);
92     void toggleHeader(bool checked);
93
94     /**
95      * Expand all active networks and collapse inactive ones unless manually changed
96      *
97      * Applies to all networks.  Shouldn't need called except during initialization.
98      */
99     void setExpandedState();
100
101     /**
102      * Save the current display state of the given network
103      *
104      * Tracks expanded or collapsed and active or inactive.
105      *
106      * @see setExpandedState()
107      * @param[in] networkIdx QModelIndex of the root network to store
108      */
109     void storeExpandedState(const QModelIndex &networkIdx);
110
111     /**
112      * Set the display state of the given network according to network status and manual changes
113      *
114      * Expands if active or previously expanded, collapses if inactive or previously collapsed.
115      *
116      * @see storeExpandedState()
117      * @param[in] networkIdx QModelIndex of the root network to update
118      */
119     void setExpandedState(const QModelIndex &networkIdx);
120
121     void on_configChanged();
122     void on_layoutChanged();
123
124     void changeBuffer(Direction direction);
125
126 private:
127     QPointer<BufferViewConfig> _config;
128
129     enum ExpandedState {
130         WasExpanded = 0x01,
131         WasActive = 0x02
132     };
133     QHash<NetworkId, short> _expandedState;
134     QModelIndex _currentHighlight;
135 };
136
137
138 // ******************************
139 //  BufferViewDelegate
140 // ******************************
141
142 class BufferViewDelegate : public QStyledItemDelegate
143 {
144     Q_OBJECT
145
146 public:
147     BufferViewDelegate(QObject *parent = 0);
148     bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index) override;
149
150     void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
151
152 public:
153     QModelIndex currentHighlight;
154
155 protected:
156     void customEvent(QEvent *event) override;
157 };
158
159
160 // ==============================
161 //  BufferView Dock
162 // ==============================
163 class BufferViewDock : public QDockWidget
164 {
165     Q_OBJECT
166     Q_PROPERTY(bool active READ isActive WRITE setActive STORED true)
167
168 public :
169         BufferViewDock(BufferViewConfig *config, QWidget *parent);
170
171     int bufferViewId() const;
172     BufferViewConfig *config() const;
173     inline BufferView *bufferView() const { return qobject_cast<BufferView *>(widget()); }
174     inline bool isActive() const { return _active; }
175     void setWidget(QWidget *newWidget);
176     void setLocked(bool locked);
177     QWidget *widget() const { return _childWidget; }
178
179     void activateFilter();
180
181 public slots:
182     void setActive(bool active = true);
183
184 protected slots:
185     virtual bool eventFilter(QObject *object, QEvent *event);
186     virtual void focusInEvent(QFocusEvent*event) { qDebug() << event; }
187
188 private slots:
189     void bufferViewRenamed(const QString &newName);
190     void updateTitle();
191     void configChanged();
192     void onFilterReturnPressed();
193
194 private:
195     QWidget *_childWidget;
196     QWidget *_widget;
197     QPointer<QWidget> _oldFocusItem; // QPointer in case the old item gets deleted
198     QLineEdit *_filterEdit;
199     bool _active;
200     QString _title;
201 };
202
203
204 #endif