From 3bb9ddf1572c8975333e27f6ca2119b450ba65fd Mon Sep 17 00:00:00 2001
From: Jean-Paul Chaput <Jean-Paul.Chaput@lip6.fr>
Date: Mon, 7 Jul 2008 14:56:32 +0000
Subject: [PATCH] Forgotten

---
 .../hviewer/hurricane/viewer/HMousePosition.h | 45 +++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 hurricane/src/hviewer/hurricane/viewer/HMousePosition.h

diff --git a/hurricane/src/hviewer/hurricane/viewer/HMousePosition.h b/hurricane/src/hviewer/hurricane/viewer/HMousePosition.h
new file mode 100644
index 00000000..10051f1f
--- /dev/null
+++ b/hurricane/src/hviewer/hurricane/viewer/HMousePosition.h
@@ -0,0 +1,45 @@
+
+// -*- C++ -*-
+
+
+# ifndef  __HMOUSE_POSITION_H__
+#   define  __HMOUSE_POSITION_H__
+
+# include  <QWidget>
+
+class QLabel;
+
+# include  "hurricane/Commons.h"
+# include  "hurricane/Point.h"
+
+
+namespace Hurricane {
+
+
+  class DynamicLabel;
+
+
+  class HMousePosition : public QWidget {
+      Q_OBJECT;
+
+    public:
+    // Constructor.
+                              HMousePosition ( QWidget* parent=NULL );
+    public slots:
+              void            setPosition    ( const Point& position );
+
+    protected:
+    // Internal - Attributes.
+              DynamicLabel*   _xPosition;
+              DynamicLabel*   _yPosition;
+
+    // Internal - Constructor.
+                              HMousePosition ( const DynamicLabel& );
+              HMousePosition& operator=      ( const DynamicLabel& );
+  };
+
+
+} // End of Hurricane namespace.
+
+
+# endif