FreeRDP/client/SDL/SDL3/dialogs/sdl_button.hpp
2024-08-29 16:03:51 +02:00

26 lines
511 B
C++

#pragma once
#include <string>
#include "sdl_widget.hpp"
class SdlButton : public SdlWidget
{
public:
SdlButton(SDL_Renderer* renderer, std::string label, int id, const SDL_FRect& rect);
SdlButton(SdlButton&& other) noexcept;
~SdlButton() override = default;
bool highlight(SDL_Renderer* renderer);
bool mouseover(SDL_Renderer* renderer);
bool update(SDL_Renderer* renderer);
[[nodiscard]] int id() const;
private:
SdlButton(const SdlButton& other) = delete;
std::string _name;
int _id;
};