source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_beam.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: 774 bytes
Line 
1#ifndef GWT_BEAM_SEEN
2#define GWT_BEAM_SEEN
3
4
5#include "GWt_abstractElement.h"
6
7class GWt_beam : public GWt_abstractElement {
8   
9  WLineEdit* xEdit_; // cm
10  WLineEdit* xpEdit_; // mrad
11  WLineEdit* yEdit_; // cm
12  WLineEdit* ypEdit_; // mrad
13  WLineEdit* dlEdit_; // cm
14  WLineEdit* delEdit_; // %
15  WLineEdit* p0Edit_; // GeV/c
16     
17 public :
18   
19  GWt_beam() {;}
20  GWt_beam(GWt_elementLigneFaisceau* );
21  ~GWt_beam() {;}
22 
23  virtual void dialogDone(WDialog::DialogCode code);
24   
25  inline string getMimeType() {return "htdocs/beam.jpg"; }
26  inline string getSmallImageURL() {return "htdocs/beam.jpg"; }
27  inline string getBigImageURL() {return "htdocs/beam.jpg"; }
28  inline string getName() {return "beam"; }
29 
30 private :
31 
32  void initilializeDialog();
33};
34#endif
Note: See TracBrowser for help on using the repository browser.