mirror of https://github.com/bsnes-emu/bsnes.git
21 lines
402 B
C++
21 lines
402 B
C++
namespace phoenix {
|
|
|
|
struct pWidget : public pSizable {
|
|
Widget& widget;
|
|
|
|
bool enabled();
|
|
bool focused();
|
|
Size minimumSize();
|
|
void setEnabled(bool enabled);
|
|
void setFocused();
|
|
void setFont(string font);
|
|
void setGeometry(Geometry geometry);
|
|
void setVisible(bool visible);
|
|
|
|
pWidget(Widget& widget) : pSizable(widget), widget(widget) {}
|
|
void constructor();
|
|
void destructor();
|
|
};
|
|
|
|
}
|