korganizer
calprintincidenceconfig_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef CALPRINTINCIDENCE_BASE_H
00010 #define CALPRINTINCIDENCE_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 QCheckBox;
00021
00022 class CalPrintIncidenceConfig_Base : public QWidget
00023 {
00024 Q_OBJECT
00025
00026 public:
00027 CalPrintIncidenceConfig_Base( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00028 ~CalPrintIncidenceConfig_Base();
00029
00030 QButtonGroup* mComponentsGroup;
00031 QCheckBox* mShowDetails;
00032 QCheckBox* mShowSubitemsNotes;
00033 QCheckBox* mShowAttendees;
00034 QCheckBox* mShowAttachments;
00035 QCheckBox* mColors;
00036
00037 protected:
00038 QVBoxLayout* CalPrintIncidence_BaseLayout;
00039 QSpacerItem* spacer3;
00040 QVBoxLayout* mComponentsGroupLayout;
00041
00042 protected slots:
00043 virtual void languageChange();
00044
00045 };
00046
00047 #endif // CALPRINTINCIDENCE_BASE_H
|