valentina/src/libs/vtools/dialogs/tools/dialogcurveintersectaxis.h

113 lines
3.3 KiB
C
Raw Normal View History

/************************************************************************
**
** @file dialogcurveintersectaxis.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 21 10, 2014
**
** @brief
** @copyright
** This source code is part of the Valentina project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2013-2015 Valentina project
** <https://gitlab.com/smart-pattern/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 DIALOGCURVEINTERSECTAXIS_H
#define DIALOGCURVEINTERSECTAXIS_H
#include <qcompilerdetection.h>
#include <QMetaObject>
#include <QObject>
#include <QString>
#include <QtGlobal>
#include "../vmisc/def.h"
#include "dialogtool.h"
2015-03-02 18:11:43 +01:00
namespace Ui
{
class DialogCurveIntersectAxis;
}
class DialogCurveIntersectAxis : public DialogTool
{
Q_OBJECT
public:
DialogCurveIntersectAxis(const VContainer *data, quint32 toolId, QWidget *parent = nullptr);
virtual ~DialogCurveIntersectAxis() override;
QString GetPointName() const;
2015-02-03 11:17:04 +01:00
void SetPointName(const QString &value);
2015-02-03 11:17:04 +01:00
QString GetTypeLine() const;
void SetTypeLine(const QString &value);
2015-02-03 11:17:04 +01:00
QString GetAngle() const;
void SetAngle(const QString &value);
2015-02-03 11:17:04 +01:00
quint32 GetBasePointId() const;
void SetBasePointId(quint32 value);
quint32 getCurveId() const;
void setCurveId(quint32 value);
2015-02-03 11:17:04 +01:00
QString GetLineColor() const;
void SetLineColor(const QString &value);
2015-02-03 10:27:33 +01:00
2020-10-28 13:09:56 +01:00
void SetNotes(const QString &notes);
QString GetNotes() const;
virtual void ShowDialog(bool click) override;
public slots:
virtual void ChosenObject(quint32 id, const SceneObject &type) override;
void EvalAngle();
void DeployAngleTextEdit();
void FXAngle();
protected:
virtual void ShowVisualization() override;
/**
* @brief SaveData Put dialog data in local variables
*/
virtual void SaveData() override;
virtual void closeEvent(QCloseEvent *event) override;
virtual bool IsValid() const final;
private:
Q_DISABLE_COPY(DialogCurveIntersectAxis)
Ui::DialogCurveIntersectAxis *ui;
QString formulaAngle;
int formulaBaseHeightAngle;
QString pointName;
bool m_firstRelease;
QTimer *timerFormula;
bool flagFormula;
bool flagName;
};
//---------------------------------------------------------------------------------------------------------------------
inline bool DialogCurveIntersectAxis::IsValid() const
{
return flagFormula && flagName;
}
#endif // DIALOGCURVEINTERSECTAXIS_H