korganizer
calprintweekconfig_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef CALPRINTWEEK_BASE_H
00010 #define CALPRINTWEEK_BASE_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014 #include <kdateedit.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class QGroupBox;
00021 class QLabel;
00022 class KDateEdit;
00023 class QTimeEdit;
00024 class QCheckBox;
00025 class QButtonGroup;
00026 class QRadioButton;
00027
00028 class CalPrintWeekConfig_Base : public QWidget
00029 {
00030 Q_OBJECT
00031
00032 public:
00033 CalPrintWeekConfig_Base( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00034 ~CalPrintWeekConfig_Base();
00035
00036 QGroupBox* mDateRangeGroup;
00037 QLabel* mFromDateLabel;
00038 KDateEdit* mFromDate;
00039 QLabel* mToTimeLabel;
00040 QTimeEdit* mToTime;
00041 QLabel* mFromTimeLabel;
00042 QTimeEdit* mFromTime;
00043 KDateEdit* mToDate;
00044 QLabel* mToDateLabel;
00045 QCheckBox* mColors;
00046 QButtonGroup* mPrintType;
00047 QRadioButton* mPrintTypeButton1;
00048 QRadioButton* mPrintTypeButton2;
00049 QRadioButton* mPrintTypeButton3;
00050 QCheckBox* mIncludeTodos;
00051
00052 protected:
00053 QGridLayout* CalPrintWeek_BaseLayout;
00054 QSpacerItem* spacer3;
00055 QGridLayout* mDateRangeGroupLayout;
00056 QSpacerItem* spacer1;
00057 QSpacerItem* spacer4;
00058 QGridLayout* mPrintTypeLayout;
00059
00060 protected slots:
00061 virtual void languageChange();
00062
00063 };
00064
00065 #endif // CALPRINTWEEK_BASE_H
|