| 532 | } |
| 533 | |
| 534 | QWidget *MainWindow::createToolView(KTextEditor::Plugin* plugin, const QString &identifier, |
| 535 | KTextEditor::MainWindow::ToolViewPosition pos, |
| 536 | const QIcon &icon, const QString &text) |
| 537 | { |
| 538 | auto factory = new ToolViewFactory(text, icon, identifier, pos); |
| 539 | Core::self()->uiController()->addToolView(text, factory); |
| 540 | connect(plugin, &QObject::destroyed, this, [=] { |
| 541 | Core::self()->uiController()->removeToolView(factory); |
| 542 | }); |
| 543 | return factory->container(); |
| 544 | } |
| 545 | |
| 546 | KXMLGUIFactory *MainWindow::guiFactory() const |
| 547 | { |