/**************************************************************************** ** ** Copyright (C) 2013 Valentina project All Rights Reserved. ** ** This file is part of Valentina. ** ** Tox is free software: you can redistribute it and/or modify ** 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. ** ** Valentina 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 General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with Valentina. If not, see . ** ****************************************************************************/ #ifndef DIALOGSPLINE_H #define DIALOGSPLINE_H #include "dialogtool.h" namespace Ui { class DialogSpline; } class DialogSpline : public DialogTool { Q_OBJECT public: DialogSpline(const VContainer *data, Draw::Draws mode = Draw::Calculation, QWidget *parent = 0); ~DialogSpline(); inline qint64 getP1() const {return p1;} void setP1(const qint64 &value); inline qint64 getP4() const {return p4;} void setP4(const qint64 &value); inline qreal getAngle1() const {return angle1;} void setAngle1(const qreal &value); inline qreal getAngle2() const {return angle2;} void setAngle2(const qreal &value); inline qreal getKAsm1() const {return kAsm1;} void setKAsm1(const qreal &value); inline qreal getKAsm2() const {return kAsm2;} void setKAsm2(const qreal &value); inline qreal getKCurve() const {return kCurve;} void setKCurve(const qreal &value); public slots: virtual void ChoosedObject(qint64 id, const Scene::Scenes &type); virtual void DialogAccepted(); private: Q_DISABLE_COPY(DialogSpline) Ui::DialogSpline *ui; qint32 number; qint64 p1; // перша точка qint64 p4; // четверта точка qreal angle1; // кут нахилу дотичної в першій точці qreal angle2; // кут нахилу дотичної в другій точці qreal kAsm1; qreal kAsm2; qreal kCurve; }; #endif // DIALOGSPLINE_H