kshortcutdialog_simple.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef KSHORTCUTDIALOGSIMPLE_H
00010 #define KSHORTCUTDIALOGSIMPLE_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014 #include <kshortcut.h>
00015 #include <kdialog.h>
00016
00017 class QVBoxLayout;
00018 class QHBoxLayout;
00019 class QGridLayout;
00020 class QSpacerItem;
00021 class QLabel;
00022 class KPushButton;
00023 class QPushButton;
00024 class KShortcut;
00025
00026 class KShortcutDialogSimple : public QWidget
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 KShortcutDialogSimple( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00032 ~KShortcutDialogSimple();
00033
00034 QLabel* textLabel2;
00035 KPushButton* m_txtShortcut;
00036 QPushButton* m_btnClearShortcut;
00037
00038 protected:
00039 QGridLayout* KShortcutDialogSimpleLayout;
00040 QSpacerItem* spacer3;
00041 QSpacerItem* spacer2;
00042
00043 protected slots:
00044 virtual void languageChange();
00045
00046 };
00047
00048 #endif // KSHORTCUTDIALOGSIMPLE_H
|