~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/shortcutmanager.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
class QKeySequence;
8
8
class QString;
 
9
class PsiOptions;
9
10
 
10
11
class ShortcutManager : public QObject
11
12
{
14
15
        static void connect(const QString& path, QObject *parent, const char* slot);
15
16
        QKeySequence shortcut(const QString& name);
16
17
        QList<QKeySequence> shortcuts(const QString& name);
 
18
        
 
19
        // utils
 
20
        static QList<QKeySequence> readShortcutsFromOptions(const QString& name, const PsiOptions* options);
17
21
 
18
22
private:
19
23
        ShortcutManager();