valentina/src/libs/vpropertyexplorer/plugins/vemptyproperty.h

97 lines
3.2 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vemptyproperty.h
** @author hedgeware <internal(at)hedgeware.net>
** @date
**
** @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 VEMPTYPROPERTY_H
#define VEMPTYPROPERTY_H
#include <QMetaObject>
#include <QObject>
#include <QString>
#include <QStyleOptionViewItem>
#include <QVariant>
#include <QtGlobal>
2014-09-14 11:16:59 +02:00
#include "../vproperty.h"
#include "../vpropertyexplorer_global.h"
namespace VPE
{
class VPropertyPrivate;
2023-07-13 16:49:20 +02:00
} // namespace VPE
2014-09-10 19:57:08 +02:00
namespace VPE
{
2021-09-25 16:18:33 +02:00
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Wsuggest-final-types")
class VPROPERTYEXPLORERSHARED_EXPORT VEmptyProperty : public VProperty
{
2022-08-12 17:50:13 +02:00
Q_OBJECT // NOLINT
2023-07-13 16:49:20 +02:00
public:
//! Standard constructor, takes a name and a parent property as argument
2023-07-13 16:49:20 +02:00
explicit VEmptyProperty(const QString &name);
//! Destructor
virtual ~VEmptyProperty() override;
//! Get the data how it should be displayed
2023-05-03 13:07:02 +02:00
virtual auto data(int column = DPC_Name, int role = Qt::DisplayRole) const -> QVariant override;
//! Returns an editor widget, or NULL if it doesn't supply one
//! \param parent The widget to which the editor will be added as a child
//! \options Render options
2014-09-10 19:57:08 +02:00
//! \delegate A pointer to the QAbstractItemDelegate requesting the editor. This can be used to connect signals and
//! slots.
2023-05-03 13:07:02 +02:00
virtual auto createEditor(QWidget *parent, const QStyleOptionViewItem &options,
const QAbstractItemDelegate *delegate) -> QWidget * override;
//! Gets the data from the widget
2023-05-03 13:07:02 +02:00
virtual auto getEditorData(const QWidget *editor) const -> QVariant override;
//! Returns item flags
2023-05-03 13:07:02 +02:00
virtual auto flags(int column = DPC_Name) const -> Qt::ItemFlags override;
//! Returns a string containing the type of the property
2023-05-03 13:07:02 +02:00
virtual auto type() const -> QString override;
//! Clones this property
//! \param include_children Indicates whether to also clone the children
2014-09-10 19:57:08 +02:00
//! \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)
2023-05-03 13:07:02 +02:00
Q_REQUIRED_RESULT virtual auto clone(bool include_children = true, VProperty *container = nullptr) const
-> VProperty * override;
protected:
//! Protected constructor
2023-07-13 16:49:20 +02:00
explicit VEmptyProperty(VPropertyPrivate *d);
private:
2022-08-12 17:50:13 +02:00
Q_DISABLE_COPY_MOVE(VEmptyProperty) // NOLINT
};
2021-09-25 16:18:33 +02:00
QT_WARNING_POP
2021-09-25 11:42:28 +02:00
2023-07-13 16:49:20 +02:00
} // namespace VPE
#endif // VEMPTYPROPERTY_H