35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
|
#ifndef DIALOGPOINTOFINTERSECTION_H
|
||
|
#define DIALOGPOINTOFINTERSECTION_H
|
||
|
|
||
|
#include "dialogtool.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class DialogPointOfIntersection;
|
||
|
}
|
||
|
|
||
|
class DialogPointOfIntersection : public DialogTool{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
DialogPointOfIntersection(const VContainer *data, Draw::Draws mode = Draw::Calculation,
|
||
|
QWidget *parent = 0);
|
||
|
~DialogPointOfIntersection();
|
||
|
QString getPointName() const;
|
||
|
void setPointName(const QString &value);
|
||
|
qint64 getFirstPointId() const;
|
||
|
void setFirstPointId(const qint64 &value, const qint64 &id);
|
||
|
qint64 getSecondPointId() const;
|
||
|
void setSecondPointId(const qint64 &value, const qint64 &id);
|
||
|
public slots:
|
||
|
virtual void ChoosedObject(qint64 id, Scene::Scenes type);
|
||
|
virtual void DialogAccepted();
|
||
|
private:
|
||
|
Q_DISABLE_COPY(DialogPointOfIntersection)
|
||
|
Ui::DialogPointOfIntersection *ui;
|
||
|
qint32 number;
|
||
|
QString pointName;
|
||
|
qint64 firstPointId;
|
||
|
qint64 secondPointId;
|
||
|
};
|
||
|
|
||
|
#endif // DIALOGPOINTOFINTERSECTION_H
|