2013-10-21 16:09:05 +02:00
|
|
|
#ifndef VTOOLPOINTOFINTERSECTION_H
|
|
|
|
#define VTOOLPOINTOFINTERSECTION_H
|
|
|
|
|
|
|
|
#include "vtoolpoint.h"
|
|
|
|
#include "dialogs/dialogpointofintersection.h"
|
|
|
|
|
|
|
|
class VToolPointOfIntersection : public VToolPoint{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-10-27 12:56:05 +01:00
|
|
|
VToolPointOfIntersection(VDomDocument *doc, VContainer *data, const qint64 &id,
|
|
|
|
const qint64 &firstPointId, const qint64 &secondPointId,
|
|
|
|
Tool::Sources typeCreation, QGraphicsItem * parent = 0);
|
2013-10-21 16:09:05 +02:00
|
|
|
virtual void setDialog();
|
|
|
|
static void Create(QSharedPointer<DialogPointOfIntersection> &dialog, VMainGraphicsScene *scene,
|
|
|
|
VDomDocument *doc, VContainer *data);
|
|
|
|
static void Create(const qint64 _id, const QString &pointName, const qint64 &firstPointId,
|
2013-10-27 12:56:05 +01:00
|
|
|
const qint64 &secondPointId, const qreal &mx, const qreal &my, VMainGraphicsScene *scene,
|
|
|
|
VDomDocument *doc, VContainer *data, const Document::Documents &parse,
|
|
|
|
Tool::Sources typeCreation);
|
2013-10-21 16:09:05 +02:00
|
|
|
public slots:
|
|
|
|
virtual void FullUpdateFromFile();
|
|
|
|
virtual void FullUpdateFromGui(int result);
|
|
|
|
protected:
|
|
|
|
virtual void RemoveReferens();
|
|
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event );
|
|
|
|
virtual void AddToFile();
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VToolPointOfIntersection)
|
|
|
|
qint64 firstPointId;
|
|
|
|
qint64 secondPointId;
|
|
|
|
QSharedPointer<DialogPointOfIntersection> dialogPointOfIntersection;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLPOINTOFINTERSECTION_H
|