valentina/src/dialogs/tools/dialogarc.h

207 lines
5.9 KiB
C
Raw Normal View History

/************************************************************************
**
** @file dialogarc.h
** @author Roman Telezhinsky <dismine@gmail.com>
** @date November 15, 2013
**
** @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) 2013 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/>.
**
*************************************************************************/
2013-08-06 09:56:09 +02:00
#ifndef DIALOGARC_H
#define DIALOGARC_H
#include "dialogtool.h"
namespace Ui
{
class DialogArc;
2013-08-06 09:56:09 +02:00
}
/**
* @brief The DialogArc class dialog for ToolArc. Help create arc and edit option.
*/
class DialogArc : public DialogTool
{
2013-08-06 09:56:09 +02:00
Q_OBJECT
public:
/**
* @brief DialogArc create dialog
* @param data container with data
* @param parent parent widget
*/
DialogArc(const VContainer *data, QWidget *parent = 0);
2013-10-26 19:55:06 +02:00
~DialogArc();
/**
* @brief GetCenter return id of center point
* @return id id
*/
inline quint32 GetCenter() const {return center;}
/**
* @brief SetCenter set id of center point
* @param value id
*/
void SetCenter(const quint32 &value);
/**
* @brief GetRadius return formula of radius
* @return formula
*/
2013-10-26 19:55:06 +02:00
inline QString GetRadius() const {return radius;}
/**
* @brief SetRadius set formula of radius
* @param value formula
*/
2013-10-26 19:55:06 +02:00
void SetRadius(const QString &value);
/**
* @brief GetF1 return formula first angle of arc
* @return formula
*/
2013-10-26 19:55:06 +02:00
inline QString GetF1() const {return f1;}
/**
* @brief SetF1 set formula first angle of arc
* @param value formula
*/
2013-10-26 19:55:06 +02:00
void SetF1(const QString &value);
/**
* @brief GetF2 return formula second angle of arc
* @return formula
*/
2013-10-26 19:55:06 +02:00
inline QString GetF2() const {return f2;}
/**
* @brief SetF2 set formula second angle of arc
* @param value formula
*/
2013-10-26 19:55:06 +02:00
void SetF2(const QString &value);
2013-08-06 09:56:09 +02:00
public slots:
/**
* @brief ChoosedObject gets id and type of selected object. Save right data and ignore wrong.
* @param id id of point or detail
* @param type type of object
*/
virtual void ChoosedObject(quint32 id, const Scene::Scenes &type);
/**
* @brief DialogAccepted save data and emit signal about closed dialog.
*/
2013-08-06 09:56:09 +02:00
virtual void DialogAccepted();
/**
* @brief ValChenged show description angles of lines
* @param row number of row
*/
2013-08-06 09:56:09 +02:00
virtual void ValChenged(int row);
/**
* @brief PutRadius put variable into formula of radius
*/
2013-08-06 09:56:09 +02:00
void PutRadius();
/**
* @brief PutF1 put variable into formula of first angle
*/
2013-08-06 09:56:09 +02:00
void PutF1();
/**
* @brief PutF2 put variable into formula of second angle
*/
2013-08-06 09:56:09 +02:00
void PutF2();
/**
* @brief LineAngles show variable angles of lines
*/
void LineAngles();
/**
* @brief RadiusChanged after change formula of radius calculate value and show result
*/
2013-08-06 09:56:09 +02:00
void RadiusChanged();
/**
* @brief F1Changed after change formula of first angle calculate value and show result
*/
2013-08-06 09:56:09 +02:00
void F1Changed();
/**
* @brief F2Changed after change formula of second angle calculate value and show result
*/
2013-08-06 09:56:09 +02:00
void F2Changed();
protected:
/**
* @brief CheckState if all is right enable button ok
*/
2013-08-06 09:56:09 +02:00
virtual void CheckState();
private:
Q_DISABLE_COPY(DialogArc)
/**
* @brief ui keeps information about user interface
*/
2013-08-06 09:56:09 +02:00
Ui::DialogArc *ui;
/**
* @brief flagRadius true if value of radius is correct
*/
2013-08-06 09:56:09 +02:00
bool flagRadius;
/**
* @brief flagF1 true if value of first angle is correct
*/
2013-08-06 09:56:09 +02:00
bool flagF1;
/**
* @brief flagF2 true if value of second angle is correct
*/
2013-08-06 09:56:09 +02:00
bool flagF2;
/**
* @brief timerRadius timer of check formula of radius
*/
2013-08-06 09:56:09 +02:00
QTimer *timerRadius;
/**
* @brief timerF1 timer of check formula of first angle
*/
2013-08-06 09:56:09 +02:00
QTimer *timerF1;
/**
* @brief timerF2 timer of check formula of second angle
*/
2013-08-06 09:56:09 +02:00
QTimer *timerF2;
/**
* @brief center id of center point
*/
quint32 center;
/**
* @brief radius formula of radius
*/
2013-08-06 09:56:09 +02:00
QString radius;
/**
* @brief f1 formula of first angle
*/
2013-08-06 09:56:09 +02:00
QString f1;
/**
* @brief f2 formula of second angle
*/
2013-08-06 09:56:09 +02:00
QString f2;
/**
* @brief EvalRadius calculate value of radius
*/
2013-08-06 09:56:09 +02:00
void EvalRadius();
/**
* @brief EvalF1 calculate value of first angle
*/
2013-08-06 09:56:09 +02:00
void EvalF1();
/**
* @brief EvalF2 calculate value of second angle
*/
2013-08-06 09:56:09 +02:00
void EvalF2();
/**
* @brief ShowLineAngles show varibles angles of lines
*/
void ShowLineAngles();
2013-08-06 09:56:09 +02:00
};
#endif // DIALOGARC_H