korganizer
calprintjournalconfig_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef CALPRINTJOURNAL_BASE_H
00010 #define CALPRINTJOURNAL_BASE_H
00011
00012 #include <qvariant.h>
00013 #include <qpixmap.h>
00014 #include <qwidget.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class KDateEdit;
00021 class QButtonGroup;
00022 class QRadioButton;
00023 class QLabel;
00024
00025 class CalPrintJournalConfig_Base : public QWidget
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 CalPrintJournalConfig_Base( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00031 ~CalPrintJournalConfig_Base();
00032
00033 QButtonGroup* mDateRangeGroup;
00034 QRadioButton* mAllJournals;
00035 QRadioButton* mRangeJournals;
00036 QLabel* mFromDateLabel;
00037 KDateEdit* mFromDate;
00038 QLabel* mToDateLabel;
00039 KDateEdit* mToDate;
00040
00041 protected:
00042 QVBoxLayout* CalPrintJournal_BaseLayout;
00043 QSpacerItem* spacer3;
00044 QVBoxLayout* mDateRangeGroupLayout;
00045 QHBoxLayout* layout2;
00046 QSpacerItem* spacer6;
00047 QSpacerItem* spacer1;
00048
00049 protected slots:
00050 virtual void languageChange();
00051
00052 private:
00053 QPixmap image0;
00054
00055 };
00056
00057 #endif // CALPRINTJOURNAL_BASE_H
|