2011-02-27 09:11:01 +00:00
|
|
|
bool pWidget::enabled() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-08-20 14:40:44 +00:00
|
|
|
Font& pWidget::font() {
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
Geometry pWidget::minimumGeometry() {
|
|
|
|
return { 0, 0, 0, 0 };
|
|
|
|
}
|
|
|
|
|
2011-02-27 09:11:01 +00:00
|
|
|
void pWidget::setEnabled(bool enabled) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void pWidget::setFocused() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void pWidget::setFont(Font &font) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void pWidget::setGeometry(const Geometry &geometry) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void pWidget::setVisible(bool visible) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void pWidget::constructor() {
|
|
|
|
}
|