| 368 | } |
| 369 | |
| 370 | bool ElaNavigationBar::getNodeIsExpanded(const QString& expanderKey) const |
| 371 | { |
| 372 | Q_D(const ElaNavigationBar); |
| 373 | ElaNavigationNode* node = d->_navigationModel->getNavigationNode(expanderKey); |
| 374 | if (!node || !node->getIsExpanderNode()) |
| 375 | { |
| 376 | return false; |
| 377 | } |
| 378 | return d->_navigationView->isExpanded(node->getModelIndex()); |
| 379 | } |
| 380 | |
| 381 | void ElaNavigationBar::expandNode(const QString& expanderKey) |
| 382 | { |
no test coverage detected