Fix ALL the license headers!
[quassel.git] / src / qtui / settingspages / shortcutssettingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2012 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 = 0);
38
39 public slots:
40     void setFilterString(const QString &filterString);
41
42 protected:
43     virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
44
45 private:
46     QString _filterString;
47 };
48
49
50 class ShortcutsSettingsPage : public SettingsPage
51 {
52     Q_OBJECT
53 public:
54     ShortcutsSettingsPage(const QHash<QString, ActionCollection *> &actionCollections, QWidget *parent = 0);
55
56     inline bool hasDefaults() const { return true; }
57
58 public slots:
59     void save();
60     void load();
61     void defaults();
62
63 private slots:
64     void on_searchEdit_textChanged(const QString &text);
65     void keySequenceChanged(const QKeySequence &seq, const QModelIndex &conflicting);
66     void setWidgetStates();
67     void toggledCustomOrDefault();
68
69 private:
70     Ui::ShortcutsSettingsPage ui;
71     ShortcutsModel *_shortcutsModel;
72     ShortcutsFilter *_shortcutsFilter;
73 };
74
75
76 #endif // SHORTCUTSSETTINGSPAGE_H