summaryrefslogtreecommitdiff
path: root/muse_qt4_evolution/muse/widgets/shortcutconfig.h
blob: 0e9e24b2882028f4eaf4d0004a9e0ab73cf4e93b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// C++ Interface: shortcutconfig
//
// Description:
// Dialog for configuring keyboard shortcuts
//
// Author: Mathias Lundgren <lunar_shuttle@users.sourceforge.net>, (C) 2003
//
// Copyright: Mathias Lundgren (lunar_shuttle@users.sourceforge.net) (C) 2003
//
//
#ifndef __SHORTCUTCONFIG_H
#define __SHORTCUTCONFIG_H

#include "ui_shortcutconfig.h"
#include "shortcuts.h"

#define SHRT_CATEGORY_COL 0
enum {
      SHRT_DESCR_COL = 0,
      SHRT_SHRTCUT_COL
      };

//---------------------------------------------------------
//   ShortcutConfig
//---------------------------------------------------------

class ShortcutConfig : public QDialog, public Ui::ShortcutConfigBase {
      Q_OBJECT
      private:
      int current_category;
      void updateSCListView(int category);
      void updateSCListView() { updateSCListView(current_category); }
      void closeEvent(QCloseEvent *e);

   private slots:
      void categorySelChanged(QTreeWidgetItem*);
      void shortcutSelChanged(QTreeWidgetItem*);
      void assignShortcut();
      void clearShortcut();
      void assignAll();

   public:
      ShortcutConfig(QWidget* parent = 0);
      bool _config_changed;
      static const shortcut_cg shortcut_category[];
      };

#endif