source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_elementSnapshot.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: 804 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* snapshotFile_;
17   
18 public:
19   
20  GWt_elementSnapshot() {;}
21  GWt_elementSnapshot(GWt_elementLigneFaisceau*,int);
22  ~GWt_elementSnapshot() {;}
23 
24  virtual void dialogDone(WDialog::DialogCode code);
25   
26  inline string getMimeType() {return "htdocs/snapshot.jpg"; }
27  inline string getSmallImageURL() {return "htdocs/snapshot.jpg"; }
28  inline string getBigImageURL() {return "htdocs/snapshot.jpg"; }
29  inline string getName() {return "snapshot"; }
30 
31 private :
32
33  void initilializeDialog();
34};
35#endif
Note: See TracBrowser for help on using the repository browser.