qelectrotech-source-mirror/sources/factory/propertieseditorfactory.cpp

211 lines
6.4 KiB
C++
Raw Permalink Normal View History

/*
2021-02-20 12:13:46 +01:00
Copyright 2006-2021 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/>.
*/
#include "propertieseditorfactory.h"
2020-12-08 19:57:35 +01:00
#include "../PropertiesEditor/propertieseditorwidget.h"
#include "../qetgraphicsitem/ViewItem/projectdbmodel.h"
#include "../qetgraphicsitem/ViewItem/qetgraphicstableitem.h"
2020-12-10 21:19:45 +01:00
#include "../qetgraphicsitem/ViewItem/ui/graphicstablepropertieseditor.h"
#include "../qetgraphicsitem/ViewItem/ui/projectdbmodelpropertieswidget.h"
2020-12-08 19:57:35 +01:00
#include "../qetgraphicsitem/diagramimageitem.h"
#include "../qetgraphicsitem/dynamicelementtextitem.h"
#include "../qetgraphicsitem/element.h"
#include "../qetgraphicsitem/elementtextitemgroup.h"
#include "../qetgraphicsitem/independenttextitem.h"
#include "../qetgraphicsitem/qetshapeitem.h"
#include "../ui/dynamicelementtextitemeditor.h"
#include "../ui/elementpropertieswidget.h"
#include "../ui/imagepropertieswidget.h"
#include "../ui/inditextpropertieswidget.h"
#include "../ui/shapegraphicsitempropertieswidget.h"
2020-12-10 21:19:45 +01:00
#include <QGraphicsItem>
/**
2020-08-16 11:19:36 +02:00
@brief PropertiesEditorFactory::propertiesEditor
@param model : the model to be edited
2020-08-19 21:24:48 +02:00
@param editor :
if the properties editor to be created is the same class as editor,
the this function set item as edited item of editor and return editor
2020-08-16 11:19:36 +02:00
@param parent : parent widget of the returned editor
@return an editor or nullptr
*/
2020-08-19 21:27:14 +02:00
PropertiesEditorWidget *PropertiesEditorFactory::propertiesEditor(
QAbstractItemModel *model,
PropertiesEditorWidget *editor,
QWidget *parent)
{
2020-06-18 18:52:29 +02:00
if (auto m = static_cast<ProjectDBModel *>(model))
{
if (editor &&
2020-08-19 21:27:14 +02:00
editor->metaObject()->className()
== ProjectDBModelPropertiesWidget::staticMetaObject.className())
{
2020-06-18 18:52:29 +02:00
static_cast<ProjectDBModelPropertiesWidget *>(editor)->setModel(m);
return editor;
}
2020-06-18 18:52:29 +02:00
return new ProjectDBModelPropertiesWidget(m, parent);
}
return nullptr;
}
/**
2020-08-19 21:24:48 +02:00
@brief propertiesEditor
@param items : The items to be edited
@param editor :
If the properties editor to be created is the same class as editor,
then this function set item as edited item of editor and return editor
@param parent : parent widget of the returned editor
@return : an editor or nullptr;
*/
2020-08-19 21:27:14 +02:00
PropertiesEditorWidget *PropertiesEditorFactory::propertiesEditor(
QList<QGraphicsItem *> items,
PropertiesEditorWidget *editor,
QWidget *parent)
{
2020-09-18 11:48:11 +02:00
const int count_ = items.size();
if (count_ == 0) {
return nullptr;
}
QGraphicsItem *item = items.first();
const int type_ = item->type();
//The editor widget can only edit one item
//or several items of the same type
2020-09-18 11:48:11 +02:00
for (auto qgi : items) {
if (qgi->type() != type_) {
return nullptr;
}
}
QString class_name;
if (editor) {
class_name = editor->metaObject()->className();
}
switch (type_)
{
case Element::Type: //1000
{
if (count_ > 1) {
return nullptr;
}
auto elmt = static_cast<Element*>(item);
//auto created_editor = new ElementPropertiesWidget(elmt, parent);
//We already edit an element, just update the editor with a new element
if (class_name == ElementPropertiesWidget::staticMetaObject.className())
{
static_cast<ElementPropertiesWidget*>(editor)->setElement(elmt);
return editor;
}
return new ElementPropertiesWidget(elmt, parent);
}
case IndependentTextItem::Type: //1005
{
QList<IndependentTextItem *> text_list;
for (QGraphicsItem *qgi : items) {
text_list.append(static_cast<IndependentTextItem*>(qgi));
}
if (class_name == IndiTextPropertiesWidget::staticMetaObject.className())
{
static_cast<IndiTextPropertiesWidget*>(editor)->setText(text_list);
return editor;
}
return new IndiTextPropertiesWidget(text_list, parent);
}
case DiagramImageItem::Type: //1007
{
if (count_ > 1) {
return nullptr;
}
return new ImagePropertiesWidget(static_cast<DiagramImageItem*>(item), parent);
}
case QetShapeItem::Type: //1008
{
QList<QetShapeItem *> shapes_list;
for (QGraphicsItem *qgi : items) {
shapes_list.append(static_cast<QetShapeItem*>(qgi));
}
if (class_name == ShapeGraphicsItemPropertiesWidget::staticMetaObject.className())
{
static_cast<ShapeGraphicsItemPropertiesWidget*>(editor)->setItems(shapes_list);
return editor;
}
return new ShapeGraphicsItemPropertiesWidget(shapes_list, parent);
}
case DynamicElementTextItem::Type: //1010
{
if (count_ > 1) {
return nullptr;
}
DynamicElementTextItem *deti = static_cast<DynamicElementTextItem *>(item);
//For dynamic element text, we open the element editor to edit it
//If we already edit an element, just update the editor with a new element
if (class_name == ElementPropertiesWidget::staticMetaObject.className())
{
static_cast<ElementPropertiesWidget*>(editor)->setDynamicText(deti);
return editor;
}
return new ElementPropertiesWidget(deti, parent);
}
case QGraphicsItemGroup::Type:
{
if (count_ > 1) {
return nullptr;
}
if(ElementTextItemGroup *group = dynamic_cast<ElementTextItemGroup *>(item))
{
//For element text item group, we open the element editor to edit it
//If we already edit an element, just update the editor with a new element
if(class_name == ElementPropertiesWidget::staticMetaObject.className())
{
static_cast<ElementPropertiesWidget *>(editor)->setTextsGroup(group);
return editor;
}
return new ElementPropertiesWidget(group, parent);
}
break;
}
case QetGraphicsTableItem::Type:
{
if (count_ > 1) {
return nullptr;
}
auto table = static_cast<QetGraphicsTableItem*>(item);
if (class_name == GraphicsTablePropertiesEditor::staticMetaObject.className())
{
static_cast<GraphicsTablePropertiesEditor*>(editor)->setTable(table);
return editor;
}
return new GraphicsTablePropertiesEditor(table, parent);
}
default:
return nullptr;
}
return nullptr;
}