source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_globalParameters.h @ 426

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

preparation pour ajouter une maille FODO

File size: 871 bytes
Line 
1#ifndef GWT_GLOBALPARAMETERS_SEEN
2#define GWT_GLOBALPARAMETERS_SEEN
3
4#include <string>
5
6#include <Wt/WApplication>
7#include <Wt/WContainerWidget>
8#include <Wt/WDialog>
9#include <Wt/WText>
10
11using namespace Wt;
12using namespace std;
13
14class dataManager;
15
16class GWt_globalParameters : public WContainerWidget
17{
18  WLineEdit* frequencyEdit_;
19  WLineEdit* stepEdit_;
20  WLineEdit* nstepMAxEdit_;
21  WLineEdit* nscEdit_;
22
23  dataManager* dt_;
24  WText *status_;
25  WDialog *dialog_;
26  string envoi_[5];
27
28  string* dialogBegin();
29  void setStatus();
30
31 public :
32 
33  GWt_globalParameters() {;}
34  GWt_globalParameters(dataManager*);
35  GWt_globalParameters(dataManager*,WContainerWidget*);
36  virtual ~GWt_globalParameters() {;}
37   
38  void initilializeDialog();
39  void dialogDone(WDialog::DialogCode code);
40  void updateGlobals();
41  void renew();
42  string* getGlobalParameters();
43};
44#endif
Note: See TracBrowser for help on using the repository browser.