2015-06-05 15:43:41 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file dialogpointfromcircleandtangent.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 3 6, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2015 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef DIALOGPOINTFROMCIRCLEANDTANGENT_H
|
|
|
|
#define DIALOGPOINTFROMCIRCLEANDTANGENT_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
#include "../ifc/xml/vabstractpattern.h"
|
|
|
|
#include "../vmisc/def.h"
|
2015-06-05 15:43:41 +02:00
|
|
|
#include "dialogtool.h"
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
class QCloseEvent;
|
|
|
|
class QTimer;
|
|
|
|
class QWidget;
|
|
|
|
class VContainer;
|
|
|
|
|
2015-06-05 15:43:41 +02:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class DialogPointFromCircleAndTangent;
|
|
|
|
}
|
|
|
|
|
|
|
|
class DialogPointFromCircleAndTangent : public DialogTool
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
DialogPointFromCircleAndTangent(const VContainer *data, const quint32 &toolId, QWidget *parent = 0);
|
|
|
|
~DialogPointFromCircleAndTangent();
|
|
|
|
|
|
|
|
void SetPointName(const QString &value);
|
|
|
|
|
|
|
|
quint32 GetCircleCenterId() const;
|
|
|
|
void SetCircleCenterId(const quint32 &value);
|
|
|
|
|
|
|
|
QString GetCircleRadius() const;
|
|
|
|
void SetCircleRadius(const QString &value);
|
|
|
|
|
|
|
|
quint32 GetTangentPointId() const;
|
|
|
|
void SetTangentPointId(const quint32 &value);
|
|
|
|
|
|
|
|
CrossCirclesPoint GetCrossCirclesPoint() const;
|
2015-10-28 15:22:36 +01:00
|
|
|
void SetCrossCirclesPoint(const CrossCirclesPoint &p);
|
2015-06-05 15:43:41 +02:00
|
|
|
|
|
|
|
public slots:
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void ChosenObject(quint32 id, const SceneObject &type) Q_DECL_OVERRIDE;
|
2015-06-05 15:43:41 +02:00
|
|
|
void PointChanged();
|
|
|
|
|
|
|
|
void DeployCircleRadiusTextEdit();
|
|
|
|
void CircleRadiusChanged();
|
|
|
|
void FXCircleRadius();
|
|
|
|
void EvalCircleRadius();
|
|
|
|
|
|
|
|
protected:
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void ShowVisualization() Q_DECL_OVERRIDE;
|
2015-06-05 15:43:41 +02:00
|
|
|
/**
|
|
|
|
* @brief SaveData Put dialog data in local variables
|
|
|
|
*/
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void SaveData() Q_DECL_OVERRIDE;
|
|
|
|
virtual void closeEvent(QCloseEvent *event) Q_DECL_OVERRIDE;
|
|
|
|
virtual void CheckState() Q_DECL_OVERRIDE;
|
2015-06-05 15:43:41 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(DialogPointFromCircleAndTangent)
|
|
|
|
|
|
|
|
Ui::DialogPointFromCircleAndTangent *ui;
|
|
|
|
|
|
|
|
bool flagCircleRadius;
|
|
|
|
QTimer *timerCircleRadius;
|
|
|
|
QString circleRadius;
|
|
|
|
int formulaBaseHeightCircleRadius;
|
|
|
|
qreal angleCircleRadius;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DIALOGPOINTFROMCIRCLEANDTANGENT_H
|