Ignore:
Timestamp:
Oct 25, 2013, 3:50:49 PM (11 years ago)
Author:
touze
Message:

preparation pour ajouter une maille FODO

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_globalParameters.h

    r272 r426  
    22#define GWT_GLOBALPARAMETERS_SEEN
    33
    4 #include "GWt_pspaApplication.h"
     4#include <string>
    55
    66#include <Wt/WApplication>
    77#include <Wt/WContainerWidget>
    8 #include <Wt/WPanel>
    9 
     8#include <Wt/WDialog>
     9#include <Wt/WText>
    1010
    1111using namespace Wt;
    1212using namespace std;
    1313
     14class dataManager;
     15
    1416class GWt_globalParameters : public WContainerWidget
    1517{
    16    
    17     PspaApplication* pspa_;
    18     //  dataManager* dtmanage_;
    19     WLineEdit* frequencyEdit_;
    20     WLineEdit* stepEdit_;
    21     WLineEdit* nstepMAxEdit_;
    22     WLineEdit* nscEdit_;
    23    
    24     //  vector<WComboBox*> sectionSelection_;
    25    
    26    
    27     /* WLineEdit* origineEdit1_; */
    28     /* WLineEdit* origineEdit2_; */
    29     /* WComboBox* selectionBox1_; */
    30    
    31     /* WLineEdit* extremiteEdit1_; */
    32     /* WLineEdit* extremiteEdit2_; */
    33     /* WComboBox* selectionBox2_; */
    34    
    35     //  WContainerWidget* contenuSections_;
    36    
    37     GWt_globalParameters() {;}
    38    
    39 public:
    40    
    41     //  GWt_globalParameters(dataManager* dt);
    42     GWt_globalParameters(PspaApplication* ps);
    43    
    44     void updateGlobals();
    45    
    46    
    47     void renew();
    48    
    49     //    void addElem();
    50    
    51     //    void addSection();
    52    
    53     //   void getExecute(unsigned index, unsigned& first, unsigned& last, int& programm);
    54    
    55     //  void lancerCalcul();
    56    
     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();
    5743};
    5844#endif
Note: See TracChangeset for help on using the changeset viewer.