2015-05-30 12:02:20 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file dialogpointofintersectioncircles.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 29 5, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2015-05-30 12:02:20 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2015-05-30 12:02:20 +02:00
|
|
|
**
|
|
|
|
** 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 DIALOGPOINTOFINTERSECTIONCIRCLES_H
|
|
|
|
#define DIALOGPOINTOFINTERSECTIONCIRCLES_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-05-30 12:02:20 +02:00
|
|
|
#include "dialogtool.h"
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class DialogPointOfIntersectionCircles;
|
|
|
|
}
|
|
|
|
|
|
|
|
class DialogPointOfIntersectionCircles : public DialogTool
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-02-11 12:25:27 +01:00
|
|
|
DialogPointOfIntersectionCircles(const VContainer *data, quint32 toolId, QWidget *parent = nullptr);
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual ~DialogPointOfIntersectionCircles() override;
|
2015-05-30 12:02:20 +02:00
|
|
|
|
2019-02-11 12:25:27 +01:00
|
|
|
QString GetPointName() const;
|
2015-05-30 12:02:20 +02:00
|
|
|
void SetPointName(const QString &value);
|
|
|
|
|
|
|
|
quint32 GetFirstCircleCenterId() const;
|
|
|
|
void SetFirstCircleCenterId(const quint32 &value);
|
|
|
|
|
|
|
|
quint32 GetSecondCircleCenterId() const;
|
|
|
|
void SetSecondCircleCenterId(const quint32 &value);
|
|
|
|
|
|
|
|
QString GetFirstCircleRadius() const;
|
|
|
|
void SetFirstCircleRadius(const QString &value);
|
|
|
|
|
|
|
|
QString GetSecondCircleRadius() const;
|
|
|
|
void SetSecondCircleRadius(const QString &value);
|
|
|
|
|
|
|
|
CrossCirclesPoint GetCrossCirclesPoint() const;
|
2015-10-28 15:22:36 +01:00
|
|
|
void SetCrossCirclesPoint(const CrossCirclesPoint &p);
|
2015-05-30 12:02:20 +02:00
|
|
|
|
|
|
|
public slots:
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual void ChosenObject(quint32 id, const SceneObject &type) override;
|
2015-05-30 12:02:20 +02:00
|
|
|
void PointChanged();
|
|
|
|
|
|
|
|
void DeployCircle1RadiusTextEdit();
|
|
|
|
void DeployCircle2RadiusTextEdit();
|
|
|
|
|
|
|
|
void FXCircle1Radius();
|
|
|
|
void FXCircle2Radius();
|
|
|
|
|
|
|
|
void EvalCircle1Radius();
|
|
|
|
void EvalCircle2Radius();
|
|
|
|
|
|
|
|
protected:
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual void ShowVisualization() override;
|
2015-05-30 12:02:20 +02:00
|
|
|
/**
|
|
|
|
* @brief SaveData Put dialog data in local variables
|
|
|
|
*/
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual void SaveData() override;
|
|
|
|
virtual void closeEvent(QCloseEvent *event) override;
|
2019-02-11 12:25:27 +01:00
|
|
|
virtual bool IsValid() const final;
|
2015-05-30 12:02:20 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(DialogPointOfIntersectionCircles)
|
|
|
|
|
|
|
|
Ui::DialogPointOfIntersectionCircles *ui;
|
|
|
|
|
2019-02-11 12:25:27 +01:00
|
|
|
QTimer *timerCircle1Radius;
|
|
|
|
QTimer *timerCircle2Radius;
|
|
|
|
|
|
|
|
QString circle1Radius;
|
|
|
|
QString circle2Radius;
|
2015-05-30 12:02:20 +02:00
|
|
|
|
2019-02-11 12:25:27 +01:00
|
|
|
int formulaBaseHeightCircle1Radius;
|
|
|
|
int formulaBaseHeightCircle2Radius;
|
2015-05-30 12:02:20 +02:00
|
|
|
|
2019-02-11 12:25:27 +01:00
|
|
|
QString pointName;
|
2015-05-30 12:02:20 +02:00
|
|
|
|
2019-02-11 12:25:27 +01:00
|
|
|
bool flagCircle1Radius;
|
|
|
|
bool flagCircle2Radius;
|
|
|
|
bool flagName;
|
|
|
|
bool flagError;
|
2015-05-30 12:02:20 +02:00
|
|
|
};
|
|
|
|
|
2019-02-11 12:25:27 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
inline bool DialogPointOfIntersectionCircles::IsValid() const
|
|
|
|
{
|
|
|
|
return flagCircle1Radius && flagCircle2Radius && flagName && flagError;
|
|
|
|
}
|
|
|
|
|
2015-05-30 12:02:20 +02:00
|
|
|
#endif // DIALOGPOINTOFINTERSECTIONCIRCLES_H
|