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

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

grosse modification pour intégrer les sections

File size: 881 bytes
Line 
1#ifndef GWt_elementSnapshot_SEEN
2#define GWt_elementSnapshot_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_elementSnapshot : public GWt_abstractElement
15{
16   WLineEdit* programFile_;
17  WLineEdit* inputBeamFile_;
18  WLineEdit* outputBeamFile_;
19 
20 public:
21   
22  GWt_elementSnapshot() {;}
23  GWt_elementSnapshot(GWt_elementLigneFaisceau*, abstractElement*, int);
24  ~GWt_elementSnapshot() {;}
25 
26  virtual void dialogDone(WDialog::DialogCode code);
27   
28  inline string getMimeType() {return "htdocs/snapshot.jpg"; }
29  inline string getSmallImageURL() {return "htdocs/snapshot.jpg"; }
30  inline string getBigImageURL() {return "htdocs/snapshot.jpg"; }
31  inline string getName() {return "snapshot"; }
32 
33 private :
34
35  void initilializeDialog();
36};
37#endif
Note: See TracBrowser for help on using the repository browser.