1234567891011121314151617181920212223242526 |
- #if defined(Hiro_Widget)
- namespace hiro {
- struct pWidget : pSizable {
- Declare(Widget, Sizable)
- auto focused() const -> bool;
- virtual auto setDroppable(bool droppable) -> void;
- auto setEnabled(bool enabled) -> void override;
- virtual auto setFocusable(bool focusable) -> void;
- auto setFocused() -> void override;
- auto setFont(const Font& font) -> void override;
- auto setGeometry(Geometry geometry) -> void override;
- auto setMouseCursor(const MouseCursor& mouseCursor) -> void;
- auto setToolTip(const string& toolTip) -> void;
- auto setVisible(bool visible) -> void override;
- NSView* cocoaView = nullptr;
- bool abstract = false;
- };
- }
- #endif
|