| 187 | } |
| 188 | |
| 189 | void ElaWindow::setCustomWidget(ElaAppBarType::CustomArea customArea, QWidget* widget, QObject* hitTestObject, const QString& hitTestFunctionName) |
| 190 | { |
| 191 | Q_D(ElaWindow); |
| 192 | d->_appBar->setCustomWidget(customArea, widget, hitTestObject, hitTestFunctionName); |
| 193 | Q_EMIT customWidgetChanged(); |
| 194 | } |
| 195 | |
| 196 | QWidget* ElaWindow::getCustomWidget(ElaAppBarType::CustomArea customArea) const |
| 197 | { |
nothing calls this directly
no test coverage detected