mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
29 lines
610 B
C++
29 lines
610 B
C++
#pragma once
|
|
|
|
#include "PascalStr.h"
|
|
#include "PLWidgets.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class RadioButtonWidget final : public WidgetSpec<RadioButtonWidget>
|
|
{
|
|
public:
|
|
RadioButtonWidget(const WidgetBasicState &state);
|
|
~RadioButtonWidget();
|
|
|
|
bool Init(const WidgetBasicState &state) override;
|
|
|
|
void DrawControl(DrawSurface *surface) override;
|
|
void SetString(const PLPasStr &str) override;
|
|
PLPasStr GetString() const override;
|
|
|
|
void OnStateChanged() override;
|
|
|
|
WidgetHandleState_t ProcessEvent(const TimeTaggedVOSEvent &evt);
|
|
|
|
private:
|
|
PascalStr<255> m_text;
|
|
bool m_haveMouseDown;
|
|
};
|
|
}
|