00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef MYDIALOG1_H
00010 #define MYDIALOG1_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class QRadioButton;
00020 class QPushButton;
00021 class QLineEdit;
00022 class QLabel;
00023
00024 class Zoom : public QDialog
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 Zoom( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00030 ~Zoom();
00031
00032 QRadioButton* rbHeight;
00033 QRadioButton* rbPage;
00034 QRadioButton* rbNone;
00035 QRadioButton* rbUser;
00036 QPushButton* buttonOk;
00037 QPushButton* buttonCancel;
00038 QPushButton* buttonHelp;
00039 QLineEdit* leZoom;
00040 QLabel* tlPercent;
00041 QRadioButton* rbWidth;
00042
00043 public slots:
00044 virtual void slotZoom();
00045
00046 protected:
00047 QVBoxLayout* Layout5;
00048 QSpacerItem* Spacer1;
00049
00050 protected slots:
00051 virtual void languageChange();
00052
00053 };
00054
00055 #endif // MYDIALOG1_H