| 758 | } |
| 759 | |
| 760 | QList<View*> IdealController::shownViews() const |
| 761 | { |
| 762 | QList<View*> shown; |
| 763 | forEachShownToolView([&shown](View* view) { |
| 764 | shown.push_back(view); |
| 765 | }); |
| 766 | return shown; |
| 767 | } |
| 768 | |
| 769 | QList<QDockWidget*> IdealController::shownButInvisibleFloatingDockWidgets() const |
| 770 | { |
no test coverage detected