| 133 | } |
| 134 | |
| 135 | List<PanePtr> PaneManager::getAllPanes() { |
| 136 | List<PanePtr> list; |
| 137 | for (auto const& layerPair : m_displayedPanes) { |
| 138 | for (auto const& panePair : layerPair.second) { |
| 139 | if (panePair.first != m_activeTooltip && panePair.first->active()) |
| 140 | list.append(panePair.first); |
| 141 | } |
| 142 | } |
| 143 | return list; |
| 144 | } |
| 145 | |
| 146 | void PaneManager::setBackgroundWidget(WidgetPtr bg) { |
| 147 | m_backgroundWidget = bg; |
no test coverage detected