Changed: #1302 Added additional visual elements (Point, Path, Zone) in 2d render without undo/redo operations(move, rotate, scale).
--HG-- branch : gsoc2011-worldeditorqthg/feature/sse2
parent
b93f59ae10
commit
d19feac70c
@ -0,0 +1,59 @@
|
|||||||
|
// Object Viewer Qt - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
||||||
|
// Copyright (C) 2011 Dzmitry Kamiahin <dnk-88@tut.by>
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program 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 Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
// Project includes
|
||||||
|
#include "project_settings_dialog.h"
|
||||||
|
|
||||||
|
#include "../core/icore.h"
|
||||||
|
#include "../core/core_constants.h"
|
||||||
|
|
||||||
|
// NeL includes
|
||||||
|
#include <nel/misc/debug.h>
|
||||||
|
|
||||||
|
// Qt includes
|
||||||
|
#include <QtCore/QSettings>
|
||||||
|
#include <QtGui/QFileDialog>
|
||||||
|
#include <QtGui/QFileDialog>
|
||||||
|
|
||||||
|
namespace WorldEditor
|
||||||
|
{
|
||||||
|
|
||||||
|
ProjectSettingsDialog::ProjectSettingsDialog(const QString &dataPath, QWidget *parent)
|
||||||
|
: QDialog(parent)
|
||||||
|
{
|
||||||
|
m_ui.setupUi(this);
|
||||||
|
m_ui.pathLineEdit->setText(dataPath);
|
||||||
|
setFixedHeight(sizeHint().height());
|
||||||
|
connect(m_ui.selectPathButton, SIGNAL(clicked()), this, SLOT(selectPath()));
|
||||||
|
}
|
||||||
|
|
||||||
|
ProjectSettingsDialog::~ProjectSettingsDialog()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
QString ProjectSettingsDialog::dataPath() const
|
||||||
|
{
|
||||||
|
return m_ui.pathLineEdit->text();
|
||||||
|
}
|
||||||
|
|
||||||
|
void ProjectSettingsDialog::selectPath()
|
||||||
|
{
|
||||||
|
QString dataPath = QFileDialog::getExistingDirectory(this, tr("Select data path"), m_ui.pathLineEdit->text());
|
||||||
|
if (!dataPath.isEmpty())
|
||||||
|
m_ui.pathLineEdit->setText(dataPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
} /* namespace WorldEditor */
|
@ -0,0 +1,48 @@
|
|||||||
|
// Object Viewer Qt - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
||||||
|
// Copyright (C) 2011 Dzmitry Kamiahin <dnk-88@tut.by>
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program 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 Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
#ifndef PROJECT_SETTINGS_DIALOG_WE_H
|
||||||
|
#define PROJECT_SETTINGS_DIALOG_WE_H
|
||||||
|
|
||||||
|
// Project includes
|
||||||
|
#include "ui_project_settings_dialog.h"
|
||||||
|
|
||||||
|
// Qt includes
|
||||||
|
|
||||||
|
namespace WorldEditor
|
||||||
|
{
|
||||||
|
|
||||||
|
class ProjectSettingsDialog: public QDialog
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
ProjectSettingsDialog(const QString &dataPath, QWidget *parent = 0);
|
||||||
|
~ProjectSettingsDialog();
|
||||||
|
|
||||||
|
QString dataPath() const;
|
||||||
|
|
||||||
|
private Q_SLOTS:
|
||||||
|
void selectPath();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
Ui::ProjectSettingsDialog m_ui;
|
||||||
|
}; /* class ProjectSettingsDialog */
|
||||||
|
|
||||||
|
} /* namespace WorldEditor */
|
||||||
|
|
||||||
|
#endif // PROJECT_SETTINGS_DIALOG_WE_H
|
@ -0,0 +1,103 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>ProjectSettingsDialog</class>
|
||||||
|
<widget class="QDialog" name="ProjectSettingsDialog">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>419</width>
|
||||||
|
<height>93</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Project settings</string>
|
||||||
|
</property>
|
||||||
|
<property name="windowIcon">
|
||||||
|
<iconset resource="../landscape_editor/landscape_editor.qrc">
|
||||||
|
<normaloff>:/icons/ic_nel_landscape_settings.png</normaloff>:/icons/ic_nel_landscape_settings.png</iconset>
|
||||||
|
</property>
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="text">
|
||||||
|
<string>Data directory:</string>
|
||||||
|
</property>
|
||||||
|
<property name="buddy">
|
||||||
|
<cstring>pathLineEdit</cstring>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QLineEdit" name="pathLineEdit"/>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="2">
|
||||||
|
<widget class="QToolButton" name="selectPathButton">
|
||||||
|
<property name="text">
|
||||||
|
<string>...</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0">
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="text">
|
||||||
|
<string>Context:</string>
|
||||||
|
</property>
|
||||||
|
<property name="buddy">
|
||||||
|
<cstring>contextComboBox</cstring>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="1" colspan="2">
|
||||||
|
<widget class="QComboBox" name="contextComboBox"/>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0" colspan="3">
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources>
|
||||||
|
<include location="../landscape_editor/landscape_editor.qrc"/>
|
||||||
|
</resources>
|
||||||
|
<connections>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>accepted()</signal>
|
||||||
|
<receiver>ProjectSettingsDialog</receiver>
|
||||||
|
<slot>accept()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>257</x>
|
||||||
|
<y>83</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>157</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>rejected()</signal>
|
||||||
|
<receiver>ProjectSettingsDialog</receiver>
|
||||||
|
<slot>reject()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>325</x>
|
||||||
|
<y>83</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>286</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
</connections>
|
||||||
|
</ui>
|
@ -0,0 +1,649 @@
|
|||||||
|
// Object Viewer Qt - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
||||||
|
// Copyright (C) 2011 Dzmitry Kamiahin <dnk-88@tut.by>
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program 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 Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
// Project includes
|
||||||
|
#include "world_editor_scene_item.h"
|
||||||
|
|
||||||
|
// NeL includes
|
||||||
|
#include <nel/misc/debug.h>
|
||||||
|
|
||||||
|
// Qt includes
|
||||||
|
#include <QtGui/QPainter>
|
||||||
|
#include <QtCore/QRectF>
|
||||||
|
#include <QPolygonF>
|
||||||
|
#include <QTransform>
|
||||||
|
#include <QStyleOptionGraphicsItem>
|
||||||
|
#include <QPropertyAnimation>
|
||||||
|
|
||||||
|
namespace WorldEditor
|
||||||
|
{
|
||||||
|
|
||||||
|
static QPainterPath qt_graphicsItem_shapeFromPath(const QPainterPath &path, const QPen &pen)
|
||||||
|
{
|
||||||
|
// We unfortunately need this hack as QPainterPathStroker will set a width of 1.0
|
||||||
|
// if we pass a value of 0.0 to QPainterPathStroker::setWidth()
|
||||||
|
const qreal penWidthZero = qreal(0.00000001);
|
||||||
|
|
||||||
|
if (path == QPainterPath())
|
||||||
|
return path;
|
||||||
|
QPainterPathStroker ps;
|
||||||
|
ps.setCapStyle(pen.capStyle());
|
||||||
|
if (pen.widthF() <= 0.0)
|
||||||
|
ps.setWidth(penWidthZero);
|
||||||
|
else
|
||||||
|
ps.setWidth(pen.widthF());
|
||||||
|
ps.setJoinStyle(pen.joinStyle());
|
||||||
|
ps.setMiterLimit(pen.miterLimit());
|
||||||
|
QPainterPath p = ps.createStroke(path);
|
||||||
|
p.addPath(path);
|
||||||
|
return p;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
GraphicsItemNode::GraphicsItemNode(GraphicsItemZone *itemZone, QGraphicsItem *parent)
|
||||||
|
: QGraphicsObject(parent)
|
||||||
|
{
|
||||||
|
m_itemZone = itemZone;
|
||||||
|
m_color = QColor(12, 150, 215);
|
||||||
|
//setFlag(ItemIgnoresTransformations, true);
|
||||||
|
//setFlag(ItemClipsToShape);
|
||||||
|
|
||||||
|
QPropertyAnimation *animation = new QPropertyAnimation(this, "colorNode");
|
||||||
|
animation->setDuration(3000);
|
||||||
|
animation->setStartValue(QColor(10, 0, 50));
|
||||||
|
animation->setKeyValueAt(0.5, QColor(155, 255, 0));
|
||||||
|
animation->setEndValue(QColor(10, 0, 50));
|
||||||
|
animation->setLoopCount(2000);
|
||||||
|
animation->setEasingCurve(QEasingCurve::OutInExpo);
|
||||||
|
animation->start();
|
||||||
|
|
||||||
|
setFlag(ItemIsSelectable);
|
||||||
|
setFlag(ItemIsMovable);
|
||||||
|
setFlag(ItemSendsScenePositionChanges);
|
||||||
|
m_type = EdgeType;
|
||||||
|
|
||||||
|
setAcceptedMouseButtons(Qt::LeftButton | Qt::RightButton);
|
||||||
|
setZValue(10000000);
|
||||||
|
}
|
||||||
|
|
||||||
|
GraphicsItemNode::~GraphicsItemNode()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsItemNode::setColorNode(const QColor &color)
|
||||||
|
{
|
||||||
|
m_color = color;
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsItemNode::setNodeType(NodeType nodeType)
|
||||||
|
{
|
||||||
|
m_type = nodeType;
|
||||||
|
if (m_type == EdgeType)
|
||||||
|
{
|
||||||
|
setFlag(ItemIsSelectable);
|
||||||
|
setFlag(ItemIsMovable);
|
||||||
|
setFlag(ItemSendsScenePositionChanges);
|
||||||
|
setAcceptedMouseButtons(Qt::LeftButton | Qt::RightButton);
|
||||||
|
setZValue(10000);
|
||||||
|
}
|
||||||
|
else if (m_type == MiddleType)
|
||||||
|
{
|
||||||
|
setFlag(ItemIsSelectable, false);
|
||||||
|
setFlag(ItemIsMovable, false);
|
||||||
|
setFlag(ItemSendsScenePositionChanges, false);
|
||||||
|
setAcceptedMouseButtons(Qt::LeftButton);
|
||||||
|
setZValue(10001);
|
||||||
|
}
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
|
QRectF GraphicsItemNode::boundingRect() const
|
||||||
|
{
|
||||||
|
return QRectF(QPointF(0, 0), QSizeF(20, 20));
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsItemNode::paint(QPainter *painter,
|
||||||
|
const QStyleOptionGraphicsItem *option,
|
||||||
|
QWidget *)
|
||||||
|
{
|
||||||
|
// Here comes the magic:
|
||||||
|
//painter->setClipRect(option->exposedRect);
|
||||||
|
|
||||||
|
painter->setPen(Qt::NoPen);
|
||||||
|
|
||||||
|
if (m_type == EdgeType)
|
||||||
|
{
|
||||||
|
painter->setBrush(QColor(255, 0, 0));
|
||||||
|
}
|
||||||
|
else if (m_type == MiddleType)
|
||||||
|
{
|
||||||
|
painter->setBrush(QColor(0, 0, 255));
|
||||||
|
}
|
||||||
|
if (option->state & QStyle::State_Selected)
|
||||||
|
{
|
||||||
|
painter->setBrush(QColor(0, 255, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
painter->drawRect(2, 2, 18, 18);
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariant GraphicsItemNode::itemChange(GraphicsItemChange change,
|
||||||
|
const QVariant &value)
|
||||||
|
{
|
||||||
|
if (change == ItemPositionHasChanged)
|
||||||
|
{
|
||||||
|
m_itemZone->updateZone();
|
||||||
|
}
|
||||||
|
return QGraphicsItem::itemChange(change, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsItemNode::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
||||||
|
{
|
||||||
|
if ((m_type == MiddleType) && (event->button() == Qt::LeftButton))
|
||||||
|
{
|
||||||
|
m_itemZone->updateMiddleNode(this);
|
||||||
|
setNodeType(EdgeType);
|
||||||
|
}
|
||||||
|
else if ((m_type == EdgeType) && (event->button() == Qt::RightButton))
|
||||||
|
{
|
||||||
|
if (m_itemZone->deleteEdgePoint(this))
|
||||||
|
setNodeType(MiddleType);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
GraphicsItemZone::GraphicsItemZone(QGraphicsScene *scene, QGraphicsItem *parent)
|
||||||
|
: QGraphicsPolygonItem(parent)
|
||||||
|
{
|
||||||
|
m_scene = scene;
|
||||||
|
|
||||||
|
m_color = QColor(12, 150, 215);
|
||||||
|
|
||||||
|
setBrush(QBrush(QColor(100, 100, 255, 128)));
|
||||||
|
updateZone();
|
||||||
|
setZValue(100);
|
||||||
|
//setFlag(ItemClipsToShape);
|
||||||
|
//setFlag(ItemIsSelectable, true);
|
||||||
|
//setFlag(ItemIsMovable, true);
|
||||||
|
//setFlag(ItemHasNoContents, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
GraphicsItemZone::~GraphicsItemZone()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsItemZone::updateMiddleNode(GraphicsItemNode *node)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < m_listLines.size(); ++i)
|
||||||
|
{
|
||||||
|
if (node == m_listLines.at(i).itemPoint)
|
||||||
|
{
|
||||||
|
LineItem oldLineItem = m_listLines[i];
|
||||||
|
|
||||||
|
GraphicsItemNode *newNode1 = new GraphicsItemNode(this);
|
||||||
|
newNode1->setPos((oldLineItem.lineNode.first->pos() + node->pos()) / 2);
|
||||||
|
newNode1->setNodeType(GraphicsItemNode::MiddleType);
|
||||||
|
m_scene->addItem(newNode1);
|
||||||
|
|
||||||
|
GraphicsItemNode *newNode2 = new GraphicsItemNode(this);
|
||||||
|
newNode2->setPos((oldLineItem.lineNode.second->pos() + node->pos()) / 2);
|
||||||
|
newNode2->setNodeType(GraphicsItemNode::MiddleType);
|
||||||
|
m_scene->addItem(newNode2);
|
||||||
|
|
||||||
|
LineItem newLineItem1;
|
||||||
|
newLineItem1.itemPoint = newNode1;
|
||||||
|
newLineItem1.lineNode = LineNode(oldLineItem.lineNode.first, node);
|
||||||
|
m_listLines.push_back(newLineItem1);
|
||||||
|
|
||||||
|
LineItem newLineItem2;
|
||||||
|
newLineItem2.itemPoint = newNode2;
|
||||||
|
newLineItem2.lineNode = LineNode(node, oldLineItem.lineNode.second);
|
||||||
|
m_listLines.push_back(newLineItem2);
|
||||||
|
|
||||||
|
m_listLines.removeAt(i);
|
||||||
|
|
||||||
|
int pos = m_listItems.indexOf(oldLineItem.lineNode.second);
|
||||||
|
m_listItems.insert(pos, node);
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool GraphicsItemZone::deleteEdgePoint(GraphicsItemNode *node)
|
||||||
|
{
|
||||||
|
if (m_listItems.size() < 4)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
int pos = m_listItems.indexOf(node);
|
||||||
|
m_listItems.takeAt(pos);
|
||||||
|
|
||||||
|
LineItem newLineItem;
|
||||||
|
|
||||||
|
newLineItem.itemPoint = node;
|
||||||
|
|
||||||
|
for (int i = 0; i < m_listLines.size(); ++i)
|
||||||
|
{
|
||||||
|
if (node == m_listLines.at(i).lineNode.first)
|
||||||
|
{
|
||||||
|
// Saving second point for new line
|
||||||
|
newLineItem.lineNode.second = m_listLines.at(i).lineNode.second;
|
||||||
|
delete m_listLines.at(i).itemPoint;
|
||||||
|
m_listLines.removeAt(i);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < m_listLines.size(); ++i)
|
||||||
|
{
|
||||||
|
if (node == m_listLines.at(i).lineNode.second)
|
||||||
|
{
|
||||||
|
newLineItem.lineNode.first = m_listLines.at(i).lineNode.first;
|
||||||
|
delete m_listLines.at(i).itemPoint;
|
||||||
|
m_listLines.removeAt(i);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
node->setPos((newLineItem.lineNode.first->pos() + newLineItem.lineNode.second->pos()) / 2);
|
||||||
|
m_listLines.push_back(newLineItem);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsItemZone::scanPolygon(const QPolygonF &polygon)
|
||||||
|
{
|
||||||
|
GraphicsItemNode *node1;
|
||||||
|
node1 = new GraphicsItemNode(this);
|
||||||
|
node1->setPos(*polygon.begin());
|
||||||
|
m_listItems.push_back(node1);
|
||||||
|
m_scene->addItem(node1);
|
||||||
|
for (int i = 1; i < polygon.count(); ++i)
|
||||||
|
{
|
||||||
|
GraphicsItemNode *node2 = new GraphicsItemNode(this);
|
||||||
|
node2->setPos(polygon.at(i));
|
||||||
|
m_listItems.push_back(node2);
|
||||||
|
|
||||||
|
GraphicsItemNode *node3 = new GraphicsItemNode(this);
|
||||||
|
node3->setPos((node1->pos() + node2->pos()) / 2);
|
||||||
|
node3->setNodeType(GraphicsItemNode::MiddleType);
|
||||||
|
m_scene->addItem(node3);
|
||||||
|
|
||||||
|
LineItem newLineItem;
|
||||||
|
newLineItem.itemPoint = node3;
|
||||||
|
newLineItem.lineNode = LineNode(node1, node2);
|
||||||
|
m_listLines.push_back(newLineItem);
|
||||||
|
|
||||||
|
node1 = node2;
|
||||||
|
m_scene->addItem(node1);
|
||||||
|
}
|
||||||
|
setPolygon(polygon);
|
||||||
|
}
|
||||||
|
|
||||||
|
void GraphicsItemZone::updateZone()
|
||||||
|
{
|
||||||
|
QPolygonF polygon;
|
||||||
|
Q_FOREACH(GraphicsItemNode *node, m_listItems)
|
||||||
|
{
|
||||||
|
polygon << node->pos();
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < m_listLines.size(); ++i)
|
||||||
|
{
|
||||||
|
m_listLines.at(i).itemPoint->setPos((m_listLines.at(i).lineNode.first->pos() + m_listLines.at(i).lineNode.second->pos()) / 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
setPolygon(polygon);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
AbstractWorldItem::AbstractWorldItem(QGraphicsItem *parent)
|
||||||
|
: QGraphicsItem(parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
AbstractWorldItem::~AbstractWorldItem()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
int AbstractWorldItem::type() const
|
||||||
|
{
|
||||||
|
return Type;
|
||||||
|
}
|
||||||
|
|
||||||
|
WorldItemPoint::WorldItemPoint(const QPointF &point, const float angle, QGraphicsItem *parent)
|
||||||
|
: AbstractWorldItem(parent),
|
||||||
|
m_angle(angle)
|
||||||
|
{
|
||||||
|
setZValue(WORLD_POINT_LAYER);
|
||||||
|
|
||||||
|
setPos(point);
|
||||||
|
|
||||||
|
m_rect.setCoords(-SIZE_POINT, -SIZE_POINT, SIZE_POINT, SIZE_POINT);
|
||||||
|
|
||||||
|
m_pen.setColor(QColor(255, 100, 10));
|
||||||
|
m_pen.setWidth(5);
|
||||||
|
|
||||||
|
m_selectedPen.setColor(QColor(0, 255, 0));
|
||||||
|
m_selectedPen.setWidth(5);
|
||||||
|
|
||||||
|
m_brush.setColor(QColor(255, 100, 10));
|
||||||
|
m_brush.setStyle(Qt::SolidPattern);
|
||||||
|
|
||||||
|
m_selectedBrush.setColor(QColor(0, 255, 0));
|
||||||
|
m_selectedBrush.setStyle(Qt::SolidPattern);
|
||||||
|
|
||||||
|
//setFlag(ItemIsSelectable);
|
||||||
|
}
|
||||||
|
|
||||||
|
WorldItemPoint::~WorldItemPoint()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPoint::moveOn(const QPointF &offset)
|
||||||
|
{
|
||||||
|
prepareGeometryChange();
|
||||||
|
|
||||||
|
setPos(pos() + offset);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPoint::rotateOn(const QPointF &pivot, const qreal deltaAngle)
|
||||||
|
{
|
||||||
|
prepareGeometryChange();
|
||||||
|
|
||||||
|
QPolygonF rotatedPolygon(m_rect);
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
rotatedPolygon.translate(pos());
|
||||||
|
rotatedPolygon.translate(-pivot);
|
||||||
|
|
||||||
|
QTransform trans;
|
||||||
|
trans = trans.rotate(deltaAngle);
|
||||||
|
rotatedPolygon = trans.map(rotatedPolygon);
|
||||||
|
rotatedPolygon.translate(pivot);
|
||||||
|
|
||||||
|
setPos(rotatedPolygon.boundingRect().center());
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPoint::scaleOn(const QPointF &pivot, const QPointF &offset)
|
||||||
|
{
|
||||||
|
prepareGeometryChange();
|
||||||
|
|
||||||
|
QPolygonF scaledPolygon(m_rect);
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
scaledPolygon.translate(pos());
|
||||||
|
scaledPolygon.translate(-pivot);
|
||||||
|
|
||||||
|
QTransform trans;
|
||||||
|
trans = trans.scale(1.0 + (offset.x() / 5000), 1.0 + (-offset.y() / 5000));
|
||||||
|
scaledPolygon = trans.map(scaledPolygon);
|
||||||
|
scaledPolygon.translate(pivot);
|
||||||
|
|
||||||
|
setPos(scaledPolygon.boundingRect().center());
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPoint::turnOn(const QPointF &offset)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPoint::radiusOn(const qreal radius)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
QPainterPath WorldItemPoint::shape() const
|
||||||
|
{
|
||||||
|
QPainterPath path;
|
||||||
|
|
||||||
|
path.addRect(m_rect);
|
||||||
|
|
||||||
|
return qt_graphicsItem_shapeFromPath(path, m_pen);
|
||||||
|
}
|
||||||
|
|
||||||
|
QRectF WorldItemPoint::boundingRect() const
|
||||||
|
{
|
||||||
|
return m_rect;
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPoint::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *)
|
||||||
|
{
|
||||||
|
// Here comes the magic:
|
||||||
|
//painter->setClipRect(option->exposedRect);
|
||||||
|
|
||||||
|
painter->setPen(Qt::NoPen);
|
||||||
|
|
||||||
|
if (option->state & QStyle::State_Selected)
|
||||||
|
{
|
||||||
|
painter->setBrush(m_selectedBrush);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
painter->setBrush(m_brush);
|
||||||
|
}
|
||||||
|
|
||||||
|
painter->drawRect(m_rect);
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariant WorldItemPoint::itemChange(GraphicsItemChange change, const QVariant &value)
|
||||||
|
{
|
||||||
|
if (change == ItemPositionHasChanged)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
return QGraphicsItem::itemChange(change, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
WorldItemPath::WorldItemPath(const QPolygonF &polygon, QGraphicsItem *parent)
|
||||||
|
: AbstractWorldItem(parent),
|
||||||
|
m_polygon(polygon)
|
||||||
|
{
|
||||||
|
//setFlag(ItemIsSelectable);
|
||||||
|
|
||||||
|
setZValue(WORLD_PATH_LAYER);
|
||||||
|
|
||||||
|
m_pen.setColor(QColor(0, 0, 0));
|
||||||
|
m_pen.setWidth(5);
|
||||||
|
|
||||||
|
m_selectedPen.setColor(QColor(255, 0, 0));
|
||||||
|
m_selectedPen.setWidth(5);
|
||||||
|
}
|
||||||
|
|
||||||
|
WorldItemPath::~WorldItemPath()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPath::moveOn(const QPointF &offset)
|
||||||
|
{
|
||||||
|
prepareGeometryChange();
|
||||||
|
|
||||||
|
m_polygon.translate(offset);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPath::rotateOn(const QPointF &pivot, const qreal deltaAngle)
|
||||||
|
{
|
||||||
|
prepareGeometryChange();
|
||||||
|
|
||||||
|
QPolygonF rotatedPolygon(m_polygon);
|
||||||
|
rotatedPolygon.translate(-pivot);
|
||||||
|
|
||||||
|
QTransform trans;
|
||||||
|
trans = trans.rotate(deltaAngle);
|
||||||
|
m_polygon = trans.map(rotatedPolygon);
|
||||||
|
|
||||||
|
m_polygon.translate(pivot);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPath::scaleOn(const QPointF &pivot, const QPointF &offset)
|
||||||
|
{
|
||||||
|
prepareGeometryChange();
|
||||||
|
|
||||||
|
QPolygonF scaledPolygon(m_polygon);
|
||||||
|
scaledPolygon.translate(-pivot);
|
||||||
|
|
||||||
|
QTransform trans;
|
||||||
|
trans = trans.scale(1.0 + (offset.x() / 5000), 1.0 + (-offset.y() / 5000));
|
||||||
|
m_polygon = trans.map(scaledPolygon);
|
||||||
|
|
||||||
|
m_polygon.translate(pivot);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPath::turnOn(const QPointF &offset)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPath::radiusOn(const qreal radius)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
QPainterPath WorldItemPath::shape() const
|
||||||
|
{
|
||||||
|
QPainterPath path;
|
||||||
|
|
||||||
|
path.moveTo(m_polygon.first());
|
||||||
|
for (int i = 1; i < m_polygon.count(); ++i)
|
||||||
|
path.lineTo(m_polygon.at(i));
|
||||||
|
|
||||||
|
return qt_graphicsItem_shapeFromPath(path, m_pen);
|
||||||
|
}
|
||||||
|
|
||||||
|
QRectF WorldItemPath::boundingRect() const
|
||||||
|
{
|
||||||
|
return m_polygon.boundingRect();
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemPath::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *)
|
||||||
|
{
|
||||||
|
// Here comes the magic:
|
||||||
|
//painter->setClipRect(option->exposedRect);
|
||||||
|
|
||||||
|
if (option->state & QStyle::State_Selected)
|
||||||
|
painter->setPen(m_selectedPen);
|
||||||
|
else
|
||||||
|
painter->setPen(m_pen);
|
||||||
|
|
||||||
|
painter->drawPolyline(m_polygon);
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariant WorldItemPath::itemChange(GraphicsItemChange change, const QVariant &value)
|
||||||
|
{
|
||||||
|
if (change == ItemPositionHasChanged)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
return QGraphicsItem::itemChange(change, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
WorldItemZone::WorldItemZone(const QPolygonF &polygon, QGraphicsItem *parent)
|
||||||
|
: AbstractWorldItem(parent),
|
||||||
|
m_polygon(polygon)
|
||||||
|
{
|
||||||
|
//setFlag(ItemIsSelectable);
|
||||||
|
|
||||||
|
setZValue(WORLD_ZONE_LAYER);
|
||||||
|
|
||||||
|
m_pen.setColor(QColor(20, 100, 255));
|
||||||
|
m_pen.setWidth(0);
|
||||||
|
|
||||||
|
m_selectedPen.setColor(QColor(255, 0, 0));
|
||||||
|
m_selectedPen.setWidth(0);
|
||||||
|
|
||||||
|
m_brush.setColor(QColor(20, 100, 255, 28));
|
||||||
|
m_brush.setStyle(Qt::SolidPattern);
|
||||||
|
|
||||||
|
m_selectedBrush.setColor(QColor(255, 0, 0, 128));
|
||||||
|
m_selectedBrush.setStyle(Qt::SolidPattern);
|
||||||
|
}
|
||||||
|
|
||||||
|
WorldItemZone::~WorldItemZone()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemZone::moveOn(const QPointF &offset)
|
||||||
|
{
|
||||||
|
prepareGeometryChange();
|
||||||
|
|
||||||
|
m_polygon.translate(offset);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemZone::rotateOn(const QPointF &pivot, const qreal deltaAngle)
|
||||||
|
{
|
||||||
|
prepareGeometryChange();
|
||||||
|
|
||||||
|
QPolygonF rotatedPolygon(m_polygon);
|
||||||
|
rotatedPolygon.translate(-pivot);
|
||||||
|
|
||||||
|
QTransform trans;
|
||||||
|
trans = trans.rotate(deltaAngle);
|
||||||
|
m_polygon = trans.map(rotatedPolygon);
|
||||||
|
|
||||||
|
m_polygon.translate(pivot);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemZone::scaleOn(const QPointF &pivot, const QPointF &offset)
|
||||||
|
{
|
||||||
|
prepareGeometryChange();
|
||||||
|
|
||||||
|
QPolygonF scaledPolygon(m_polygon);
|
||||||
|
scaledPolygon.translate(-pivot);
|
||||||
|
|
||||||
|
QTransform trans;
|
||||||
|
trans = trans.scale(1.0 + (offset.x() / 5000), 1.0 + (-offset.y() / 5000));
|
||||||
|
m_polygon = trans.map(scaledPolygon);
|
||||||
|
|
||||||
|
m_polygon.translate(pivot);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemZone::turnOn(const QPointF &offset)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemZone::radiusOn(const qreal radius)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
QRectF WorldItemZone::boundingRect() const
|
||||||
|
{
|
||||||
|
return m_polygon.boundingRect();
|
||||||
|
}
|
||||||
|
|
||||||
|
QPainterPath WorldItemZone::shape() const
|
||||||
|
{
|
||||||
|
QPainterPath path;
|
||||||
|
path.addPolygon(m_polygon);
|
||||||
|
return qt_graphicsItem_shapeFromPath(path, m_pen);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WorldItemZone::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *)
|
||||||
|
{
|
||||||
|
if (option->state & QStyle::State_Selected)
|
||||||
|
{
|
||||||
|
painter->setPen(m_selectedPen);
|
||||||
|
painter->setBrush(m_selectedBrush);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
painter->setPen(m_pen);
|
||||||
|
painter->setBrush(m_brush);
|
||||||
|
}
|
||||||
|
|
||||||
|
painter->drawPolygon(m_polygon);
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariant WorldItemZone::itemChange(GraphicsItemChange change, const QVariant &value)
|
||||||
|
{
|
||||||
|
if (change == ItemPositionHasChanged)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
return QGraphicsItem::itemChange(change, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
} /* namespace WorldEditor */
|
@ -0,0 +1,237 @@
|
|||||||
|
// Object Viewer Qt - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
||||||
|
// Copyright (C) 2011 Dzmitry Kamiahin <dnk-88@tut.by>
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program 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 Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
#ifndef WORLD_EDITOR_SCENE_ITEM_H
|
||||||
|
#define WORLD_EDITOR_SCENE_ITEM_H
|
||||||
|
|
||||||
|
// Project includes
|
||||||
|
#include "world_editor_global.h"
|
||||||
|
|
||||||
|
// NeL includes
|
||||||
|
|
||||||
|
// Qt includes
|
||||||
|
#include <QtCore/QPair>
|
||||||
|
#include <QtGui/QGraphicsObject>
|
||||||
|
#include <QtGui/QGraphicsScene>
|
||||||
|
#include <QtGui/QGraphicsPolygonItem>
|
||||||
|
#include <QtGui/QGraphicsRectItem>
|
||||||
|
#include <QtGui/QGraphicsSceneMouseEvent>
|
||||||
|
|
||||||
|
namespace WorldEditor
|
||||||
|
{
|
||||||
|
class GraphicsItemZone;
|
||||||
|
class GraphicsItemNode;
|
||||||
|
|
||||||
|
typedef QPair<GraphicsItemNode *, GraphicsItemNode *> LineNode;
|
||||||
|
|
||||||
|
const int SELECTED_LAYER = 200;
|
||||||
|
const int UNSELECTED_LAYER = 100;
|
||||||
|
const int WORLD_ZONE_LAYER = 100;
|
||||||
|
const int WORLD_POINT_LAYER = 200;
|
||||||
|
const int WORLD_PATH_LAYER = 200;
|
||||||
|
const int MIDDLE_POINT_LAYER = 201;
|
||||||
|
const int EDGE_POINT_LAYER = 201;
|
||||||
|
|
||||||
|
/*
|
||||||
|
// Deprecated
|
||||||
|
class GraphicsItemNode: public QGraphicsObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
Q_PROPERTY(QColor colorNode READ colorNode WRITE setColorNode)
|
||||||
|
public:
|
||||||
|
enum NodeType
|
||||||
|
{
|
||||||
|
EdgeType = 0,
|
||||||
|
MiddleType
|
||||||
|
};
|
||||||
|
|
||||||
|
GraphicsItemNode(GraphicsItemZone *itemZone, QGraphicsItem *parent = 0);
|
||||||
|
virtual ~GraphicsItemNode();
|
||||||
|
|
||||||
|
void setColorNode(const QColor &color);
|
||||||
|
QColor colorNode() const
|
||||||
|
{
|
||||||
|
return m_color;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setNodeType(NodeType nodeType);
|
||||||
|
|
||||||
|
virtual QRectF boundingRect() const;
|
||||||
|
//QPainterPath shape() const;
|
||||||
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual QVariant itemChange(GraphicsItemChange change, const QVariant &value);
|
||||||
|
virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
NodeType m_type;
|
||||||
|
GraphicsItemZone *m_itemZone;
|
||||||
|
QColor m_color;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Deprecated
|
||||||
|
class GraphicsItemZone: public QGraphicsPolygonItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
GraphicsItemZone(QGraphicsScene *scene, QGraphicsItem *parent = 0);
|
||||||
|
virtual ~GraphicsItemZone();
|
||||||
|
|
||||||
|
void scanPolygon(const QPolygonF &polygon);
|
||||||
|
void updateMiddleNode(GraphicsItemNode *node);
|
||||||
|
bool deleteEdgePoint(GraphicsItemNode *node);
|
||||||
|
//void addNode(GraphicsItemNode *node);
|
||||||
|
void updateZone();
|
||||||
|
//QRectF boundingRect() const;
|
||||||
|
//void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
// QVariant itemChange(GraphicsItemChange change, const QVariant &value);
|
||||||
|
|
||||||
|
private:
|
||||||
|
struct LineItem
|
||||||
|
{
|
||||||
|
GraphicsItemNode *itemPoint;
|
||||||
|
LineNode lineNode;
|
||||||
|
};
|
||||||
|
QGraphicsScene *m_scene;
|
||||||
|
QColor m_color;
|
||||||
|
QList<GraphicsItemNode *> m_listItems;
|
||||||
|
QList<LineItem> m_listLines;
|
||||||
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
@class WorldItemPoint
|
||||||
|
@brief
|
||||||
|
@details
|
||||||
|
*/
|
||||||
|
class AbstractWorldItem: public QGraphicsItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
AbstractWorldItem(QGraphicsItem *parent = 0);
|
||||||
|
virtual ~AbstractWorldItem();
|
||||||
|
|
||||||
|
enum { Type = QGraphicsItem::UserType + 1 };
|
||||||
|
|
||||||
|
virtual void moveOn(const QPointF &offset) = 0;
|
||||||
|
virtual void rotateOn(const QPointF &pivot, const qreal deltaAngle) = 0;
|
||||||
|
// TODO: add modes: IgnoreAspectRatio, KeepAspectRatio
|
||||||
|
virtual void scaleOn(const QPointF &pivot, const QPointF &offset) = 0;
|
||||||
|
virtual void turnOn(const QPointF &offset) = 0;
|
||||||
|
virtual void radiusOn(const qreal radius) = 0;
|
||||||
|
|
||||||
|
// Enable the use of qgraphicsitem_cast with this item.
|
||||||
|
int type() const;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
@class WorldItemPoint
|
||||||
|
@brief
|
||||||
|
@details
|
||||||
|
*/
|
||||||
|
class WorldItemPoint: public AbstractWorldItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
WorldItemPoint(const QPointF &point, const float angle, QGraphicsItem *parent = 0);
|
||||||
|
virtual ~WorldItemPoint();
|
||||||
|
|
||||||
|
virtual void moveOn(const QPointF &offset);
|
||||||
|
virtual void rotateOn(const QPointF &pivot, const qreal deltaAngle);
|
||||||
|
virtual void scaleOn(const QPointF &pivot, const QPointF &offset);
|
||||||
|
virtual void turnOn(const QPointF &offset);
|
||||||
|
virtual void radiusOn(const qreal radius);
|
||||||
|
|
||||||
|
virtual QRectF boundingRect() const;
|
||||||
|
virtual QPainterPath shape() const;
|
||||||
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual QVariant itemChange(GraphicsItemChange change, const QVariant &value);
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
static const int SIZE_POINT = 7;
|
||||||
|
|
||||||
|
QPen m_pen, m_selectedPen;
|
||||||
|
QBrush m_brush, m_selectedBrush;
|
||||||
|
|
||||||
|
QRectF m_rect;
|
||||||
|
float m_angle;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
@class WorldItemPath
|
||||||
|
@brief
|
||||||
|
@details
|
||||||
|
*/
|
||||||
|
class WorldItemPath: public AbstractWorldItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
WorldItemPath(const QPolygonF &polygon, QGraphicsItem *parent = 0);
|
||||||
|
virtual ~WorldItemPath();
|
||||||
|
|
||||||
|
virtual void moveOn(const QPointF &offset);
|
||||||
|
virtual void rotateOn(const QPointF &pivot, const qreal deltaAngle);
|
||||||
|
virtual void scaleOn(const QPointF &pivot, const QPointF &offset);
|
||||||
|
virtual void turnOn(const QPointF &offset);
|
||||||
|
virtual void radiusOn(const qreal radius);
|
||||||
|
|
||||||
|
virtual QRectF boundingRect() const;
|
||||||
|
virtual QPainterPath shape() const;
|
||||||
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual QVariant itemChange(GraphicsItemChange change, const QVariant &value);
|
||||||
|
|
||||||
|
QPen m_pen, m_selectedPen;
|
||||||
|
QPolygonF m_polygon;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
@class WorldItemZone
|
||||||
|
@brief
|
||||||
|
@details
|
||||||
|
*/
|
||||||
|
class WorldItemZone: public AbstractWorldItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
WorldItemZone(const QPolygonF &polygon, QGraphicsItem *parent = 0);
|
||||||
|
virtual ~WorldItemZone();
|
||||||
|
|
||||||
|
virtual void moveOn(const QPointF &offset);
|
||||||
|
virtual void rotateOn(const QPointF &pivot, const qreal deltaAngle);
|
||||||
|
virtual void scaleOn(const QPointF &pivot, const QPointF &offset);
|
||||||
|
virtual void turnOn(const QPointF &offset);
|
||||||
|
virtual void radiusOn(const qreal radius);
|
||||||
|
|
||||||
|
virtual QRectF boundingRect() const;
|
||||||
|
virtual QPainterPath shape() const;
|
||||||
|
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual QVariant itemChange(GraphicsItemChange change, const QVariant &value);
|
||||||
|
|
||||||
|
QPen m_pen, m_selectedPen;
|
||||||
|
QBrush m_brush, m_selectedBrush;
|
||||||
|
QPolygonF m_polygon;
|
||||||
|
};
|
||||||
|
|
||||||
|
} /* namespace WorldEditor */
|
||||||
|
|
||||||
|
#endif // WORLD_EDITOR_SCENE_ITEM_H
|
Loading…
Reference in New Issue