bsnes/higan/phoenix/reference/widget/widget.hpp

21 lines
416 B
C++

namespace phoenix {
struct pWidget : public pSizable {
Widget& widget;
bool enabled();
bool focused();
Size minimumSize();
void setEnabled(bool enabled);
void setFocused();
void setFont(const string& font);
void setGeometry(const Geometry& geometry);
void setVisible(bool visible);
pWidget(Widget& widget) : pSizable(widget), widget(widget) {}
void constructor();
void destructor();
};
}