bsnes/hiro/cocoa/widget/widget.hpp

26 lines
667 B
C++
Raw Normal View History

#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