Ignore:
Timestamp:
Dec 19, 2013, 3:53:53 PM (10 years ago)
Author:
garnier
Message:

Désormais il est de nouveau possible d'ajouter des sections et dy affecter des softwares (ne marche pour le moment quavec la 1ere sectionToExecute. Autres améliorations et renommages

File:
1 edited

Legend:

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

    r455 r469  
    88class GWt_softwarePanel;
    99class GWt_sector;
     10class sectionToExecute;
    1011
    1112class GWt_sectionToExecute : public Wt::WContainerWidget
    1213{
    1314    public :
    14     GWt_sectionToExecute(Wt::WComboBox*,Wt::WComboBox*,Wt::WComboBox*,Wt::WContainerWidget* buttonPanel,GWt_softwarePanel* sPanel,GWt_sector*);
     15    GWt_sectionToExecute(Wt::WComboBox* ,Wt::WComboBox* ,Wt::WComboBox*,Wt::WContainerWidget* ,sectionToExecute*,GWt_sector* );
    1516
    1617    ~GWt_sectionToExecute() {;}
    1718
     19    void setSoftware();
     20
    1821    inline Wt::WString getFirstElementCurrentText() {
    19         return firstElement->currentText();
     22        return firstElement_->currentText();
    2023    }
    2124   
    2225    inline Wt::WString getLastElementCurrentText() {
    23         return lastElement->currentText();
    24     }
    25    
    26     inline Wt::WString getSoftwareCurrentText() {
    27         return software->currentText();
     26        return lastElement_->currentText();
    2827    }
    2928   
    3029    inline Wt::WComboBox * getFirstElement() {
    31         return firstElement;
     30        return firstElement_;
    3231    }
    3332   
    3433    inline Wt::WComboBox * getLastElement() {
    35         return lastElement;
     34        return lastElement_;
    3635    }
    3736   
    38     inline Wt::WComboBox * getSoftware() {
    39         return software;
    40     }
    4137    void setFirstElementCurrentSelection(Wt::WString);
    4238    void setLastElementCurrentSelection(Wt::WString);
     
    5652   
    5753    void manageWarningsAndErrors();
    58     Wt::WComboBox*  firstElement;
    59     Wt::WComboBox*  lastElement;
    60     Wt::WComboBox* software;
    61     GWt_softwarePanel* softwarePanel;
     54    Wt::WComboBox*  firstElement_;
     55    Wt::WComboBox*  lastElement_;
     56    Wt::WComboBox*  softElement_;
     57    sectionToExecute* section_;
     58    GWt_sector* UIsector_;
    6259
    6360    Wt::WText* errorsLabel_;
     
    6663    Wt::WContainerWidget* warningsContainer_;
    6764    Wt::WContainerWidget* errorsContainer_;
    68     GWt_sector* UI_sector_;
    6965};
    7066
Note: See TracChangeset for help on using the changeset viewer.