2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vdrawtool.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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 Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
#ifndef VDRAWTOOL_H
|
|
|
|
#define VDRAWTOOL_H
|
|
|
|
|
|
|
|
#include "../vabstracttool.h"
|
2013-11-21 13:05:26 +01:00
|
|
|
#include <QMenu>
|
|
|
|
#include <QGraphicsSceneContextMenuEvent>
|
2014-06-03 14:15:17 +02:00
|
|
|
#include <QGraphicsView>
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialogtool.h"
|
2015-06-15 14:50:59 +02:00
|
|
|
#include "../../libs/vwidgets/vmaingraphicsscene.h"
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../xml/vpattern.h"
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 16:56:41 +01:00
|
|
|
* @brief The VDrawTool abstract class for all draw tool.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VDrawTool : public VAbstractTool
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-05-30 11:12:20 +02:00
|
|
|
|
2014-10-04 21:12:46 +02:00
|
|
|
VDrawTool(VPattern *doc, VContainer *data, quint32 id, QObject *parent = nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual ~VDrawTool();
|
2014-05-30 11:12:20 +02:00
|
|
|
|
2014-07-15 15:51:15 +02:00
|
|
|
/** @brief factor scene scale factor. */
|
|
|
|
static qreal factor;
|
|
|
|
|
2014-05-30 11:12:20 +02:00
|
|
|
/** @brief setDialog set dialog when user want change tool option. */
|
2013-10-27 12:56:05 +01:00
|
|
|
virtual void setDialog() {}
|
2014-05-30 16:52:12 +02:00
|
|
|
virtual void DialogLinkDestroy();
|
2014-07-29 14:19:11 +02:00
|
|
|
static qreal CheckFormula(const quint32 &toolId, QString &formula, VContainer *data);
|
2015-02-03 15:46:14 +01:00
|
|
|
|
|
|
|
QString getLineType() const;
|
|
|
|
virtual void SetTypeLine(const QString &value);
|
2015-02-04 10:21:09 +01:00
|
|
|
|
|
|
|
QString GetLineColor() const;
|
2015-02-07 15:42:49 +01:00
|
|
|
virtual void SetLineColor(const QString &value);
|
2015-02-04 10:21:09 +01:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
public slots:
|
2015-02-07 16:18:18 +01:00
|
|
|
virtual void ShowTool(quint32 id, bool enable);
|
2015-05-23 16:42:53 +02:00
|
|
|
virtual void ChangedActivDraw(const QString &newName);
|
2013-11-06 22:11:12 +01:00
|
|
|
void ChangedNameDraw(const QString &oldName, const QString &newName);
|
2014-06-11 18:38:09 +02:00
|
|
|
virtual void FullUpdateFromGuiOk(int result);
|
2014-05-25 21:54:17 +02:00
|
|
|
virtual void FullUpdateFromGuiApply();
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void SetFactor(qreal factor);
|
2015-02-09 10:54:19 +01:00
|
|
|
virtual void EnableToolMove(bool move);
|
2015-05-25 08:24:16 +02:00
|
|
|
virtual void Disable(bool disable, const QString &namePP)=0;
|
2013-09-10 14:29:06 +02:00
|
|
|
protected:
|
2014-05-30 11:12:20 +02:00
|
|
|
|
|
|
|
/** @brief nameActivDraw name of tool's pattern peace. */
|
2013-09-10 14:29:06 +02:00
|
|
|
QString nameActivDraw;
|
2014-05-30 11:12:20 +02:00
|
|
|
|
|
|
|
/** @brief dialog dialog options.*/
|
2015-02-03 15:46:14 +01:00
|
|
|
DialogTool *dialog;
|
|
|
|
|
|
|
|
/** @brief typeLine line type. */
|
|
|
|
QString typeLine;
|
2014-05-30 11:12:20 +02:00
|
|
|
|
2015-02-04 10:21:09 +01:00
|
|
|
/** @brief lineColor color line or curve, but not a point. */
|
|
|
|
QString lineColor;
|
|
|
|
|
2015-02-06 10:53:36 +01:00
|
|
|
bool enabled;
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
void AddToCalculation(const QDomElement &domElement);
|
2014-05-30 11:12:20 +02:00
|
|
|
|
|
|
|
/** @brief SaveDialog save options into file after change in dialog. */
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void SaveDialog(QDomElement &domElement)=0;
|
2014-06-11 18:45:39 +02:00
|
|
|
void SaveDialogChange();
|
2014-08-30 21:58:31 +02:00
|
|
|
virtual void AddToFile();
|
|
|
|
virtual void RefreshDataInFile();
|
2015-05-28 14:13:37 +02:00
|
|
|
void SaveOption(QSharedPointer<VGObject> &obj);
|
|
|
|
virtual void SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj);
|
2015-05-25 08:24:16 +02:00
|
|
|
|
2015-02-06 10:53:36 +01:00
|
|
|
QColor CorrectColor(const QColor &color) const;
|
2015-05-25 08:24:16 +02:00
|
|
|
bool CorrectDisable(bool disable, const QString &namePP) const;
|
2014-05-30 11:12:20 +02:00
|
|
|
|
2015-02-06 18:43:31 +01:00
|
|
|
void ReadAttributes();
|
|
|
|
virtual void ReadToolAttributes(const QDomElement &domElement)=0;
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
template <typename Dialog, typename Tool>
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 16:56:41 +01:00
|
|
|
* @brief ContextMenu show context menu for tool.
|
|
|
|
* @param tool tool.
|
|
|
|
* @param event context menu event.
|
|
|
|
* @param showRemove true - tool have option delete.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
void ContextMenu(Tool *tool, QGraphicsSceneContextMenuEvent *event, bool showRemove = true)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-06-03 14:15:17 +02:00
|
|
|
SCASSERT(tool != nullptr);
|
|
|
|
SCASSERT(event != nullptr);
|
2014-10-02 15:34:49 +02:00
|
|
|
|
|
|
|
QMenu menu;
|
2014-10-24 19:33:41 +02:00
|
|
|
QAction *actionOption = menu.addAction(QIcon::fromTheme("preferences-other"), tr("Options"));
|
2014-10-02 15:34:49 +02:00
|
|
|
QAction *actionRemove = nullptr;
|
2014-10-24 19:33:41 +02:00
|
|
|
actionRemove = menu.addAction(QIcon::fromTheme("edit-delete"), tr("Delete"));
|
2014-10-02 15:34:49 +02:00
|
|
|
if (showRemove)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-10-02 15:34:49 +02:00
|
|
|
if (_referens > 1)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-10-02 15:34:49 +02:00
|
|
|
actionRemove->setEnabled(false);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
2014-06-15 10:04:49 +02:00
|
|
|
else
|
|
|
|
{
|
2014-10-02 15:34:49 +02:00
|
|
|
actionRemove->setEnabled(true);
|
2014-06-15 10:04:49 +02:00
|
|
|
}
|
2014-10-02 15:34:49 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
actionRemove->setEnabled(false);
|
|
|
|
}
|
2014-06-15 10:04:49 +02:00
|
|
|
|
2014-10-02 15:34:49 +02:00
|
|
|
QAction *selectedAction = menu.exec(event->screenPos());
|
|
|
|
if (selectedAction == actionOption)
|
|
|
|
{
|
|
|
|
qApp->getSceneView()->itemClicked(nullptr);
|
|
|
|
dialog = new Dialog(getData(), id, qApp->getMainWindow());
|
|
|
|
dialog->setModal(true);
|
2013-09-10 14:29:06 +02:00
|
|
|
|
2014-10-02 15:34:49 +02:00
|
|
|
connect(dialog, &DialogTool::DialogClosed, tool, &Tool::FullUpdateFromGuiOk);
|
|
|
|
connect(dialog, &DialogTool::DialogApplied, tool, &Tool::FullUpdateFromGuiApply);
|
|
|
|
|
|
|
|
tool->setDialog();
|
|
|
|
|
|
|
|
dialog->show();
|
|
|
|
}
|
|
|
|
if (selectedAction == actionRemove)
|
|
|
|
{
|
|
|
|
DeleteTool();
|
2014-10-04 21:12:46 +02:00
|
|
|
return; //Leave this method immediately after call!!!
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
}
|
2013-10-28 16:45:27 +01:00
|
|
|
template <typename Item>
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 16:56:41 +01:00
|
|
|
* @brief ShowItem highlight tool.
|
|
|
|
* @param item tool.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param enable enable or disable highlight.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2015-02-07 16:18:18 +01:00
|
|
|
void ShowItem(Item *item, quint32 id, bool enable)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-06-03 14:15:17 +02:00
|
|
|
SCASSERT(item != nullptr);
|
2015-02-07 16:18:18 +01:00
|
|
|
if (id == item->id)
|
|
|
|
{
|
|
|
|
ShowVisualization(enable);
|
|
|
|
}
|
2013-10-28 16:45:27 +01:00
|
|
|
}
|
2014-02-06 14:57:23 +01:00
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VDrawTool)
|
2013-09-10 14:29:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VDRAWTOOL_H
|