kplato
kptcalendareditbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KPTCALENDAREDITBASE_H
00021 #define KPTCALENDAREDITBASE_H
00022
00023 #include <qvariant.h>
00024 #include <qwidget.h>
00025
00026 class QVBoxLayout;
00027 class QHBoxLayout;
00028 class QGridLayout;
00029 class QGroupBox;
00030 class QLabel;
00031 class QComboBox;
00032 class QButtonGroup;
00033 class QPushButton;
00034 class QListView;
00035 class QListViewItem;
00036 class QTimeEdit;
00037
00038 namespace KPlato
00039 {
00040
00041 class CalendarPanel;
00042
00043 class CalendarEditBase : public QWidget
00044 {
00045 Q_OBJECT
00046
00047 public:
00048 CalendarEditBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00049 ~CalendarEditBase();
00050
00051 QGroupBox* groupBox2;
00052 CalendarPanel* calendarPanel;
00053 QButtonGroup* day;
00054 QComboBox* state;
00055 QPushButton* bApply;
00056 QGroupBox* groupBox4;
00057 QListView* intervalList;
00058 QTimeEdit* startTime;
00059 QTimeEdit* endTime;
00060 QPushButton* bClear;
00061 QPushButton* bAddInterval;
00062
00063 protected:
00064 QHBoxLayout* CalendarEditBaseLayout;
00065 QGridLayout* groupBox2Layout;
00066 QHBoxLayout* layout10;
00067 QVBoxLayout* dayLayout;
00068 QHBoxLayout* layout8;
00069 QVBoxLayout* groupBox4Layout;
00070 QHBoxLayout* layout6;
00071 QHBoxLayout* layout5;
00072
00073 protected slots:
00074 virtual void languageChange();
00075
00076 };
00077
00078 }
00079
00080 #endif // CALENDAREDITBASE_H
|