source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_sectorParameters.h @ 431

Last change on this file since 431 was 431, checked in by touze, 11 years ago

systeme periodique (mailles) + multipoles + madx

File size: 773 bytes
Line 
1#ifndef GWT_SECTORPARAMETERS_SEEN
2#define GWT_SECTORPARAMETERS_SEEN
3
4#include <string>
5#include <Wt/WContainerWidget>
6#include <Wt/WLineEdit>
7#include <Wt/WDialog>
8#include <Wt/WText>
9
10using namespace Wt;
11using namespace std;
12
13class dataManager;
14
15class GWt_sectorParameters : public WContainerWidget
16{
17  WLineEdit* geometry_;
18  WLineEdit* nCells_;
19  WLineEdit* lCell_;
20  WLineEdit* pc_;
21
22  dataManager* dt_;
23  WText *status_;
24  WDialog *dialog_;
25  string envoi_[5];
26
27  string* getSectorParameters();
28  void setStatus();
29
30 public :
31 
32  GWt_sectorParameters() {;}
33  GWt_sectorParameters(dataManager*);
34  virtual ~GWt_sectorParameters() {;}
35
36  void execDialog();
37  void dialogDone(WDialog::DialogCode code);
38  void update();
39  void renew();
40  void setText(WText*);
41};
42#endif
Note: See TracBrowser for help on using the repository browser.