GEMC  2.3
Geant4 Monte-Carlo Framework
infos.h
Go to the documentation of this file.
1 #ifndef infos_H
2 #define infos_H 1
3 
4 // Qt headers
5 #include <QWidget>
6 #include <QSlider>
7 #include <QComboBox>
8 
9 // gemc headers
10 #include "options.h"
11 
12 // C++ headers
13 #include <string>
14 #include <map>
15 using namespace std;
16 
17 
18 
19 // Class definition
20 class AboutTab : public QWidget
21 {
22  Q_OBJECT
23 
24  public:
25  AboutTab(QWidget *parent = 0, goptions* = 0);
26  QString load_doc();
27 };
28 
29 class PColorsTab : public QWidget
30 {
31  Q_OBJECT
32 
33  public:
34  PColorsTab(QWidget *parent = 0, goptions* = 0);
35  QString load_doc();
36 };
37 
38 
39 class LUNDTab : public QWidget
40 {
41  Q_OBJECT
42 
43  public:
44  LUNDTab(QWidget *parent = 0, goptions* = 0);
45  QString load_doc();
46 };
47 
48 
49 
50 class infos : public QWidget
51 {
52  // metaobject required for non-qt slots
53  Q_OBJECT
54 
55  public:
56  infos(QWidget *parent, goptions*);
57  ~infos();
58 
60 
64 };
65 
66 #endif
67 
68 
69 
70 
71 
72 
73 
74 
Definition: infos.h:39
Definition: infos.h:20
STL namespace.
AboutTab * abouttab
Definition: infos.h:61
LUNDTab * lundtab
Definition: infos.h:63
goptions * gemcOpt
Definition: infos.h:59
PColorsTab * pcolorstab
Definition: infos.h:62
Definition: infos.h:50