2014-09-10 17:27:45 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file venumproperty.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 VENUMPROPERTY_H
|
|
|
|
#define VENUMPROPERTY_H
|
|
|
|
|
2014-09-14 11:16:59 +02:00
|
|
|
#include "../vproperty.h"
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
#include <QStringList>
|
|
|
|
|
2014-09-10 19:57:08 +02:00
|
|
|
namespace VPE
|
|
|
|
{
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
class VPROPERTYEXPLORERSHARED_EXPORT VEnumProperty : public VProperty
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
//! Constructor
|
|
|
|
VEnumProperty(const QString& name);
|
|
|
|
|
|
|
|
//! Destructor
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VEnumProperty() Q_DECL_OVERRIDE {}
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
//! Get the data how it should be displayed
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual QVariant data (int column = DPC_Name, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
//! 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.
|
|
|
|
virtual QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& options,
|
2015-07-03 15:36:54 +02:00
|
|
|
const QAbstractItemDelegate* delegate) Q_DECL_OVERRIDE;
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
//! Gets the data from the widget
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual QVariant getEditorData(const QWidget* editor) const Q_DECL_OVERRIDE;
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
//! Sets the enumeration literals
|
|
|
|
virtual void setLiterals(const QStringList &literals);
|
|
|
|
|
|
|
|
//! Get the settings. This function has to be implemented in a subclass in order to have an effect
|
|
|
|
virtual QStringList getLiterals() const;
|
|
|
|
|
|
|
|
//! Sets the value of the property
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void setValue(const QVariant& value) Q_DECL_OVERRIDE;
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
//! Returns a string containing the type of the property
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual QString type() const Q_DECL_OVERRIDE;
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
//! 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.
|
2014-09-10 17:27:45 +02:00
|
|
|
//! \return Returns the newly created property (or container, if it was not NULL)
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual VProperty* clone(bool include_children = true, VProperty* container = nullptr) const Q_DECL_OVERRIDE;
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
//! Sets the settings. Available settings:
|
|
|
|
//!
|
|
|
|
//! key: "literals" - value: "item1;;item2;;item3"
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void setSetting(const QString& key, const QVariant& value) Q_DECL_OVERRIDE;
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
//! Get the settings. This function has to be implemented in a subclass in order to have an effect
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual QVariant getSetting(const QString& key) const Q_DECL_OVERRIDE;
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
//! Returns the list of keys of the property's settings
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual QStringList getSettingKeys() const Q_DECL_OVERRIDE;
|
2014-09-10 17:27:45 +02:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void currentIndexChanged(int index);
|
|
|
|
|
|
|
|
protected:
|
2015-01-29 16:47:02 +01:00
|
|
|
//! The list of possible options to choose from
|
2014-09-10 17:27:45 +02:00
|
|
|
QStringList EnumerationLiterals;
|
2014-09-10 19:57:08 +02:00
|
|
|
// No use of d-pointer in this case, because it is unlikely this will change. If it does, we can still add other
|
|
|
|
//members by reimplementing the VPropertyPrivate class without touching this header file.
|
2014-09-20 18:05:21 +02:00
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VEnumProperty)
|
2014-09-10 17:27:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // VENUMPROPERTY_H
|