2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-10-27 12:59:34 +01:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file dialogheight.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-10-27 12:59:34 +01:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @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.
|
2013-10-27 12:59:34 +01:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-10-27 12:59:34 +01:00
|
|
|
** 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-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-10-27 12:59:34 +01:00
|
|
|
|
2013-10-18 12:03:01 +02:00
|
|
|
#ifndef DIALOGHEIGHT_H
|
|
|
|
#define DIALOGHEIGHT_H
|
|
|
|
|
|
|
|
#include "dialogtool.h"
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class DialogHeight;
|
2013-10-18 12:03:01 +02:00
|
|
|
}
|
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief The DialogHeight class dialog for ToolHeight. Help create point and edit option.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class DialogHeight : public DialogTool
|
|
|
|
{
|
2013-10-18 12:03:01 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-26 10:22:05 +01:00
|
|
|
DialogHeight(const VContainer *data, QWidget *parent = nullptr);
|
2014-02-26 09:18:59 +01:00
|
|
|
~DialogHeight();
|
2014-06-02 16:28:02 +02:00
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
QString getPointName() const;
|
2013-10-18 12:03:01 +02:00
|
|
|
void setPointName(const QString &value);
|
2014-06-02 16:28:02 +02:00
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
QString getTypeLine() const;
|
2013-10-18 12:03:01 +02:00
|
|
|
void setTypeLine(const QString &value);
|
2014-06-02 16:28:02 +02:00
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
quint32 getBasePointId() const;
|
2014-02-25 15:40:24 +01:00
|
|
|
void setBasePointId(const quint32 &value, const quint32 &id);
|
2014-06-02 16:28:02 +02:00
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
quint32 getP1LineId() const;
|
2014-02-25 15:40:24 +01:00
|
|
|
void setP1LineId(const quint32 &value, const quint32 &id);
|
2014-06-02 16:28:02 +02:00
|
|
|
|
2014-02-26 09:18:59 +01:00
|
|
|
quint32 getP2LineId() const;
|
2014-02-25 15:40:24 +01:00
|
|
|
void setP2LineId(const quint32 &value, const quint32 &id);
|
2013-10-18 12:03:01 +02:00
|
|
|
public slots:
|
2014-03-11 12:43:24 +01:00
|
|
|
virtual void ChoosedObject(quint32 id, const Valentina::Scenes &type);
|
2013-10-18 12:03:01 +02:00
|
|
|
virtual void DialogAccepted();
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(DialogHeight)
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief ui keeps information about user interface */
|
2013-10-18 12:03:01 +02:00
|
|
|
Ui::DialogHeight *ui;
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief number number of handled objects */
|
2013-10-18 12:03:01 +02:00
|
|
|
qint32 number;
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief pointName name of point */
|
2013-10-18 12:03:01 +02:00
|
|
|
QString pointName;
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief typeLine type of line */
|
2013-10-18 12:03:01 +02:00
|
|
|
QString typeLine;
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief basePointId id base point of height */
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 basePointId;
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief p1LineId id first point of line */
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 p1LineId;
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief p2LineId id second point of line */
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 p2LineId;
|
2013-10-18 12:03:01 +02:00
|
|
|
};
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getPointName return name of point
|
|
|
|
* @return name
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline QString DialogHeight::getPointName() const
|
|
|
|
{
|
|
|
|
return pointName;
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getTypeLine return type of line
|
|
|
|
* @return type
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline QString DialogHeight::getTypeLine() const
|
|
|
|
{
|
|
|
|
return typeLine;
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getBasePointId return id base point of height
|
|
|
|
* @return id
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline quint32 DialogHeight::getBasePointId() const
|
|
|
|
{
|
|
|
|
return basePointId;
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getP1LineId return id first point of line
|
|
|
|
* @return id id
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline quint32 DialogHeight::getP1LineId() const
|
|
|
|
{
|
|
|
|
return p1LineId;
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getP2LineId return id second point of line
|
|
|
|
* @return id
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline quint32 DialogHeight::getP2LineId() const
|
|
|
|
{
|
|
|
|
return p2LineId;
|
|
|
|
}
|
|
|
|
|
2013-10-18 12:03:01 +02:00
|
|
|
#endif // DIALOGHEIGHT_H
|