valentina/dialogs/dialogspline.h

69 lines
2.5 KiB
C
Raw Normal View History

/****************************************************************************
**
** 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 <http://www.gnu.org/licenses/>.
**
****************************************************************************/
2013-08-05 10:37:56 +02:00
#ifndef DIALOGSPLINE_H
#define DIALOGSPLINE_H
#include "dialogtool.h"
namespace Ui
{
class DialogSpline;
2013-08-05 10:37:56 +02:00
}
class DialogSpline : public DialogTool
{
Q_OBJECT
2013-08-05 10:37:56 +02:00
public:
DialogSpline(const VContainer *data, Draw::Draws mode = Draw::Calculation, QWidget *parent = 0);
2013-10-26 19:55:06 +02:00
~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);
2013-08-05 10:37:56 +02:00
public slots:
virtual void ChoosedObject(qint64 id, const Scene::Scenes &type);
2013-10-26 19:55:06 +02:00
virtual void DialogAccepted();
2013-08-05 10:37:56 +02:00
private:
Q_DISABLE_COPY(DialogSpline)
2013-08-05 10:37:56 +02:00
Ui::DialogSpline *ui;
2013-10-26 19:55:06 +02:00
qint32 number;
qint64 p1; // перша точка
qint64 p4; // четверта точка
qreal angle1; // кут нахилу дотичної в першій точці
qreal angle2; // кут нахилу дотичної в другій точці
2013-10-26 19:55:06 +02:00
qreal kAsm1;
qreal kAsm2;
qreal kCurve;
2013-08-05 10:37:56 +02:00
};
#endif // DIALOGSPLINE_H