source: PSPA/Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_dropZoneLigneFaisceau.h @ 292

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

Refactoring part 3

File size: 693 bytes
Line 
1#ifndef GWT_DROPZONELIGNEFAISEAU_SEEN
2#define GWT_DROPZONELIGNEFAISEAU_SEEN
3
4#include "GWt_dropZoneLigneFaisceau.h"
5#include "GWt_pspaApplication.h"
6
7#include <Wt/WContainerWidget>
8
9using namespace Wt;
10
11
12class GWt_dropZoneLigneFaisceau : public WContainerWidget
13{
14    public :
15   
16    GWt_dropZoneLigneFaisceau(PspaApplication* pspa_);
17    ~GWt_dropZoneLigneFaisceau();
18   
19private:
20    void initialise( PspaApplication* pspa);
21    void mouseOver(const WMouseEvent &e );
22    void mouseOut(const WMouseEvent &e );
23    void mouseUp(const WMouseEvent &e );
24    void mouseDown(const WMouseEvent &e );
25    void mouseIsDragged(const WMouseEvent &e );
26    void dropEvent(WDropEvent evt);
27};
28#endif
Note: See TracBrowser for help on using the repository browser.