Ignore:
Timestamp:
Dec 11, 2013, 9:33:35 AM (11 years ago)
Author:
lemeur
Message:

ajout traitement utilisateur

File:
1 copied

Legend:

Unmodified
Added
Removed
  • Interface_Web/trunk/pspaWT/sources/userInterface/src/GWt_snapshot.cc

    r434 r442  
    1919  string* param = beginDialog();
    2020
    21   new WText("name of file for snapshot : ",dialog_->contents());
    22   snapshotFile_ = new WLineEdit(param->c_str(),dialog_->contents());
     21  new WText("name of user's program : ",dialog_->contents());
     22  programFile_ = new WLineEdit(param->c_str(),dialog_->contents());
     23  new WBreak(dialog_->contents());
     24
     25
     26  new WText("name of input beam file, output from pspa : ",dialog_->contents());
     27  inputBeamFile_ = new WLineEdit( (++param)->c_str(),dialog_->contents());
     28  new WBreak(dialog_->contents());
     29
     30  new WText("name of output beam file (input for pspa) : ",dialog_->contents());
     31  outputBeamFile_ = new WLineEdit( (++param)->c_str(),dialog_->contents());
    2332  new WBreak(dialog_->contents());
    2433
     
    4049  envoi[++compteur] = mixedTools::intToString(nbParam);
    4150  envoi[++compteur] = labelEdit_->text().toUTF8();
    42   envoi[++compteur] = snapshotFile_->text().toUTF8();
     51  envoi[++compteur] = programFile_->text().toUTF8();
     52
     53  envoi[++compteur] = inputBeamFile_->text().toUTF8();
     54  envoi[++compteur] = outputBeamFile_->text().toUTF8();
     55
     56
    4357  if ( compteur !=  (int)nbParam ) {
    4458    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.