00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UPDATEOLDER_H
00011 #define UPDATEOLDER_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class QLabel;
00021 class QPushButton;
00022 class QSpinBox;
00023
00024 class updateOlder : public QDialog
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 updateOlder( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00030 ~updateOlder();
00031
00032 QLabel* textLabel4;
00033 QLabel* textLabel2;
00034 QLabel* upLabel;
00035 QPushButton* upOk;
00036 QPushButton* uoCancel;
00037 QSpinBox* uoSpin;
00038
00039 public slots:
00040 virtual void upOk_clicked();
00041 virtual void uoCancel_clicked();
00042
00043 protected:
00044
00045 protected slots:
00046 virtual void languageChange();
00047
00048 };
00049
00050 #endif // UPDATEOLDER_H