mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
28 lines
600 B
C++
28 lines
600 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "sdl_widget.hpp"
|
|
|
|
class SdlButton : public SdlWidget
|
|
{
|
|
public:
|
|
SdlButton(SDL_Renderer* renderer, std::string label, int id, SDL_Rect rect);
|
|
SdlButton(const SdlButton& other) = delete;
|
|
SdlButton(SdlButton&& other) noexcept;
|
|
~SdlButton() override;
|
|
|
|
SdlButton& operator=(const SdlButton& other) = delete;
|
|
SdlButton& operator=(SdlButton&& other) = delete;
|
|
|
|
bool highlight(SDL_Renderer* renderer);
|
|
bool mouseover(SDL_Renderer* renderer);
|
|
bool update(SDL_Renderer* renderer);
|
|
|
|
[[nodiscard]] int id() const;
|
|
|
|
private:
|
|
std::string _name;
|
|
int _id;
|
|
};
|