]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/mdi/lib/XsMoveOutline.h
More Motif additions: mdi and sashtest samples now just about work!
[wxWidgets.git] / src / motif / mdi / lib / XsMoveOutline.h
diff --git a/src/motif/mdi/lib/XsMoveOutline.h b/src/motif/mdi/lib/XsMoveOutline.h
new file mode 100644 (file)
index 0000000..7e830c6
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+   Copyright (C) 1996 Scott W. Sadler
+   All rights reserved.
+*/
+
+/*
+   XsMoveOutline.h
+
+   History
+      03-Mar-96 1.0; Scott W. Sadler (sws@iti-oh.com)
+                     Created         
+*/
+
+#ifndef XSMOVEOUTLINE_H
+#define XSMOVEOUTLINE_H
+
+// Includes
+
+#include "XsOutline.h"
+
+// XsMoveOutline class
+
+class XsMoveOutline : public XsOutline {
+
+   public:
+      
+// Constructor/Destructor
+
+      XsMoveOutline (Widget w);
+      virtual ~XsMoveOutline ( );
+
+   protected:
+      
+// Motion handler
+
+      virtual  void _motionHandler (XEvent*);
+
+// Moving cursor
+
+      virtual Cursor _getCursor ( ) const;
+
+   private:
+
+// Implementation
+
+      int      _rootX;
+      int      _rootY;
+
+      static   Cursor   _fleur;
+};
+
+#endif