UltraScan III
us_get_dbexp.h
Go to the documentation of this file.
1 #ifndef US_GET_DBEXP_H
2 #define US_GET_DBEXP_H
3 
4 #include <QtGui>
5 
6 #include "us_extern.h"
7 #include "us_widgets_dialog.h"
8 
17 {
18  Q_OBJECT
19 
20  public:
23  US_GetDBExp( QString& );
24 
27  class RunInfo
28  {
29  public:
30  int ID;
31  QString date;
32  QString runID;
33  QString label;
34  };
35 
36  private:
37  QTableWidget* tw;
38  QString& expID;
39  QList< RunInfo > runInfo;
40 
41  bool loadData ( void );
42 
43  private slots:
44  void columnClicked ( int );
45  void select ( void );
46 };
47 #endif