source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_soleno.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: 881 bytes
Line 
1#ifndef GWTSOLENO_SEEN
2#define GWTSOLENO_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_soleno : 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_soleno() {;}
28  GWt_soleno(GWt_elementLigneFaisceau* );
29  ~GWt_soleno() {;}
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.