korganizer
calprintmonthconfig_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef CALPRINTMONTH_BASE_H
00010 #define CALPRINTMONTH_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 KComboBox;
00023 class KIntSpinBox;
00024 class QCheckBox;
00025
00026 class CalPrintMonthConfig_Base : public QWidget
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 CalPrintMonthConfig_Base( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00032 ~CalPrintMonthConfig_Base();
00033
00034 QGroupBox* mDateRangeGroup;
00035 QLabel* mFromDateLabel;
00036 KComboBox* mFromMonth;
00037 KIntSpinBox* mFromYear;
00038 QLabel* mToDateLabel;
00039 KComboBox* mToMonth;
00040 KIntSpinBox* mToYear;
00041 QCheckBox* mIncludeTodos;
00042 QCheckBox* mWeekNumbers;
00043 QCheckBox* mRecurDaily;
00044 QCheckBox* mRecurWeekly;
00045
00046 protected:
00047 QGridLayout* CalPrintMonth_BaseLayout;
00048 QSpacerItem* spacer2;
00049 QHBoxLayout* mDateRangeGroupLayout;
00050 QSpacerItem* spacer1;
00051
00052 protected slots:
00053 virtual void languageChange();
00054
00055 };
00056
00057 #endif // CALPRINTMONTH_BASE_H
|