2007-12-01 10:47:15 +00:00
|
|
|
/*
|
2020-06-15 17:42:37 +02:00
|
|
|
Copyright 2006-2020 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-06-30 17:41:07 +00:00
|
|
|
#ifndef CUSTOM_ELEMENT_EDITOR_H
|
|
|
|
#define CUSTOM_ELEMENT_EDITOR_H
|
2012-02-13 22:13:19 +00:00
|
|
|
#include "qetmainwindow.h"
|
2009-04-03 19:30:25 +00:00
|
|
|
#include "qet.h"
|
2007-08-25 03:43:05 +00:00
|
|
|
#include "elementscene.h"
|
2009-04-03 19:30:25 +00:00
|
|
|
#include "elementslocation.h"
|
2016-03-01 19:02:20 +00:00
|
|
|
|
2014-11-08 11:14:56 +00:00
|
|
|
|
2010-02-18 00:42:41 +00:00
|
|
|
class ElementItemEditor;
|
2007-08-25 03:43:05 +00:00
|
|
|
class ElementView;
|
2014-11-08 11:14:56 +00:00
|
|
|
|
2007-10-21 16:10:21 +00:00
|
|
|
/**
|
2012-11-09 21:09:24 +00:00
|
|
|
This class represents an element editor, allowing users to draw, change and
|
|
|
|
configure a particular electrical element.
|
2007-10-21 16:10:21 +00:00
|
|
|
*/
|
2012-02-13 22:13:19 +00:00
|
|
|
class QETElementEditor : public QETMainWindow {
|
2007-06-30 17:41:07 +00:00
|
|
|
Q_OBJECT
|
2020-08-05 10:09:30 +01:00
|
|
|
|
2012-11-09 21:09:24 +00:00
|
|
|
// constructor, destructor
|
2007-06-30 17:41:07 +00:00
|
|
|
public:
|
2017-08-05 02:06:59 +00:00
|
|
|
QETElementEditor(QWidget * = nullptr);
|
2017-08-05 02:10:01 +00:00
|
|
|
~QETElementEditor() override;
|
2007-06-30 17:41:07 +00:00
|
|
|
private:
|
2014-11-11 17:09:24 +00:00
|
|
|
QETElementEditor(const QETElementEditor &);
|
|
|
|
void setupActions();
|
|
|
|
void setupMenus();
|
|
|
|
void setupInterface();
|
2020-08-05 10:09:30 +01:00
|
|
|
|
2012-11-09 21:09:24 +00:00
|
|
|
// attributes
|
2007-06-30 17:41:07 +00:00
|
|
|
private:
|
2020-08-05 10:09:30 +01:00
|
|
|
/// whether the editor is "read-only"
|
|
|
|
bool read_only;
|
|
|
|
/// menus
|
|
|
|
QMenu *file_menu, *edit_menu, *paste_from_menu, *display_menu, *tools_menu;
|
|
|
|
/// view widget for the editing scene
|
|
|
|
ElementView *m_view;
|
|
|
|
/// editing scene
|
|
|
|
ElementScene *m_elmt_scene;
|
|
|
|
/// container for widgets dedicated to primitive edition
|
|
|
|
QDockWidget *m_tools_dock;
|
|
|
|
/// Stack of widgets for tools_dock
|
|
|
|
QStackedWidget *m_tools_dock_stack;
|
|
|
|
/// label displayed when several primitives are selected
|
|
|
|
QLabel *m_default_informations;
|
|
|
|
/// Hash associating primitive names with their matching edition widget
|
|
|
|
QHash<QString, ElementItemEditor *> m_editors;
|
|
|
|
/// container for the undo list
|
|
|
|
QDockWidget *m_undo_dock;
|
|
|
|
/// Container for the list of existing primitives
|
|
|
|
QDockWidget *m_parts_dock;
|
|
|
|
/// List of primitives
|
|
|
|
QListWidget *m_parts_list;
|
|
|
|
/// actions for the "file" menu
|
|
|
|
QAction *new_element, *open, *open_dxf, *open_file, *save, *save_as, *save_as_file, *reload, *quit;
|
|
|
|
/// actions for the "edit" menu
|
|
|
|
QAction *selectall, *deselectall, *inv_select;
|
|
|
|
QAction *cut, *copy, *paste, *paste_in_area, *paste_from_file, *paste_from_elmt;
|
|
|
|
QAction *undo, *redo;
|
|
|
|
QAction *edit_delete, *edit_size_hs, *edit_names, *edit_author, *m_edit_properties;
|
|
|
|
/// toolbars
|
|
|
|
QToolBar *parts_toolbar, *main_toolbar, *view_toolbar, *depth_toolbar, *element_toolbar;
|
|
|
|
/// Action group
|
|
|
|
QActionGroup *parts, *m_zoom_ag, *m_depth_action_group;
|
|
|
|
/// minimum window title
|
|
|
|
QString min_title;
|
|
|
|
/// filename of the currently edited element
|
|
|
|
QString filename_;
|
|
|
|
/// location of the currently edited element
|
|
|
|
ElementsLocation location_;
|
|
|
|
/// whether the currently edited element comes from a file or a location
|
|
|
|
bool opened_from_file;
|
|
|
|
|
2012-11-09 21:09:24 +00:00
|
|
|
// methods
|
2007-06-30 17:41:07 +00:00
|
|
|
public:
|
2018-06-30 21:41:27 +00:00
|
|
|
void setNames(const NamesList &);
|
|
|
|
void setLocation(const ElementsLocation &);
|
|
|
|
ElementsLocation location() const;
|
|
|
|
void setFileName(const QString &);
|
|
|
|
QString fileName() const;
|
|
|
|
void setReadOnly(bool);
|
|
|
|
bool isReadOnly() const;
|
|
|
|
void fromFile(const QString &);
|
|
|
|
void fromLocation(const ElementsLocation &);
|
|
|
|
bool toFile(const QString &);
|
|
|
|
bool toLocation(const ElementsLocation &location);
|
|
|
|
bool isEditing(const ElementsLocation &);
|
|
|
|
bool isEditing(const QString &);
|
|
|
|
ElementScene *elementScene() const;
|
|
|
|
void readSettings();
|
|
|
|
void writeSettings();
|
|
|
|
static QPointF pasteOffset();
|
|
|
|
static QString getOpenElementFileName(QWidget * = nullptr, const QString & = QString());
|
|
|
|
void contextMenu(QPoint p, QList<QAction *> actions = QList<QAction*>());
|
2013-09-17 20:14:30 +00:00
|
|
|
|
2016-06-17 08:41:09 +00:00
|
|
|
signals:
|
|
|
|
void saveToLocation(ElementsLocation loc);
|
|
|
|
|
2007-06-30 17:41:07 +00:00
|
|
|
protected:
|
2020-08-05 10:09:30 +01:00
|
|
|
void closeEvent(QCloseEvent *) override;
|
|
|
|
void firstActivation(QEvent *) override;
|
2013-09-14 13:11:32 +00:00
|
|
|
|
2007-06-30 17:41:07 +00:00
|
|
|
private:
|
2014-11-11 17:09:24 +00:00
|
|
|
bool canClose();
|
|
|
|
QWidget *clearToolsDock();
|
|
|
|
void copyAndPasteXml(const QDomDocument &);
|
2007-06-30 17:41:07 +00:00
|
|
|
|
|
|
|
public slots:
|
2014-11-04 22:23:27 +00:00
|
|
|
void addLine();
|
2014-11-06 10:46:14 +00:00
|
|
|
void addRect();
|
2014-11-07 09:39:19 +00:00
|
|
|
void addEllipse();
|
2014-11-08 11:14:56 +00:00
|
|
|
void addPolygon();
|
2014-11-09 21:58:46 +00:00
|
|
|
void addArc();
|
2014-11-09 23:11:17 +00:00
|
|
|
void addText();
|
2014-11-10 21:47:28 +00:00
|
|
|
void addTerminal();
|
2017-09-25 17:44:02 +00:00
|
|
|
void addDynamicTextField();
|
2014-11-10 22:57:32 +00:00
|
|
|
void UncheckAddPrimitive();
|
2014-11-04 22:23:27 +00:00
|
|
|
|
2020-08-05 10:09:30 +01:00
|
|
|
void slot_new();
|
|
|
|
void slot_open();
|
|
|
|
void slot_openDxf();
|
|
|
|
void slot_openFile();
|
|
|
|
void openRecentFile(const QString &);
|
|
|
|
void openElement(const QString &);
|
|
|
|
void slot_reload();
|
|
|
|
bool slot_save();
|
|
|
|
bool slot_saveAs();
|
|
|
|
bool slot_saveAsFile();
|
|
|
|
void slot_setRubberBandToView();
|
|
|
|
void slot_setNoDragToView();
|
|
|
|
void slot_updateInformations();
|
|
|
|
void slot_updateMenus();
|
|
|
|
void slot_updateTitle();
|
|
|
|
void slot_createPartsList();
|
|
|
|
void slot_updatePartsList();
|
|
|
|
void slot_updateSelectionFromPartsList();
|
|
|
|
bool checkElement();
|
|
|
|
void pasteFromFile();
|
|
|
|
void pasteFromElement();
|
|
|
|
void updateCurrentPartEditor();
|
2007-06-30 17:41:07 +00:00
|
|
|
};
|
|
|
|
|
2007-12-09 10:07:33 +00:00
|
|
|
/**
|
2012-11-09 21:09:24 +00:00
|
|
|
@param nameslist the new list of names for the currently edited element
|
2007-12-09 10:07:33 +00:00
|
|
|
*/
|
2007-08-25 03:43:05 +00:00
|
|
|
inline void QETElementEditor::setNames(const NamesList &nameslist) {
|
2017-07-31 17:41:48 +00:00
|
|
|
m_elmt_scene -> setNames(nameslist);
|
2007-06-30 17:41:07 +00:00
|
|
|
}
|
|
|
|
|
2009-04-03 19:30:25 +00:00
|
|
|
/**
|
2012-11-09 21:09:24 +00:00
|
|
|
@return the location of the currently edited element
|
2009-04-03 19:30:25 +00:00
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
inline ElementsLocation QETElementEditor::location() const
|
|
|
|
{
|
2009-04-03 19:30:25 +00:00
|
|
|
return(location_);
|
|
|
|
}
|
|
|
|
|
2007-12-09 10:07:33 +00:00
|
|
|
/**
|
2012-11-09 21:09:24 +00:00
|
|
|
@return the filename of the currently edited element
|
2007-12-09 10:07:33 +00:00
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
inline QString QETElementEditor::fileName() const
|
|
|
|
{
|
2009-04-03 19:30:25 +00:00
|
|
|
return(filename_);
|
2007-06-30 17:41:07 +00:00
|
|
|
}
|
|
|
|
|
2007-12-09 10:07:33 +00:00
|
|
|
/**
|
2012-11-09 21:09:24 +00:00
|
|
|
@return the editing scene
|
2007-12-09 10:07:33 +00:00
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
inline ElementScene *QETElementEditor::elementScene() const
|
|
|
|
{
|
2017-07-31 17:41:48 +00:00
|
|
|
return(m_elmt_scene);
|
2007-08-25 03:43:05 +00:00
|
|
|
}
|
|
|
|
|
2007-06-30 17:41:07 +00:00
|
|
|
#endif
|