source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_elementDrift.h @ 437

Last change on this file since 437 was 437, checked in by garnier, 11 years ago

Renommage de toutes les classes d’élément dans le GWt_ par GWt_elementXXX

File size: 817 bytes
RevLine 
[437]1#ifndef GWt_elementDriftFaisceau_SEEN
2#define GWt_elementDriftFaisceau_SEEN
[39]3
[107]4#include "GWt_abstractElement.h"
[41]5#include "abstractElement.h"
[39]6
7#include <iostream>
8#include <string>
9#include <sstream>
10
11using namespace Wt;
12using namespace std;
13
[437]14class GWt_elementDrift : public GWt_abstractElement
[39]15{
[328]16  WLineEdit* xlengthEdit_;
17  WLineEdit* apertureEdit_;
18     
19 public:
[272]20   
[437]21  GWt_elementDrift() {;}
22  GWt_elementDrift(GWt_elementLigneFaisceau* );
23  ~GWt_elementDrift() {;}
[328]24 
25  virtual void dialogDone(WDialog::DialogCode code);
[272]26   
[328]27  inline string getMimeType() {return "htdocs/drift.jpg"; }
28  inline string getSmallImageURL() {return "htdocs/drift.jpg"; }
29  inline string getBigImageURL() {return "htdocs/drift.jpg"; }
30  inline string getName() {return "drift"; }
31 
32 private :
[290]33
[328]34  void initilializeDialog();
[39]35};
36#endif
Note: See TracBrowser for help on using the repository browser.