UltraScan III
us_admin.h
Go to the documentation of this file.
1 #ifndef US_ADMIN_H
3 #define US_ADMIN_H
4 
5 #include <QtGui>
6 
7 #include "us_widgets.h"
8 
10 class US_Admin : public US_Widgets
11 {
12  Q_OBJECT
13 
14  public:
19  US_Admin( QWidget* = 0, Qt::WindowFlags = 0 );
21  ~US_Admin() {};
22 
23  private:
24  QLineEdit* le_oldPasswd;
25  QLineEdit* le_passwd1;
26  QLineEdit* le_passwd2;
27 
28  QPushButton* pb_help;
29  QPushButton* pb_save;
30  QPushButton* pb_cancel;
31 
32  QString password1;
33  QString password2;
34 
35  private slots:
36  void help();
37  void save();
38 };
39 
40 #endif
41 
42