00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef HK_KDENEWPASSWORDDIALOGBASE_H
00010 #define HK_KDENEWPASSWORDDIALOGBASE_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014 class QVBoxLayout;
00015 class QHBoxLayout;
00016 class QGridLayout;
00017 class QLabel;
00018 class QLineEdit;
00019 class QPushButton;
00020
00021 class hk_kdenewpassworddialogbase : public QDialog
00022 {
00023 Q_OBJECT
00024
00025 public:
00026 hk_kdenewpassworddialogbase( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00027 ~hk_kdenewpassworddialogbase();
00028
00029 QLabel* repeatlabel;
00030 QLineEdit* passwordfield;
00031 QLineEdit* repeatfield;
00032 QLabel* passwordlabel;
00033 QPushButton* buttonOk;
00034 QPushButton* buttonCancel;
00035 QLabel* headlinelabel;
00036
00037 public slots:
00038 virtual void data_changed();
00039 virtual void ok_clicked();
00040
00041 protected:
00042 QGridLayout* hk_kdenewpassworddialogbaseLayout;
00043 QVBoxLayout* Layout3;
00044 QGridLayout* Layout2;
00045 QVBoxLayout* Layout5;
00046 };
00047 #endif // HK_KDENEWPASSWORDDIALOGBASE_H