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

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

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

File size: 1.0 KB
Line 
1#ifndef GWT_elementCell_SEEN
2#define GWT_elementCell_SEEN
3
4#include "GWt_abstractElement.h"
5
6#include <iostream>
7#include <string>
8#include <sstream>
9
10using namespace Wt;
11using namespace std;
12
13class GWt_elementCell : public GWt_abstractElement
14{
15  WLineEdit* lenghtElemEdit_; // cm
16  WLineEdit* apertureEdit_; // cm
17  WLineEdit* initialPhaseEdit_; // degres
18  WLineEdit* phaseStepMaxEdit_;   // degres
19  WLineEdit* acceleratingFieldEdit_; // MV/m
20  WLineEdit* acceleratingShapeFileEdit_; // string
21  WLineEdit* focusingMagFileEdit_; // string
22  WLineEdit* offsetMagEdit_; // cm
23  WLineEdit* scaleFactorEdit_;
24     
25 public :
26   
27  GWt_elementCell() {;}
28  GWt_elementCell(GWt_elementLigneFaisceau* );
29  ~GWt_elementCell() {;}
30 
31  virtual void dialogDone(WDialog::DialogCode code);
32   
33  inline string getMimeType() {return "htdocs/cell.jpg"; }
34  inline string getSmallImageURL() {return "htdocs/cell.jpg"; }
35  inline string getBigImageURL() {return "htdocs/cell.jpg"; }
36  inline string getName() {return "cell"; }
37 
38 private :
39
40  void initilializeDialog();
41 
42};
43#endif
Note: See TracBrowser for help on using the repository browser.