kmail
snippetdlg.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef SNIPPETDLG_H
00011 #define SNIPPETDLG_H
00012
00013 #include "snippetdlgbase.h"
00014
00015 class KKeyButton;
00016 class KActionCollection;
00017 class KShortcut;
00018
00019 class SnippetDlg : public SnippetDlgBase
00020 {
00021 Q_OBJECT
00022
00023 public:
00024 SnippetDlg( KActionCollection* ac, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00025 ~SnippetDlg();
00026
00027 void setShowShortcut( bool show );
00028
00029 QLabel* textLabel3;
00030 QLabel* textLabelGroup;
00031 KKeyButton* keyButton;
00032 KActionCollection* actionCollection;
00033
00034 private slots:
00035 void slotCapturedShortcut( const KShortcut& );
00036
00037 protected slots:
00038 virtual void languageChange();
00039
00040 };
00041
00042 #endif // SNIPPETDLG_H
|