src: Yearly copyright bump
[quassel.git] / src / qtui / settingspages / bufferviewsettingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2020 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 #pragma once
22
23 #include <QItemSelection>
24
25 #include "settingspage.h"
26
27 #include "ui_buffervieweditdlg.h"
28 #include "ui_bufferviewsettingspage.h"
29
30 class BufferViewConfig;
31
32 class BufferViewSettingsPage : public SettingsPage
33 {
34     Q_OBJECT
35
36 public:
37     BufferViewSettingsPage(QWidget* parent = nullptr);
38     ~BufferViewSettingsPage() override;
39
40 public slots:
41     void save() final override;
42     void load() final override;
43     void reset();
44
45 private slots:
46     void coreConnectionStateChanged(bool state);
47
48     void addBufferView(BufferViewConfig* config);
49     void addBufferView(int bufferViewId);
50     void bufferViewDeleted();
51     void newBufferView(const QString& bufferViewName);
52     void updateBufferView();
53
54     void enableStatusBuffers(int networkIdx);
55
56     void on_addBufferView_clicked();
57     void on_renameBufferView_clicked();
58     void on_deleteBufferView_clicked();
59     void bufferViewSelectionChanged(const QItemSelection& current, const QItemSelection& previous);
60
61     void widgetHasChanged();
62
63 private:
64     Ui::BufferViewSettingsPage ui;
65     bool _ignoreWidgetChanges{false};
66     bool _useBufferViewHint{false};
67     int _bufferViewHint{0};
68
69     // list of bufferviews to create
70     QList<BufferViewConfig*> _newBufferViews;
71
72     // list of buferViews to delete
73     QList<int> _deleteBufferViews;
74
75     // Hash of pointers to cloned bufferViewConfigs holding the changes
76     QHash<BufferViewConfig*, BufferViewConfig*> _changedBufferViews;
77
78     int listPos(BufferViewConfig* config);
79     BufferViewConfig* bufferView(int listPos);
80     bool selectBufferViewById(int bufferViewId);
81     BufferViewConfig* cloneConfig(BufferViewConfig* config);
82     BufferViewConfig* configForDisplay(BufferViewConfig* config);
83
84     void loadConfig(BufferViewConfig* config);
85     void saveConfig(BufferViewConfig* config);
86     bool testHasChanged();
87 };
88
89 /**************************************************************************
90  * BufferViewEditDlg
91  *************************************************************************/
92 class BufferViewEditDlg : public QDialog
93 {
94     Q_OBJECT
95
96 public:
97     BufferViewEditDlg(const QString& old, QStringList existing = QStringList(), QWidget* parent = nullptr);
98
99     inline QString bufferViewName() const { return ui.bufferViewEdit->text(); }
100
101 private slots:
102     void on_bufferViewEdit_textChanged(const QString&);
103
104 private:
105     Ui::BufferViewEditDlg ui;
106
107     QStringList existing;
108 };