kmail
snippetdlgbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SNIPPETDLGBASE_H
00010 #define SNIPPETDLGBASE_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class KPushButton;
00020 class KLineEdit;
00021 class QLabel;
00022 class KComboBox;
00023 class KTextEdit;
00024
00025 class SnippetDlgBase : public QDialog
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 SnippetDlgBase( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00031 ~SnippetDlgBase();
00032
00033 KPushButton* btnAdd;
00034 KPushButton* btnCancel;
00035 KLineEdit* snippetName;
00036 QLabel* textLabel1;
00037 QLabel* textLabel2;
00038 QLabel* textLabelGroup;
00039 KComboBox* cbGroup;
00040 KTextEdit* snippetText;
00041
00042 protected:
00043 QGridLayout* SnippetDlgBaseLayout;
00044 QHBoxLayout* layout5;
00045 QSpacerItem* spacer1;
00046 QGridLayout* layout3;
00047 QSpacerItem* spacer2;
00048
00049 protected slots:
00050 virtual void languageChange();
00051
00052 };
00053
00054 #endif // SNIPPETDLGBASE_H
|