3
Copyright 2013 Adam Reichold
5
This file is part of qpdfview.
7
qpdfview is free software: you can redistribute it and/or modify
8
it under the terms of the GNU General Public License as published by
9
the Free Software Foundation, either version 2 of the License, or
10
(at your option) any later version.
12
qpdfview is distributed in the hope that it will be useful,
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
GNU General Public License for more details.
17
You should have received a copy of the GNU General Public License
18
along with qpdfview. If not, see <http://www.gnu.org/licenses/>.
22
#ifndef SHORTCUTSTABLEMODEL_H
23
#define SHORTCUTSTABLEMODEL_H
25
#include <QAbstractTableModel>
26
#include <QKeySequence>
30
class ShortcutsTableModel : public QAbstractTableModel
35
ShortcutsTableModel(const QList< QAction* >& actions, const QMap< QAction*, QKeySequence >& defaultShortcuts, QObject* parent = 0);
37
int columnCount(const QModelIndex& parent) const;
38
int rowCount(const QModelIndex& parent) const;
40
Qt::ItemFlags flags(const QModelIndex& index) const;
42
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
44
QVariant data(const QModelIndex& index, int role) const;
45
bool setData(const QModelIndex& index, const QVariant& value, int role);
51
QList< QAction* > m_actions;
53
QMap< QAction*, QKeySequence > m_defaultShortcuts;
54
QMap< QAction*, QKeySequence > m_shortcuts;
58
#endif // SHORTCUTSTABLEMODEL_H