source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_machine.h @ 496

Last change on this file since 496 was 496, checked in by lemeur, 10 years ago

deplacement bouton expand machine vers computing view

File size: 860 bytes
Line 
1#ifndef GWTMACHINE_SEEN
2#define GWTMACHINE_SEEN
3
4#include <iostream>
5
6#include <Wt/WContainerWidget>
7#include "expandedMachine.h"
8#include "GWt_accelerator.h"
9#include "GWt_ligneFaisceau.h"
10#include "GWt_softwarePanel.h"
11
12using namespace Wt;
13
14using namespace std;
15
16class GWt_machine : public WObject
17{
18
19    GWt_machine() {;}
20
21
22public:
23
24   GWt_machine(GWt_accelerator*,expandedMachine*);
25  virtual ~GWt_machine();
26  void createWidgetComputing(WContainerWidget* parent);
27  void displayWidgetComputing();
28
29  //   Get the accelerator for this sector
30  inline GWt_accelerator* getAccelerator() {
31    return UI_Accelerator_;
32  }
33
34inline expandedMachine* getMachineControler() {return machineControler_;};
35 private:
36
37  void expandMachine();
38
39
40
41  //  GWt_ligneFaisceau* UI_beamLine_;
42  GWt_accelerator* UI_Accelerator_;
43expandedMachine* machineControler_;
44
45};
46
47#endif
Note: See TracBrowser for help on using the repository browser.