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