00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __SHORTCUTSDLG_H__
00019 #define __SHORTCUTSDLG_H__
00020
00021 #include <qlistview.h>
00022
00023 #include "ui/shortcutsdialog.h"
00024 #include "shortcutdlg.h"
00025
00027 class ShortcutsDlg : public ShortcutsDialog
00028 {
00029 Q_OBJECT
00030 public:
00031 ShortcutsDlg(QWidget *parent=0, const char *name=0);
00032 public slots:
00034 void slotDoubleClicked(QListViewItem*);
00036 void ok_slot();
00038 void slotShortcutChanged(QKeySequence shortcut);
00039 signals:
00040 void updateShortcuts();
00041 protected:
00043 void showEvent(QShowEvent*);
00045 bool checkShortcut(QKeySequence);
00046 private:
00048 ShortcutDlg *shortcutDlg;
00050 QListViewItem *view_item, *edit_item, *general_item;
00051 };
00052
00053 #endif