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
Line 
1#ifndef GWt_elementDriftFaisceau_SEEN
2#define GWt_elementDriftFaisceau_SEEN
3
4#include "GWt_abstractElement.h"
5#include "abstractElement.h"
6
7#include <iostream>
8#include <string>
9#include <sstream>
10
11using namespace Wt;
12using namespace std;
13
14class GWt_elementDrift : public GWt_abstractElement
15{
16  WLineEdit* xlengthEdit_;
17  WLineEdit* apertureEdit_;
18     
19 public:
20   
21  GWt_elementDrift() {;}
22  GWt_elementDrift(GWt_elementLigneFaisceau* );
23  ~GWt_elementDrift() {;}
24 
25  virtual void dialogDone(WDialog::DialogCode code);
26   
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 :
33
34  void initilializeDialog();
35};
36#endif
Note: See TracBrowser for help on using the repository browser.