2013-01-12 15:57:29 +00:00
|
|
|
#ifndef _SDL4OGRE_CURSOR_MANAGER_H
|
|
|
|
#define _SDL4OGRE_CURSOR_MANAGER_H
|
|
|
|
|
2013-01-12 21:52:26 +00:00
|
|
|
#include <SDL_types.h>
|
2013-01-12 15:57:29 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Ogre
|
|
|
|
{
|
|
|
|
class TexturePtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace SFO
|
|
|
|
{
|
|
|
|
class CursorManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~CursorManager(){}
|
|
|
|
|
|
|
|
/// \brief Tell the manager that the cursor has changed, giving the
|
|
|
|
/// name of the cursor we changed to ("arrow", "ibeam", etc)
|
|
|
|
/// \return Whether the manager is interested in more information about the cursor
|
|
|
|
virtual bool cursorChanged(const std::string &name) = 0;
|
|
|
|
|
|
|
|
/// \brief Follow up a cursorChanged() call with enough info to create an cursor.
|
2013-06-12 12:58:07 +00:00
|
|
|
virtual void receiveCursorInfo(const std::string &name, int rotDegrees, Ogre::TexturePtr tex, Uint8 size_x, Uint8 size_y, Uint8 hotspot_x, Uint8 hotspot_y) = 0;
|
2013-01-12 15:57:29 +00:00
|
|
|
|
|
|
|
/// \brief Tell the manager when the cursor visibility changed
|
|
|
|
virtual void cursorVisibilityChange(bool visible) = 0;
|
|
|
|
|
|
|
|
/// \brief sets whether to actively manage cursors or not
|
|
|
|
virtual void setEnabled(bool enabled) = 0;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|