gzdoom/libraries/ZWidget/include/zwidget/widgets/checkboxlabel/checkboxlabel.h

36 lines
757 B
C
Raw Normal View History

2023-12-26 23:44:40 +00:00
#pragma once
#include "../../core/widget.h"
class CheckboxLabel : public Widget
{
public:
CheckboxLabel(Widget* parent = nullptr);
void SetText(const std::string& value);
const std::string& GetText() const;
void SetChecked(bool value);
bool GetChecked() const;
void Toggle();
2023-12-26 23:44:40 +00:00
double GetPreferredHeight() const;
std::function<void(bool)> FuncChanged;
void SetRadioStyle(bool on) { radiostyle = on; }
2023-12-26 23:44:40 +00:00
protected:
void OnPaint(Canvas* canvas) override;
void OnMouseDown(const Point& pos, int key) override;
void OnMouseUp(const Point& pos, int key) override;
void OnMouseLeave() override;
void OnKeyUp(EInputKey key) override;
2023-12-26 23:44:40 +00:00
private:
std::string text;
bool checked = false;
bool radiostyle = false;
bool mouseDownActive = false;
2023-12-26 23:44:40 +00:00
};