mirror of https://github.com/bsnes-emu/bsnes.git
30 lines
410 B
C++
Executable File
30 lines
410 B
C++
Executable File
bool pWidget::enabled() {
|
|
return false;
|
|
}
|
|
|
|
bool pWidget::focused() {
|
|
return false;
|
|
}
|
|
|
|
Geometry pWidget::minimumGeometry() {
|
|
return {0, 0, 0, 0};
|
|
}
|
|
|
|
void pWidget::setEnabled(bool enabled) {
|
|
}
|
|
|
|
void pWidget::setFocused() {
|
|
}
|
|
|
|
void pWidget::setFont(const string &font) {
|
|
}
|
|
|
|
void pWidget::setGeometry(const Geometry &geometry) {
|
|
}
|
|
|
|
void pWidget::setVisible(bool visible) {
|
|
}
|
|
|
|
void pWidget::constructor() {
|
|
}
|