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