Forgotten

This commit is contained in:
Jean-Paul Chaput 2008-07-07 14:56:32 +00:00
parent 204758bf37
commit 3bb9ddf157
1 changed files with 45 additions and 0 deletions

View File

@ -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