1234567891011121314151617181920 |
- #if defined(Hiro_Label)
- namespace hiro {
- struct pLabel : pWidget {
- Declare(Label, Widget)
- auto minimumSize() const -> Size override;
- auto setAlignment(Alignment alignment) -> void;
- auto setBackgroundColor(Color color) -> void;
- auto setForegroundColor(Color color) -> void;
- auto setText(const string& text) -> void;
- auto windowProc(HWND, UINT, WPARAM, LPARAM) -> maybe<LRESULT> override;
- };
- }
- #endif
|