source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_drift.h @ 328

Last change on this file since 328 was 328, checked in by touze, 11 years ago

ajout du bouton cancel aux elts

File size: 797 bytes
Line 
1#ifndef GRAPHDRIFTELEMENT_SEEN
2#define GRAPHDRIFTELEMENT_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_drift : public GWt_abstractElement
15{
16  WLineEdit* xlengthEdit_;
17  WLineEdit* apertureEdit_;
18     
19 public:
20   
21  GWt_drift() {;}
22  GWt_drift(GWt_elementLigneFaisceau* );
23  ~GWt_drift() {;}
24 
25  virtual void dialogDone(WDialog::DialogCode code);
26  WImage* getImage();
27   
28  inline string getMimeType() {return "htdocs/drift.jpg"; }
29  inline string getSmallImageURL() {return "htdocs/drift.jpg"; }
30  inline string getBigImageURL() {return "htdocs/drift.jpg"; }
31  inline string getName() {return "drift"; }
32 
33 private :
34
35  void initilializeDialog();
36};
37#endif
Note: See TracBrowser for help on using the repository browser.