source: PSPA/Interface_Web/trunk/pspaWT/include/GWt_cell.h @ 48

Last change on this file since 48 was 41, checked in by lemeur, 12 years ago

renommages

File size: 957 bytes
Line 
1#ifndef GWT_CELL_SEEN
2#define GWT_CELL_SEEN
3
4
5
6#include "GWt_pspaApplication.h"
7#include "abstractElement.h"
8
9#include <Wt/WContainerWidget>
10
11#include <iostream>
12#include <string>
13#include <sstream>
14
15using namespace Wt;
16using namespace std;
17
18class GWt_cell : public WContainerWidget
19{
20    PspaApplication* pspa_;
21    abstractElement* cell_;
22    WDialog* dialog_;
23    WPushButton* dropped_;
24
25  WLineEdit* lenghtElemEdit_; // cm
26  WLineEdit* apertureEdit_; // cm
27  WLineEdit* initialPhaseEdit_; // degres
28  WLineEdit* phaseStepMaxEdit_;   // degres
29  WLineEdit* acceleratingFieldEdit_; // MV/m
30  WLineEdit* acceleratingShapeFileEdit_; // string
31  WLineEdit* focusingMagFileEdit_; // string
32  WLineEdit* offsetMagEdit_; // cm
33  WLineEdit* scaleFactorEdit_; 
34
35  GWt_cell() {;}
36  ~GWt_cell() {;}
37
38 public :
39
40 GWt_cell(PspaApplication* ps,abstractElement* elem, string image);
41
42WPushButton* getButton();
43
44void openParametersForm();
45
46void dialogDone();
47};
48
49#endif
Note: See TracBrowser for help on using the repository browser.