UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
selection_dialog.hpp
1 /* selection_dialog.hpp */
2 /* $Id$ */
3 #ifndef __hds_selection_dialog_hpp
4 #define __hds_selection_dialog_hpp
5 
6 #include <QGridLayout>
7 
8 #include "hds_widgets/dialog.hpp"
9 
11 namespace hds
12 {
15  {
16  Q_OBJECT
17 
18  public:
19 
21  SelectionDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
22 
24  virtual ~SelectionDialog();
25 
27  int operator()();
28 
30  virtual void update();
31 
32  protected:
33 
35  QGridLayout& mainGridLayout();
36 
37  private:
38 
40  QGridLayout *m_pGrdLay;
41 
42  };
43 };
44 
45 #endif /* selection_dialog.hpp */
virtual ~SelectionDialog()
Definition: selection_dialog.hpp:14
QGridLayout & mainGridLayout()
virtual void update()
Definition: dialog.hpp:15
SelectionDialog(QWidget *parent=0, Qt::WindowFlags f=0)