korganizer
template_management_dialog_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef TEMPLATEMANAGEMENTDIALOG_BASE_H
00010 #define TEMPLATEMANAGEMENTDIALOG_BASE_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 KListBox;
00020 class QListBoxItem;
00021 class QPushButton;
00022 class QLabel;
00023
00024 class TemplateManagementDialog_base : public QWidget
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 TemplateManagementDialog_base( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00030 ~TemplateManagementDialog_base();
00031
00032 KListBox* m_listBox;
00033 QPushButton* m_buttonAdd;
00034 QPushButton* m_buttonDelete;
00035 QLabel* m_introLabel;
00036 QPushButton* m_buttonApply;
00037
00038 protected:
00039 QGridLayout* TemplateManagementDialog_baseLayout;
00040 QSpacerItem* spacer1;
00041
00042 protected slots:
00043 virtual void languageChange();
00044
00045 };
00046
00047 #endif // TEMPLATEMANAGEMENTDIALOG_BASE_H
|