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
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@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 09:18:59 +01:00
|
|
|
/**
|
|
|
|
* @brief DialogHeight create dialog
|
|
|
|
* @param data container with data
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2014-02-26 10:22:05 +01:00
|
|
|
DialogHeight(const VContainer *data, QWidget *parent = nullptr);
|
2014-02-26 09:18:59 +01:00
|
|
|
~DialogHeight();
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief getPointName return name of point
|
|
|
|
* @return name
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
QString getPointName() const;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief setPointName set name of point
|
|
|
|
* @param value name
|
|
|
|
*/
|
2013-10-18 12:03:01 +02:00
|
|
|
void setPointName(const QString &value);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief getTypeLine return type of line
|
|
|
|
* @return type
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
QString getTypeLine() const;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief setTypeLine set type of line
|
|
|
|
* @param value type
|
|
|
|
*/
|
2013-10-18 12:03:01 +02:00
|
|
|
void setTypeLine(const QString &value);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief getBasePointId return id base point of height
|
|
|
|
* @return id
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
quint32 getBasePointId() const;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief setBasePointId set id base point of height
|
|
|
|
* @param value id
|
|
|
|
* @param id don't show this id in list
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void setBasePointId(const quint32 &value, const quint32 &id);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief getP1LineId return id first point of line
|
|
|
|
* @return id id
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
quint32 getP1LineId() const;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief setP1LineId set id first point of line
|
|
|
|
* @param value id
|
|
|
|
* @param id don't show this id in list
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void setP1LineId(const quint32 &value, const quint32 &id);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief getP2LineId return id second point of line
|
|
|
|
* @return id
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
quint32 getP2LineId() const;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief setP2LineId set id second point of line
|
|
|
|
* @param value id
|
|
|
|
* @param id don't show this id in list
|
|
|
|
*/
|
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:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
virtual void ChoosedObject(quint32 id, const Scene::Scenes &type);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief DialogAccepted save data and emit signal about closed dialog.
|
|
|
|
*/
|
2013-10-18 12:03:01 +02:00
|
|
|
virtual void DialogAccepted();
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(DialogHeight)
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief ui keeps information about user interface
|
|
|
|
*/
|
2013-10-18 12:03:01 +02:00
|
|
|
Ui::DialogHeight *ui;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief number number of handled objects
|
|
|
|
*/
|
2013-10-18 12:03:01 +02:00
|
|
|
qint32 number;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief pointName name of point
|
|
|
|
*/
|
2013-10-18 12:03:01 +02:00
|
|
|
QString pointName;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief typeLine type of line
|
|
|
|
*/
|
2013-10-18 12:03:01 +02:00
|
|
|
QString typeLine;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief basePointId id base point of height
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 basePointId;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
|
|
|
* @brief p1LineId id first point of line
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 p1LineId;
|
2013-11-19 21:56:49 +01: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-02-26 09:18:59 +01:00
|
|
|
inline QString DialogHeight::getPointName() const
|
|
|
|
{
|
|
|
|
return pointName;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline QString DialogHeight::getTypeLine() const
|
|
|
|
{
|
|
|
|
return typeLine;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline quint32 DialogHeight::getBasePointId() const
|
|
|
|
{
|
|
|
|
return basePointId;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline quint32 DialogHeight::getP1LineId() const
|
|
|
|
{
|
|
|
|
return p1LineId;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline quint32 DialogHeight::getP2LineId() const
|
|
|
|
{
|
|
|
|
return p2LineId;
|
|
|
|
}
|
|
|
|
|
2013-10-18 12:03:01 +02:00
|
|
|
#endif // DIALOGHEIGHT_H
|