kmail
templatesconfiguration_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef TEMPLATESCONFIGURATIONBASE_H
00010 #define TEMPLATESCONFIGURATIONBASE_H
00011
00012 #include <qvariant.h>
00013 #include <qpixmap.h>
00014 #include <qwidget.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class TemplatesInsertCommand;
00021 class QToolBox;
00022 class QTextEdit;
00023 class KActiveLabel;
00024 class QLabel;
00025 class QLineEdit;
00026
00027 class TemplatesConfigurationBase : public QWidget
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 TemplatesConfigurationBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00033 ~TemplatesConfigurationBase();
00034
00035 QToolBox* toolBox1;
00036 QWidget* page_new;
00037 QTextEdit* textEdit_new;
00038 QWidget* page_reply;
00039 QTextEdit* textEdit_reply;
00040 QWidget* page_reply_all;
00041 QTextEdit* textEdit_reply_all;
00042 QWidget* page_forward;
00043 QTextEdit* textEdit_forward;
00044 KActiveLabel* mHelp;
00045 TemplatesInsertCommand* mInsertCommand;
00046 QLabel* textLabel1;
00047 QLineEdit* lineEdit_quote;
00048
00049 protected:
00050 QVBoxLayout* TemplatesConfigurationBaseLayout;
00051 QHBoxLayout* page_newLayout;
00052 QHBoxLayout* page_replyLayout;
00053 QHBoxLayout* page_reply_allLayout;
00054 QHBoxLayout* page_forwardLayout;
00055 QHBoxLayout* layout5;
00056
00057 protected slots:
00058 virtual void languageChange();
00059
00060 private:
00061 QPixmap image0;
00062
00063 };
00064
00065 #endif // TEMPLATESCONFIGURATIONBASE_H
|