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, TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00025 ~SnippetDlg();
00026
00027 void setShowShortcut( bool show );
00028
00029 TQLabel* textLabel3;
00030 TQLabel* textLabelGroup;
00031 KKeyButton* keyButton;
00032 KActionCollection* actionCollection;
00033
00034 protected slots:
00035 void slotTextChanged( const TQString& );
00036 void slotReturnPressed();
00037 virtual void languageChange();
00038
00039 private slots:
00040 void slotCapturedShortcut( const KShortcut& );
00041 };
00042
00043 #endif // SNIPPETDLG_H
|