// Copyright (C) 2002-2007 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irrlicht.h #ifndef __I_CURSOR_CONTROL_H_INCLUDED__ #define __I_CURSOR_CONTROL_H_INCLUDED__ #include "position2d.h" #include "IUnknown.h" #include "irrTypes.h" namespace irr { namespace gui { //! Interface to manipulate the mouse cursor. class ICursorControl : public virtual IUnknown { public: //! Changes the visible state of the mouse cursor. /** \param visible: The new visible state. If true, the cursor will be visible, if false, it will be invisible. */ virtual void setVisible(bool visible) = 0; //! Returns if the cursor is currently visible. /** \return Returns true if the cursor is visible, false if not. */ virtual bool isVisible() = 0; //! Sets the new position of the cursor. /** \param pos: New position of the cursor. The position must be between (0.0f, 0.0f) and (1.0f, 1.0f), where (0.0f, 0.0f) is the top left corner and (1.0f, 1.0f) is the bottom right corner of the render window. */ virtual void setPosition(const core::position2d &pos) = 0; //! Sets the new position of the cursor. /** \param pos: New position of the cursor. The position must be between (0.0f, 0.0f) and (1.0f, 1.0f), where (0.0f, 0.0f) is the top left corner and (1.0f, 1.0f) is the bottom right corner of the render window. */ virtual void setPosition(f32 x, f32 y) = 0; //! Sets the new position of the cursor. /** \param pos: New position of the cursor. The coordinates are pixel units. */ virtual void setPosition(const core::position2d &pos) = 0; //! Sets the new position of the cursor. /** \param pos: New position of the cursor. The coordinates are pixel units. */ virtual void setPosition(s32 x, s32 y) = 0; //! Returns the current position of the mouse cursor. /** \return Returns the current position of the cursor. The returned position is the position of the mouse cursor in pixel units. */ virtual core::position2d getPosition() = 0; //! Returns the current position of the mouse cursor. /** \return Returns the current position of the cursor. The returned position is a value between (0.0f, 0.0f) and (1.0f, 1.0f), where (0.0f, 0.0f) is the top left corner and (1.0f, 1.0f) is the bottom right corner of the render window. */ virtual core::position2d getRelativePosition() = 0; }; } // end namespace gui } // end namespace irr #endif