2007-12-01 10:47:15 +00:00
|
|
|
/*
|
2023-01-01 17:05:57 +01:00
|
|
|
Copyright 2006-2023 The QElectroTech Team
|
2007-12-01 10:47:15 +00:00
|
|
|
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/>.
|
|
|
|
*/
|
2007-09-21 12:35:28 +00:00
|
|
|
#ifndef QET_DIAGRAM_EDITOR_H
|
|
|
|
#define QET_DIAGRAM_EDITOR_H
|
2018-06-20 18:03:39 +00:00
|
|
|
|
2020-12-08 19:57:35 +01:00
|
|
|
#include "SearchAndReplace/ui/searchandreplacewidget.h"
|
|
|
|
#include "qetmainwindow.h"
|
|
|
|
|
2018-06-20 18:03:39 +00:00
|
|
|
#include <QActionGroup>
|
2021-03-07 20:23:07 +01:00
|
|
|
#include <QCloseEvent>
|
2020-12-08 19:57:35 +01:00
|
|
|
#include <QDir>
|
2018-06-20 18:03:39 +00:00
|
|
|
#include <QMdiArea>
|
|
|
|
#include <QSignalMapper>
|
|
|
|
#include <QUndoGroup>
|
|
|
|
|
|
|
|
class QMdiSubWindow;
|
2009-04-03 19:30:25 +00:00
|
|
|
class QETProject;
|
2012-07-13 07:21:19 +00:00
|
|
|
class QETResult;
|
2009-04-03 19:30:25 +00:00
|
|
|
class ProjectView;
|
2013-02-12 18:37:08 +00:00
|
|
|
class CustomElement;
|
2009-04-03 19:30:25 +00:00
|
|
|
class Diagram;
|
2007-04-12 03:13:13 +00:00
|
|
|
class DiagramView;
|
2013-02-12 18:37:08 +00:00
|
|
|
class Element;
|
2007-04-12 03:13:13 +00:00
|
|
|
class ElementsPanelWidget;
|
2009-05-19 19:00:37 +00:00
|
|
|
class ElementsLocation;
|
2008-07-30 11:51:27 +00:00
|
|
|
class RecentFiles;
|
2015-05-07 22:15:00 +00:00
|
|
|
class DiagramPropertiesEditorDockWidget;
|
2015-12-08 16:52:10 +00:00
|
|
|
class ElementsCollectionWidget;
|
2016-07-13 14:57:27 +00:00
|
|
|
class AutoNumberingDockWidget;
|
2015-12-08 16:52:10 +00:00
|
|
|
|
2020-12-16 23:06:08 +01:00
|
|
|
#ifdef BUILD_WITHOUT_KF5
|
|
|
|
#else
|
|
|
|
class KAutoSaveFile;
|
|
|
|
#endif
|
2007-04-12 03:13:13 +00:00
|
|
|
/**
|
2012-11-09 21:09:24 +00:00
|
|
|
This class represents the main window of the QElectroTech diagram editor and,
|
|
|
|
ipso facto, the most important part of the QElectroTech user interface.
|
2007-04-12 03:13:13 +00:00
|
|
|
*/
|
2018-06-20 18:03:39 +00:00
|
|
|
class QETDiagramEditor : public QETMainWindow
|
|
|
|
{
|
2007-04-12 03:13:13 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-09-07 22:03:40 +02:00
|
|
|
QETDiagramEditor(
|
|
|
|
const QStringList & = QStringList(),
|
|
|
|
QWidget * = nullptr);
|
2017-08-05 02:10:01 +00:00
|
|
|
~QETDiagramEditor() override;
|
|
|
|
void closeEvent (QCloseEvent *) override;
|
2015-01-11 08:50:36 +00:00
|
|
|
QList<ProjectView *> openedProjects () const;
|
|
|
|
void addProjectView (ProjectView *);
|
2018-04-04 15:07:52 +00:00
|
|
|
bool openAndAddProject (const QString &, bool = true);
|
2015-01-11 08:50:36 +00:00
|
|
|
QList<QString> editedFiles () const;
|
|
|
|
ProjectView *viewForFile (const QString &) const;
|
2018-09-25 16:05:24 +00:00
|
|
|
ProjectView *currentProjectView() const;
|
|
|
|
QETProject *currentProject() const;
|
2016-08-18 16:30:24 +00:00
|
|
|
bool drawGrid() const;
|
2020-12-16 23:06:08 +01:00
|
|
|
#ifdef BUILD_WITHOUT_KF5
|
|
|
|
#else
|
2019-03-16 10:50:30 +00:00
|
|
|
void openBackupFiles (QList<KAutoSaveFile *> backup_files);
|
2020-12-16 23:06:08 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
protected:
|
2017-08-05 02:10:01 +00:00
|
|
|
bool event(QEvent *) override;
|
2007-04-12 03:13:13 +00:00
|
|
|
private:
|
2020-09-07 22:03:40 +02:00
|
|
|
QETDiagramEditor(const QETDiagramEditor &);
|
2018-06-20 18:03:39 +00:00
|
|
|
void setUpElementsPanel ();
|
|
|
|
void setUpElementsCollectionWidget();
|
|
|
|
void setUpUndoStack ();
|
|
|
|
void setUpSelectionPropertiesEditor();
|
|
|
|
void setUpAutonumberingWidget();
|
|
|
|
void setUpActions ();
|
|
|
|
void setUpToolBar ();
|
|
|
|
void setUpMenu ();
|
|
|
|
|
|
|
|
bool addProject(QETProject *, bool = true);
|
|
|
|
DiagramView *currentDiagramView() const;
|
|
|
|
Element *currentElement() const;
|
|
|
|
ProjectView *findProject(DiagramView *) const;
|
|
|
|
ProjectView *findProject(Diagram *) const;
|
|
|
|
ProjectView *findProject(QETProject *) const;
|
|
|
|
ProjectView *findProject(const QString &) const;
|
|
|
|
QMdiSubWindow *subWindowForWidget(QWidget *) const;
|
2015-09-19 13:27:06 +00:00
|
|
|
|
2007-04-12 03:13:13 +00:00
|
|
|
public slots:
|
2014-12-26 19:41:00 +00:00
|
|
|
void save();
|
|
|
|
void saveAs();
|
|
|
|
bool newProject();
|
|
|
|
bool openProject();
|
|
|
|
bool openRecentFile(const QString &);
|
|
|
|
bool closeProject(ProjectView *);
|
|
|
|
bool closeProject(QETProject *);
|
2015-09-19 13:27:06 +00:00
|
|
|
void zoomGroupTriggered (QAction *action);
|
|
|
|
void selectGroupTriggered (QAction *action);
|
|
|
|
void addItemGroupTriggered (QAction *action);
|
|
|
|
void selectionGroupTriggered (QAction *action);
|
|
|
|
void rowColumnGroupTriggered (QAction *action);
|
2014-12-26 19:41:00 +00:00
|
|
|
void slot_updateActions();
|
|
|
|
void slot_updateUndoStack();
|
|
|
|
void slot_updateModeActions();
|
|
|
|
void slot_updateComplexActions();
|
|
|
|
void slot_updatePasteAction();
|
|
|
|
void slot_updateWindowsMenu();
|
2016-07-13 14:57:27 +00:00
|
|
|
void slot_updateAutoNumDock();
|
2018-06-20 18:03:39 +00:00
|
|
|
void generateTerminalBlock();
|
2014-12-26 19:41:00 +00:00
|
|
|
void setWindowedMode();
|
|
|
|
void setTabbedMode();
|
|
|
|
void readSettings();
|
|
|
|
void writeSettings();
|
|
|
|
void activateProject(QETProject *);
|
|
|
|
void activateProject(ProjectView *);
|
|
|
|
void activateWidget(QWidget *);
|
|
|
|
void projectWasClosed(ProjectView *);
|
|
|
|
void editProjectProperties(ProjectView *);
|
|
|
|
void editProjectProperties(QETProject *);
|
|
|
|
void editDiagramProperties(DiagramView *);
|
|
|
|
void editDiagramProperties(Diagram *);
|
|
|
|
void addDiagramToProject(QETProject *);
|
|
|
|
void removeDiagram(Diagram *);
|
|
|
|
void removeDiagramFromProject();
|
|
|
|
void moveDiagramUp(Diagram *);
|
|
|
|
void moveDiagramDown(Diagram *);
|
2015-03-04 06:00:25 +00:00
|
|
|
void moveDiagramUpTop(Diagram *);
|
2014-12-26 19:41:00 +00:00
|
|
|
void moveDiagramUpx10(Diagram *);
|
|
|
|
void moveDiagramDownx10(Diagram *);
|
2016-09-14 13:58:44 +00:00
|
|
|
void reloadOldElementPanel();
|
2014-12-26 19:41:00 +00:00
|
|
|
void diagramWasAdded(DiagramView *);
|
|
|
|
void findElementInPanel(const ElementsLocation &);
|
|
|
|
void showError(const QETResult &);
|
|
|
|
void showError(const QString &);
|
|
|
|
void subWindowActivated(QMdiSubWindow *subWindows);
|
2014-12-10 17:00:08 +00:00
|
|
|
|
|
|
|
private slots:
|
2015-05-07 22:15:00 +00:00
|
|
|
void selectionChanged();
|
2016-07-13 14:57:27 +00:00
|
|
|
|
2016-08-18 16:30:24 +00:00
|
|
|
public:
|
2020-09-07 22:03:40 +02:00
|
|
|
QAction
|
|
|
|
*m_edit_diagram_properties, ///< Show a dialog to edit diagram properties
|
|
|
|
*m_conductor_reset, ///< Reset paths of selected conductors
|
|
|
|
*m_cut, ///< Cut selection to clipboard
|
|
|
|
*m_copy; ///< Copy selection to clipboard
|
2018-06-20 18:03:39 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
QActionGroup
|
|
|
|
m_row_column_actions_group, /// Action related to add/remove rows/column in diagram
|
|
|
|
m_selection_actions_group, ///Action related to edit a selected item
|
|
|
|
*m_depth_action_group = nullptr;
|
2018-06-20 18:03:39 +00:00
|
|
|
|
2016-08-18 16:30:24 +00:00
|
|
|
private:
|
2020-09-07 22:03:40 +02:00
|
|
|
QActionGroup
|
|
|
|
*grp_visu_sel, ///< Action group for visualisation vs edition mode
|
|
|
|
*m_group_view_mode, ///< Action group for project
|
|
|
|
m_add_item_actions_group, ///Action related to adding (add text image shape...)
|
|
|
|
m_zoom_actions_group, ///Action related to zoom for diagram
|
|
|
|
m_select_actions_group, ///Action related to global selections
|
|
|
|
m_file_actions_group; ///Actions related to file (open, close, save...)
|
2018-06-20 18:03:39 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
QAction
|
|
|
|
*m_tabbed_view_mode, ///< Display projects as tabs
|
|
|
|
*m_windowed_view_mode, ///< Display projects as windows
|
|
|
|
*m_mode_selection, ///< Set edition mode
|
|
|
|
*m_mode_visualise, ///< Set visualisation mode
|
2020-10-10 14:37:23 +02:00
|
|
|
*m_export_to_images, ///< Export diagrams of the current project as imagess
|
|
|
|
*m_export_to_pdf = nullptr, ///< Export project to pdf.
|
2020-09-07 22:03:40 +02:00
|
|
|
*m_print, ///< Print diagrams of the current project
|
|
|
|
*m_quit_editor, ///< Quit the diagram editor
|
|
|
|
*undo, ///< Cancel the latest action
|
|
|
|
*redo, ///< Redo the latest cancelled operation
|
|
|
|
*m_paste, ///< Paste clipboard content on the current diagram
|
|
|
|
*m_auto_conductor, ///< Enable/Disable the use of auto conductor
|
|
|
|
*conductor_default, ///< Show a dialog to edit default conductor properties
|
|
|
|
*m_grey_background, ///< Switch the background color in white or grey
|
|
|
|
*m_draw_grid, ///< Switch the background grid display or not
|
|
|
|
*m_project_edit_properties, ///< Edit the properties of the current project.
|
|
|
|
*m_project_add_diagram, ///< Add a diagram to the current project.
|
|
|
|
*m_remove_diagram_from_project, ///< Delete a diagram from the current project
|
2022-12-04 06:24:28 -05:00
|
|
|
*m_clean_project, ///< Clean the content of the current project by removing useless items
|
2020-09-07 22:03:40 +02:00
|
|
|
*m_project_folio_list, ///< Sommaire des schemas
|
|
|
|
*m_csv_export, ///< generate nomenclature
|
|
|
|
*m_add_nomenclature, ///< Add nomenclature graphics item;
|
|
|
|
*m_add_summary, ///<Add summary graphics item
|
2022-12-04 06:24:28 -05:00
|
|
|
*m_terminal_strip_dialog = nullptr, ///<Launch terminal strip dialog
|
2020-09-07 22:03:40 +02:00
|
|
|
*m_project_terminalBloc, ///< generate terminal block
|
|
|
|
*m_project_export_conductor_num,///<Export the wire num to csv
|
|
|
|
*m_export_project_db, ///Export to file the internal database of the current project
|
|
|
|
*m_tile_window, ///< Show MDI subwindows as tile
|
|
|
|
*m_cascade_window, ///< Show MDI subwindows as cascade
|
|
|
|
*m_previous_window, ///< Switch to the previous document
|
|
|
|
*m_next_window, ///< Switch to the next document
|
|
|
|
*m_edit_selection, ///< To edit selected item
|
|
|
|
*m_delete_selection, ///< Delete selection
|
|
|
|
*m_rotate_selection, ///< Rotate selected elements and text items by 90 degrees
|
|
|
|
*m_rotate_texts, ///< Direct selected text items to a specific angle
|
|
|
|
*m_find_element, ///< Find the selected element in the panel
|
|
|
|
*m_group_selected_texts = nullptr,
|
|
|
|
*m_close_file, ///< Close current project file
|
|
|
|
*m_save_file, ///< Save current project
|
|
|
|
*m_save_file_as, ///< Save current project as a specific file
|
|
|
|
*m_find = nullptr;
|
|
|
|
|
2014-12-26 19:41:00 +00:00
|
|
|
QList <QAction *> m_zoom_action_toolBar; ///Only zoom action must displayed in the toolbar
|
2014-06-07 21:03:49 +00:00
|
|
|
|
2018-06-20 18:03:39 +00:00
|
|
|
QMdiArea m_workspace;
|
2014-12-26 19:41:00 +00:00
|
|
|
QSignalMapper windowMapper;
|
2018-06-20 18:03:39 +00:00
|
|
|
QDir open_dialog_dir; /// Directory to use for file dialogs such as File > save
|
2020-09-07 22:03:40 +02:00
|
|
|
|
|
|
|
QDockWidget
|
|
|
|
*qdw_pa, /// Dock for the elements panel
|
|
|
|
*m_qdw_elmt_collection,
|
|
|
|
*qdw_undo; /// Dock for the undo list
|
|
|
|
|
2015-12-08 16:52:10 +00:00
|
|
|
ElementsCollectionWidget *m_element_collection_widget;
|
2018-06-20 18:03:39 +00:00
|
|
|
|
2015-05-07 22:15:00 +00:00
|
|
|
DiagramPropertiesEditorDockWidget *m_selection_properties_editor;
|
2018-06-17 18:21:56 +00:00
|
|
|
/// Elements panel
|
2014-12-26 19:41:00 +00:00
|
|
|
ElementsPanelWidget *pa;
|
|
|
|
QMenu *windows_menu;
|
2018-06-17 18:21:56 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
QToolBar
|
|
|
|
*main_tool_bar = nullptr,
|
|
|
|
*view_tool_bar = nullptr,
|
|
|
|
*diagram_tool_bar = nullptr,
|
|
|
|
*m_add_item_tool_bar = nullptr,
|
|
|
|
*m_depth_tool_bar = nullptr;
|
2018-06-17 18:21:56 +00:00
|
|
|
|
2014-12-26 19:41:00 +00:00
|
|
|
QUndoGroup undo_group;
|
2016-07-13 14:57:27 +00:00
|
|
|
AutoNumberingDockWidget *m_autonumbering_dock;
|
|
|
|
int activeSubWindowIndex;
|
2017-05-01 16:22:34 +00:00
|
|
|
bool m_first_show = true;
|
2018-09-25 16:05:24 +00:00
|
|
|
SearchAndReplaceWidget m_search_and_replace_widget;
|
2007-04-12 03:13:13 +00:00
|
|
|
};
|
2006-10-27 15:47:22 +00:00
|
|
|
#endif
|