source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_elementMpole.h @ 455

Last change on this file since 455 was 455, checked in by garnier, 10 years ago

grosse modification pour intégrer les sections

File size: 830 bytes
Line 
1#ifndef GWt_elementMpole_SEEN
2#define GWt_elementMpole_SEEN
3
4
5#include "GWt_abstractElement.h"
6#include "abstractElement.h"
7
8#include <iostream>
9#include <string>
10#include <sstream>
11
12using namespace Wt;
13using namespace std;
14
15class GWt_elementMpole : public GWt_abstractElement
16{
17  WLineEdit* orderEdit_;
18  WLineEdit* componentEdit_;
19
20 public :
21 
22  GWt_elementMpole()  {;}
23  GWt_elementMpole(GWt_elementLigneFaisceau*, abstractElement*);
24  ~GWt_elementMpole() {;}
25 
26  virtual void dialogDone(WDialog::DialogCode code);
27  WImage* getImage();
28   
29  inline string getMimeType() {return "htdocs/mpole.jpg";}
30  inline string getSmallImageURL() {return "htdocs/mpole.jpg";}
31  inline string getBigImageURL() {return "htdocs/mpole.jpg";}
32  inline string getName() {return "mpole";}
33 
34 private :
35
36  void initilializeDialog();
37};
38#endif
Note: See TracBrowser for help on using the repository browser.