cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / settingspages / shortcutssettingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2022 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 SHORTCUTSSETTINGSPAGE_H
22 #define SHORTCUTSSETTINGSPAGE_H
23
24 #include <QSortFilterProxyModel>
25
26 #include "settingspage.h"
27
28 #include "ui_shortcutssettingspage.h"
29
30 class ActionCollection;
31 class ShortcutsModel;
32
33 class ShortcutsFilter : public QSortFilterProxyModel
34 {
35     Q_OBJECT
36 public:
37     ShortcutsFilter(QObject* parent = nullptr);
38
39 public slots:
40     void setFilterString(const QString& filterString);
41
42 protected:
43     bool filterAcceptsRow(int source_row, const QModelIndex& source_parent) const override;
44
45 private:
46     QString _filterString;
47 };
48
49 class ShortcutsSettingsPage : public SettingsPage
50 {
51     Q_OBJECT
52 public:
53     ShortcutsSettingsPage(const QHash<QString, ActionCollection*>& actionCollections, QWidget* parent = nullptr);
54
55     inline bool hasDefaults() const override { return true; }
56
57 public slots:
58     void save() override;
59     void load() override;
60     void defaults() override;
61
62 private slots:
63     void on_searchEdit_textChanged(const QString& text);
64     void keySequenceChanged(const QKeySequence& seq, const QModelIndex& conflicting);
65     void setWidgetStates();
66     void toggledCustomOrDefault();
67
68 private:
69     Ui::ShortcutsSettingsPage ui;
70     ShortcutsModel* _shortcutsModel;
71     ShortcutsFilter* _shortcutsFilter;
72 };
73
74 #endif  // SHORTCUTSSETTINGSPAGE_H