]>
Commit | Line | Data |
---|---|---|
8704bf74 JS |
1 | /* |
2 | Copyright (C) 1996 Scott W. Sadler | |
3 | All rights reserved. | |
4 | */ | |
5 | ||
6 | /* | |
7 | XsMoveOutline.h | |
8 | ||
9 | History | |
0d57be45 | 10 | 03-Mar-96 1.0; Scott W. Sadler (ssadler@cisco.com) |
8704bf74 JS |
11 | Created |
12 | */ | |
13 | ||
14 | #ifndef XSMOVEOUTLINE_H | |
15 | #define XSMOVEOUTLINE_H | |
16 | ||
17 | // Includes | |
18 | ||
19 | #include "XsOutline.h" | |
20 | ||
21 | // XsMoveOutline class | |
22 | ||
23 | class XsMoveOutline : public XsOutline { | |
24 | ||
25 | public: | |
26 | ||
27 | // Constructor/Destructor | |
28 | ||
29 | XsMoveOutline (Widget w); | |
30 | virtual ~XsMoveOutline ( ); | |
31 | ||
32 | protected: | |
33 | ||
34 | // Motion handler | |
35 | ||
36 | virtual void _motionHandler (XEvent*); | |
37 | ||
38 | // Moving cursor | |
39 | ||
40 | virtual Cursor _getCursor ( ) const; | |
41 | ||
42 | private: | |
43 | ||
44 | // Implementation | |
45 | ||
46 | int _rootX; | |
47 | int _rootY; | |
48 | ||
49 | static Cursor _fleur; | |
50 | }; | |
51 | ||
52 | #endif |