| 38 | } |
| 39 | |
| 40 | bool Container::start() |
| 41 | { |
| 42 | qInfo() << __FUNCTION__; |
| 43 | |
| 44 | auto &ctx = dpfInstance.serviceContext(); |
| 45 | WindowService *windowService = ctx.service<WindowService>(WindowService::name()); |
| 46 | if (windowService) { |
| 47 | windowService->addContextWidget("Virtual", new AbstractWidget(ContainerKeeper::instance()->tabWidget())); |
| 48 | } |
| 49 | |
| 50 | return true; |
| 51 | } |
| 52 | |
| 53 | dpf::Plugin::ShutdownFlag Container::stop() |
| 54 | { |
nothing calls this directly
no test coverage detected