korganizer
calprintyearconfig_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef CALPRINTYEAR_BASE_H
00010 #define CALPRINTYEAR_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 QButtonGroup;
00020 class QLabel;
00021 class QSpinBox;
00022 class QComboBox;
00023 class QGroupBox;
00024
00025 class CalPrintYearConfig_Base : public QWidget
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 CalPrintYearConfig_Base( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00031 ~CalPrintYearConfig_Base();
00032
00033 QButtonGroup* mDateRangeGroup;
00034 QLabel* mYearLabel;
00035 QLabel* mPagesLabel;
00036 QSpinBox* mYear;
00037 QComboBox* mPages;
00038 QGroupBox* mDisplayOptionsGroup;
00039 QLabel* mSubDaysLabel;
00040 QLabel* mHolidaysLabel;
00041 QComboBox* mSubDays;
00042 QComboBox* mHolidays;
00043
00044 protected:
00045 QVBoxLayout* CalPrintYear_BaseLayout;
00046 QSpacerItem* spacer3;
00047 QGridLayout* mDateRangeGroupLayout;
00048 QSpacerItem* spacer4;
00049 QSpacerItem* spacer5;
00050 QGridLayout* mDisplayOptionsGroupLayout;
00051
00052 protected slots:
00053 virtual void languageChange();
00054
00055 };
00056
00057 #endif // CALPRINTYEAR_BASE_H
|