1
0
mirror of https://github.com/vcmi/vcmi.git synced 2026-05-22 09:55:17 +02:00
Files
vcmi/client/renderSDL/CursorSoftware.h
T

45 lines
966 B
C++
Raw Normal View History

/*
2023-02-01 16:42:03 +02:00
* CursorSoftware.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
2009-04-16 11:14:13 +00:00
*/
#pragma once
class CAnimation;
class IImage;
struct SDL_Surface;
2018-07-25 01:36:48 +03:00
struct SDL_Texture;
2023-01-05 22:13:24 +02:00
struct SDL_Cursor;
#include "../../lib/Point.h"
#include "../render/ICursor.h"
2009-04-16 11:14:13 +00:00
2023-01-05 22:38:52 +02:00
class CursorSoftware : public ICursor
2009-04-16 11:14:13 +00:00
{
std::shared_ptr<IImage> cursorImage;
SDL_Texture * cursorTexture;
SDL_Surface * cursorSurface;
Point pos;
Point pivot;
2018-07-25 01:36:48 +03:00
bool needUpdate;
2023-01-19 18:16:11 +02:00
bool visible;
2018-07-25 01:36:48 +03:00
void createTexture(const Point & dimensions);
void updateTexture();
public:
CursorSoftware();
~CursorSoftware();
2023-01-05 22:38:52 +02:00
void setImage(std::shared_ptr<IImage> image, const Point & pivotOffset) override;
void setCursorPosition( const Point & newPos ) override;
void render() override;
2023-01-19 18:16:11 +02:00
void setVisible( bool on) override;
};
2016-10-28 14:03:26 +03:00