Files
Aerofoil/PortabilityLayer/PLCheckboxWidget.h

29 lines
598 B
C
Raw Normal View History

2020-01-05 02:33:03 -05:00
#pragma once
#include "PascalStr.h"
2020-01-05 02:33:03 -05:00
#include "PLWidgets.h"
namespace PortabilityLayer
{
class CheckboxWidget final : public WidgetSpec<CheckboxWidget>
{
public:
CheckboxWidget(const WidgetBasicState &state);
~CheckboxWidget();
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;
2020-01-05 02:33:03 -05:00
};
}