source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_mpole.h @ 431

Last change on this file since 431 was 431, checked in by touze, 11 years ago

systeme periodique (mailles) + multipoles + madx

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