UltraScan III
us_advanced.h
Go to the documentation of this file.
1 #ifndef US_ADVANCED_H
3 #define US_ADVANCED_H
4 
5 #include <QtCore>
6 
7 #include "us_widgets.h"
8 
12 class US_Advanced : public US_Widgets
13 {
14  Q_OBJECT
15 
16  public:
17 
19  US_Advanced( QWidget* w = 0, Qt::WindowFlags flags = 0 );
20 
21  private:
22 
23  QPushButton* pb_reset;
24  QPushButton* pb_save;
25  QPushButton* pb_help;
26  QPushButton* pb_close;
27 
28  QSpinBox* sb_debug;
29  QSpinBox* sb_advanced;
30  QSpinBox* sb_threads;
31 
32  QTextEdit* te_dbgtext;
33 
34  private slots:
35  void save ( void );
36  void help ( void );
37  void reset ( void );
38 };
39 #endif