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

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

sauver/restaurer une config ok

File size: 817 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  virtual ~GWt_globalParameters() {;}
36   
37  void initilializeDialog();
38  void dialogDone(WDialog::DialogCode code);
39  void updateGlobals();
40  void renew();
41  void setText(WContainerWidget*);
42};
43#endif
Note: See TracBrowser for help on using the repository browser.