00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
#ifndef RINGBINDERSTYLEAPPEARANCEFORM_H
00011
#define RINGBINDERSTYLEAPPEARANCEFORM_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 QGroupBox;
00021
class QLabel;
00022
class KListBox;
00023
class QListBoxItem;
00024
class QPushButton;
00025
class QCheckBox;
00026
class QSpinBox;
00027
00028
class RingBinderStyleAppearanceForm :
public QWidget
00029 {
00030 Q_OBJECT
00031
00032
public:
00033 RingBinderStyleAppearanceForm(
QWidget* parent = 0,
const char* name = 0, WFlags fl = 0 );
00034 ~RingBinderStyleAppearanceForm();
00035
00036
QGroupBox* GroupBox1;
00037
QLabel* TextLabel1;
00038 KListBox* letterListBox;
00039
QPushButton* groupButton;
00040
QPushButton* ungroupButton;
00041
QGroupBox* GroupBox3;
00042
QCheckBox* cbFillEmpty;
00043
QCheckBox* cbAlwaysAllPages;
00044
QLabel* sblabel;
00045
QSpinBox* sbMinNumFill;
00046
QGroupBox* GroupBox2;
00047
QCheckBox* cbPhoneNumbers;
00048
QCheckBox* cbEmails;
00049
QCheckBox* cbStreetAddresses;
00050
QCheckBox* cbOrganization;
00051
QCheckBox* cbBirthday;
00052
00053
public slots:
00054
virtual void groupLetter();
00055
virtual void ungroupLetter();
00056
00057
protected:
00058
QGridLayout* RingBinderStyleAppearanceFormLayout;
00059
QGridLayout* GroupBox1Layout;
00060
QSpacerItem* Spacer1;
00061
QGridLayout* GroupBox3Layout;
00062
QVBoxLayout* GroupBox2Layout;
00063
00064
protected slots:
00065
virtual void languageChange();
00066
00067 };
00068
00069
#endif // RINGBINDERSTYLEAPPEARANCEFORM_H