kmail
snippetsettingsbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SNIPPETSETTINGSBASE_H
00010 #define SNIPPETSETTINGSBASE_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class QGroupBox;
00020 class QCheckBox;
00021 class QButtonGroup;
00022 class QRadioButton;
00023 class QLabel;
00024 class KLineEdit;
00025
00026 class SnippetSettingsBase : public QWidget
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 SnippetSettingsBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00032 ~SnippetSettingsBase();
00033
00034 QGroupBox* groupBox1;
00035 QCheckBox* cbToolTip;
00036 QButtonGroup* buttonGroup1;
00037 QButtonGroup* btnGroup;
00038 QRadioButton* rbSingle;
00039 QRadioButton* rbAll;
00040 QLabel* textLabel1;
00041 KLineEdit* leDelimiter;
00042
00043 protected:
00044 QGridLayout* SnippetSettingsBaseLayout;
00045 QSpacerItem* spacer2;
00046 QGridLayout* groupBox1Layout;
00047 QGridLayout* buttonGroup1Layout;
00048 QGridLayout* btnGroupLayout;
00049 QHBoxLayout* layout1;
00050 QSpacerItem* spacer3;
00051
00052 protected slots:
00053 virtual void languageChange();
00054
00055 };
00056
00057 #endif // SNIPPETSETTINGSBASE_H
|