Changeset 374 in PSPA


Ignore:
Timestamp:
Mar 6, 2013, 5:57:56 PM (11 years ago)
Author:
touze
Message:

recupere travail sur elt snapshot

Location:
Interface_Web/trunk/pspaWT/sources/userInterface
Files:
2 edited

Legend:

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

    r343 r374  
    1414class GWt_snapshot : public GWt_abstractElement
    1515{
    16      
     16  WLineEdit* snapshotFile_;
     17   
    1718 public:
    1819   
  • Interface_Web/trunk/pspaWT/sources/userInterface/src/GWt_snapshot.cc

    r343 r374  
    33#include "mixedTools.h"
    44
     5#include <Wt/WText>
    56#include <Wt/WBreak>
    67#include <Wt/WLineEdit>
     
    1718{
    1819  string* param = beginDialog();
     20
     21  new WText("name of file for snapshot : ",dialog_->contents());
     22  snapshotFile_ = new WLineEdit(param->c_str(),dialog_->contents());
    1923  new WBreak(dialog_->contents());
    2024
     
    3640  envoi[++compteur] = mixedTools::intToString(nbParam);
    3741  envoi[++compteur] = labelEdit_->text().toUTF8();
     42  envoi[++compteur] = snapshotFile_->text().toUTF8();
    3843  if ( compteur !=  (int)nbParam ) {
    3944    cerr << " GWt_snapshot::dialogDone() : pb dans le nb de parametres, compteur = " << compteur << " nbParam= " << nbParam << endl;
Note: See TracChangeset for help on using the changeset viewer.