source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_bend.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: 825 bytes
Line 
1#ifndef GWT_BEND_SEEN
2#define GWT_BEND_SEEN
3
4#include "GWt_abstractElement.h"
5
6class GWt_bend : public GWt_abstractElement
7{
8  WLineEdit* angleEdit_; // deg.
9  WLineEdit* radiusEdit_; // m
10  WLineEdit* xlengthEdit_; // cm
11  WLineEdit* apertureEdit_; // cm
12  WLineEdit* beta1Edit_; // deg.
13  WLineEdit* beta2Edit_; // deg.
14  WLineEdit* momentumEdit_; // MeV/c
15       
16 public :
17   
18  GWt_bend() {;}
19  GWt_bend(GWt_elementLigneFaisceau* );
20  ~GWt_bend() {;}
21 
22  virtual void dialogDone(WDialog::DialogCode code); 
23  WImage* getImage();
24 
25  inline string getMimeType() {return "htdocs/bend.jpg"; }
26  inline string getSmallImageURL() {return "htdocs/bend.jpg"; }
27  inline string getBigImageURL() {return "htdocs/bend.jpg"; }
28  inline string getName() {return "bend"; }
29 
30 private :
31 
32  void initilializeDialog();
33};
34#endif
Note: See TracBrowser for help on using the repository browser.