valentina/src/libs/vpropertyexplorer/plugins/vpointfproperty.h
Roman Telezhynskyi 63b1eb8068 Cppcheck warning 'missingOverride'.
--HG--
branch : develop
2018-06-26 15:53:48 +03:00

86 lines
2.7 KiB
C++

/************************************************************************
**
** @file vpointfproperty.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 27 8, 2014
**
** @brief
** @copyright
** All rights reserved. This program and the accompanying materials
** are made available under the terms of the GNU Lesser General Public License
** (LGPL) version 2.1 which accompanies this distribution, and is available at
** http://www.gnu.org/licenses/lgpl-2.1.html
**
** This library 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
** Lesser General Public License for more details.
**
*************************************************************************/
#ifndef VPOINTFPROPERTY_H
#define VPOINTFPROPERTY_H
#include <qcompilerdetection.h>
#include <QMetaObject>
#include <QObject>
#include <QPointF>
#include <QString>
#include <QVariant>
#include <Qt>
#include <QtGlobal>
#include "../vproperty.h"
#include "../vpropertyexplorer_global.h"
namespace VPE
{
class VPROPERTYEXPLORERSHARED_EXPORT VPointFProperty : public VProperty
{
Q_OBJECT
public:
explicit VPointFProperty(const QString& name);
virtual ~VPointFProperty() override {}
//! Get the data how it should be displayed
virtual QVariant data (int column = DPC_Name, int role = Qt::DisplayRole) const override;
//! Returns item flags
Qt::ItemFlags flags(int column = DPC_Name) const override;
//! Returns the QPointF
virtual QPointF getPointF() const;
//! Sets the QPointF
virtual void setPointF(const QPointF& point);
//! Sets the QPointF
virtual void setPointF(qreal x, qreal y);
//! Returns a string containing the type of the property
virtual QString type() const override;
//! Clones this property
//! \param include_children Indicates whether to also clone the children
//! \param container If a property is being passed here, no new VProperty is being created but instead it is tried
//! to fill all the data into container. This can also be used when subclassing this function.
//! \return Returns the newly created property (or container, if it was not NULL)
Q_REQUIRED_RESULT virtual VProperty* clone(bool include_children = true,
VProperty* container = nullptr) const override;
//! Sets the value of the property
virtual void setValue(const QVariant& value) override;
//! Returns the value of the property as a QVariant
virtual QVariant getValue() const override;
private:
Q_DISABLE_COPY(VPointFProperty)
};
}
#endif // VPOINTFPROPERTY_H