editshortcutbase.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef EDITSHORTCUTBASE_H
00011 #define EDITSHORTCUTBASE_H
00012
00013 #include <qvariant.h>
00014 #include <qwidget.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class QLabel;
00021 class QFrame;
00022 class KLineEdit;
00023 class QPushButton;
00024
00025 class EditShortcutBase : public QWidget
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 EditShortcutBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00031 ~EditShortcutBase();
00032
00033 QLabel* textLabel2;
00034 QFrame* line1;
00035 KLineEdit* shortcut;
00036 QPushButton* pushButton1;
00037 QPushButton* pushButton2;
00038 QFrame* line2;
00039
00040 protected:
00041 QVBoxLayout* EditShortcutBaseLayout;
00042 QHBoxLayout* layout2;
00043 QSpacerItem* spacer1;
00044 QSpacerItem* spacer2;
00045 QSpacerItem* spacer3;
00046
00047 protected slots:
00048 virtual void languageChange();
00049
00050 virtual void editShortcut() = 0;
00051 virtual void clearShortcut() = 0;
00052
00053
00054 };
00055
00056 #endif // EDITSHORTCUTBASE_H
This file is part of the documentation for kwin Library Version 3.4.2.