~ubuntu-branches/debian/jessie/qpdfview/jessie

« back to all changes in this revision

Viewing changes to sources/shortcutstablemodel.h

  • Committer: Package Import Robot
  • Author(s): Benjamin Eltzner
  • Date: 2013-04-04 14:51:58 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20130404145158-22g2noz4b8176o35
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 
 
3
Copyright 2013 Adam Reichold
 
4
 
 
5
This file is part of qpdfview.
 
6
 
 
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.
 
11
 
 
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.
 
16
 
 
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/>.
 
19
 
 
20
*/
 
21
 
 
22
#ifndef SHORTCUTSTABLEMODEL_H
 
23
#define SHORTCUTSTABLEMODEL_H
 
24
 
 
25
#include <QAbstractTableModel>
 
26
#include <QKeySequence>
 
27
 
 
28
class QAction;
 
29
 
 
30
class ShortcutsTableModel : public QAbstractTableModel
 
31
{
 
32
    Q_OBJECT
 
33
 
 
34
public:
 
35
    ShortcutsTableModel(const QList< QAction* >& actions, const QMap< QAction*, QKeySequence >& defaultShortcuts, QObject* parent = 0);
 
36
 
 
37
    int columnCount(const QModelIndex& parent) const;
 
38
    int rowCount(const QModelIndex& parent) const;
 
39
 
 
40
    Qt::ItemFlags flags(const QModelIndex& index) const;
 
41
 
 
42
    QVariant headerData(int section, Qt::Orientation orientation, int role) const;
 
43
 
 
44
    QVariant data(const QModelIndex& index, int role) const;
 
45
    bool setData(const QModelIndex& index, const QVariant& value, int role);
 
46
 
 
47
    void accept();
 
48
    void reset();
 
49
 
 
50
private:
 
51
    QList< QAction* > m_actions;
 
52
 
 
53
    QMap< QAction*, QKeySequence > m_defaultShortcuts;
 
54
    QMap< QAction*, QKeySequence > m_shortcuts;
 
55
 
 
56
};
 
57
 
 
58
#endif // SHORTCUTSTABLEMODEL_H