Start to move terminal strip editor from QDialog to QMainWindow

This commit is contained in:
joshua
2022-03-14 17:56:18 +01:00
parent 9cbc3a2265
commit ceb54fbc6a
7 changed files with 473 additions and 0 deletions

View File

@@ -43,6 +43,7 @@
#include "undocommand/rotatetextscommand.h"
#include "diagram.h"
#include "TerminalStrip/ui/terminalstripeditor.h"
#include "TerminalStrip/ui/terminalstripeditorwindow.h"
#include "ui/diagrameditorhandlersizewidget.h"
#ifdef BUILD_WITHOUT_KF5
@@ -448,6 +449,9 @@ void QETDiagramEditor::setUpActions()
{
auto str = new TerminalStripEditor(project, this);
str->show();
auto tsew = new TerminalStripEditorWindow(project, this);
tsew->show();
}
});