bsnes/hiro/gtk/widget/check-label.hpp

16 lines
245 B
C++
Executable File

#if defined(Hiro_CheckLabel)
namespace hiro {
struct pCheckLabel : pWidget {
Declare(CheckLabel, Widget)
auto minimumSize() const -> Size;
auto setChecked(bool checked) -> void;
auto setText(const string& text) -> void;
};
}
#endif