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

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

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

File size: 925 bytes
Line 
1#ifndef GWt_elementSoleno_SEEN
2#define GWt_elementSoleno_SEEN
3
4#include <Wt/WCheckBox>
5
6#include "GWt_abstractElement.h"
7#include "abstractElement.h"
8
9#include <iostream>
10#include <string>
11#include <sstream>
12
13using namespace Wt;
14using namespace std;
15
16class GWt_elementSoleno : public  GWt_abstractElement
17{
18  WLineEdit* xlengthEdit_;
19  WLineEdit* apertureEdit_;
20  WLineEdit* B0Edit_;
21  WCheckBox* varyB0Edit_;
22 
23  void updateB();
24   
25 public :
26   
27  GWt_elementSoleno() {;}
28  GWt_elementSoleno(GWt_elementLigneFaisceau* );
29  ~GWt_elementSoleno() {;}
30 
31  virtual void dialogDone(WDialog::DialogCode code);
32  WImage* getImage();
33 
34  inline string getMimeType() {return "htdocs/soleno.jpg"; }
35  inline string getSmallImageURL() {return "htdocs/soleno.jpg"; }
36  inline string getBigImageURL() {return "htdocs/soleno.jpg"; }
37  inline string getName() {return "soleno"; }
38 
39 private :
40
41  void initilializeDialog();
42};
43#endif
Note: See TracBrowser for help on using the repository browser.