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

@@ -0,0 +1,47 @@
/*
Copyright 2006-2022 The QElectroTech Team
This file is part of QElectroTech.
QElectroTech is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
QElectroTech is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TERMINALSTRIPEDITORWINDOW_H
#define TERMINALSTRIPEDITORWINDOW_H
#include <QMainWindow>
class QETProject;
class TerminalStripTreeDockWidget;
namespace Ui {
class TerminalStripEditorWindow;
}
class TerminalStripEditorWindow : public QMainWindow
{
Q_OBJECT
public:
explicit TerminalStripEditorWindow(QETProject *project, QWidget *parent = nullptr);
~TerminalStripEditorWindow();
private:
void addTreeDockWidget();
private:
Ui::TerminalStripEditorWindow *ui;
QETProject *m_project = nullptr;
TerminalStripTreeDockWidget *m_tree_dock;
};
#endif // TERMINALSTRIPEDITORWINDOW_H