| 48 | }; |
| 49 | |
| 50 | QDebug operator<<(QDebug debug, PrintDockWidget p) |
| 51 | { |
| 52 | const QDebugStateSaver saver(debug); |
| 53 | Q_ASSERT(p.dockWidget); |
| 54 | debug.noquote().nospace() << dockWidgetAreaName(*p.dockWidget) << ':' |
| 55 | << p.dockWidget->view()->document()->documentSpecifier() |
| 56 | << (p.dockWidget->isVisible() ? " (visible)" : ""); |
| 57 | return debug; |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * If a given tool view has toolbar actions, create a new QMainWindow with a |
nothing calls this directly
no test coverage detected