54 lines
2.0 KiB
C++
54 lines
2.0 KiB
C++
#ifndef DIALOGSHOULDERPOINT_H
|
|
#define DIALOGSHOULDERPOINT_H
|
|
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Weffc++"
|
|
#pragma GCC diagnostic ignored "-Wconversion"
|
|
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
|
#pragma GCC diagnostic ignored "-Wctor-dtor-privacy"
|
|
#include "dialogtool.h"
|
|
#pragma GCC diagnostic pop
|
|
#include "../options.h"
|
|
#include "../container/vcontainer.h"
|
|
#include "../container/calculator.h"
|
|
|
|
namespace Ui {
|
|
class DialogShoulderPoint;
|
|
}
|
|
|
|
class DialogShoulderPoint : public DialogTool
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DialogShoulderPoint(const VContainer *data, QWidget *parent = 0);
|
|
~DialogShoulderPoint();
|
|
QString getPointName() const;
|
|
void setPointName(const QString &value);
|
|
QString getTypeLine() const;
|
|
void setTypeLine(const QString &value);
|
|
QString getFormula() const;
|
|
void setFormula(const QString &value);
|
|
qint64 getP1Line() const;
|
|
void setP1Line(const qint64 &value, const qint64 &id);
|
|
qint64 getP2Line() const;
|
|
void setP2Line(const qint64 &value, const qint64 &id);
|
|
qint64 getPShoulder() const;
|
|
void setPShoulder(const qint64 &value, const qint64 &id);
|
|
public slots:
|
|
virtual void ChoosedObject(qint64 id, Scene::Type type);
|
|
virtual void DialogAccepted();
|
|
private:
|
|
Ui::DialogShoulderPoint *ui;
|
|
qint32 number;
|
|
QString pointName;
|
|
QString typeLine;
|
|
QString formula;
|
|
qint64 p1Line;
|
|
qint64 p2Line;
|
|
qint64 pShoulder;
|
|
DialogShoulderPoint(const DialogShoulderPoint &dialog);
|
|
const DialogShoulderPoint &operator=(const DialogShoulderPoint& dialog);
|
|
};
|
|
|
|
#endif // DIALOGSHOULDERPOINT_H
|