2014-08-27 12:42:54 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vstringproperty.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 27 8, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2014-08-27 14:39:54 +02:00
|
|
|
** 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
|
2014-08-27 12:42:54 +02:00
|
|
|
**
|
2014-08-27 14:39:54 +02:00
|
|
|
** This library is distributed in the hope that it will be useful,
|
2014-08-27 12:42:54 +02:00
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2014-08-27 14:39:54 +02:00
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
** Lesser General Public License for more details.
|
2014-08-27 12:42:54 +02:00
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VSTRINGPROPERTY_H
|
|
|
|
#define VSTRINGPROPERTY_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QStyleOptionViewItem>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
2014-09-14 11:16:59 +02:00
|
|
|
#include "../vproperty.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vpropertyexplorer_global.h"
|
|
|
|
|
2014-09-10 19:57:08 +02:00
|
|
|
namespace VPE
|
|
|
|
{
|
2014-08-27 12:42:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
//! Class for holding a string property
|
|
|
|
class VPROPERTYEXPLORERSHARED_EXPORT VStringProperty : public VProperty
|
|
|
|
{
|
2014-12-04 12:34:48 +01:00
|
|
|
Q_OBJECT
|
2014-08-27 12:42:54 +02:00
|
|
|
public:
|
|
|
|
VStringProperty(const QString& name, const QMap<QString, QVariant>& settings);
|
|
|
|
|
2015-10-12 13:52:48 +02:00
|
|
|
explicit VStringProperty(const QString& name);
|
2014-08-27 12:42:54 +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-08-27 12:42:54 +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-08-27 12:42:54 +02:00
|
|
|
|
|
|
|
void setReadOnly(bool readOnly);
|
2016-08-23 20:24:14 +02:00
|
|
|
void setOsSeparator(bool separator);
|
2015-12-09 12:13:34 +01:00
|
|
|
void setClearButtonEnable(bool value);
|
2014-08-27 12:42:54 +02:00
|
|
|
|
|
|
|
//! Sets the settings.
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void setSetting(const QString& key, const QVariant& value) Q_DECL_OVERRIDE;
|
2014-08-27 12:42:54 +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-08-27 12:42:54 +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-08-27 12:42:54 +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-08-27 12:42:54 +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-08-27 12:42:54 +02:00
|
|
|
//! \return Returns the newly created property (or container, if it was not NULL)
|
2017-07-01 20:38:26 +02:00
|
|
|
Q_REQUIRED_RESULT virtual VProperty* clone(bool include_children = true,
|
|
|
|
VProperty* container = nullptr) const Q_DECL_OVERRIDE;
|
2014-08-27 12:42:54 +02:00
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void UpdateParent(const QVariant &value) Q_DECL_OVERRIDE;
|
2014-08-29 11:19:11 +02:00
|
|
|
|
|
|
|
int getTypeForParent() const;
|
|
|
|
void setTypeForParent(int value);
|
|
|
|
|
2014-08-27 12:42:54 +02:00
|
|
|
protected:
|
|
|
|
bool readOnly;
|
2014-08-29 11:19:11 +02:00
|
|
|
int typeForParent;
|
2015-12-09 12:13:34 +01:00
|
|
|
bool clearButton;
|
2016-08-23 20:24:14 +02:00
|
|
|
bool m_osSeparator;
|
|
|
|
|
|
|
|
virtual bool eventFilter(QObject *object, QEvent *event) Q_DECL_OVERRIDE;
|
2014-12-04 12:34:48 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VStringProperty)
|
2014-08-27 12:42:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif // VSTRINGPROPERTY_H
|