00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef KLWLAYOUTFORMBASE_H
00011 #define KLWLAYOUTFORMBASE_H
00012
00013 #include <qvariant.h>
00014 #include <qwidget.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class QCheckBox;
00021
00022 class klwLayoutFormBase : public QWidget
00023 {
00024 Q_OBJECT
00025
00026 public:
00027 klwLayoutFormBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00028 ~klwLayoutFormBase();
00029
00030 QCheckBox* kcfg_Trennlinien;
00031 QCheckBox* kcfg_Faltmarken;
00032 QCheckBox* kcfg_Lochermarken;
00033 QCheckBox* kcfg_Fenstermarken;
00034
00035 protected:
00036 QGridLayout* klwLayoutFormBaseLayout;
00037 QVBoxLayout* layout5;
00038 QSpacerItem* spacer1;
00039 QHBoxLayout* layout4;
00040
00041 protected slots:
00042 virtual void languageChange();
00043
00044 };
00045
00046 #endif // KLWLAYOUTFORMBASE_H