Allow configuration of shortcuts for platforms other than KDE
[quassel.git] / src / qtui / settingspages / shortcutssettingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2010 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, 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   Q_OBJECT
35 public:
36   ShortcutsFilter(QObject *parent = 0);
37
38 public slots:
39   void setFilterString(const QString &filterString);
40
41 protected:
42   virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
43
44 private:
45   QString _filterString;
46 };
47
48 class ShortcutsSettingsPage : public SettingsPage {
49   Q_OBJECT
50 public:
51   ShortcutsSettingsPage(const QHash<QString, ActionCollection *> &actionCollections, QWidget *parent = 0);
52
53   inline bool hasDefaults() const { return true; }
54
55 public slots:
56   void save();
57   void load();
58   void defaults();
59
60 private slots:
61   void on_searchEdit_textChanged(const QString &text);
62   void keySequenceChanged(const QKeySequence &seq, const QModelIndex &conflicting);
63   void setWidgetStates();
64   void toggledCustomOrDefault();
65
66 private:
67   Ui::ShortcutsSettingsPage ui;
68   ShortcutsModel *_shortcutsModel;
69   ShortcutsFilter *_shortcutsFilter;
70 };
71
72 #endif // SHORTCUTSSETTINGSPAGE_H