mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
add possibilities to fill the userProperties
This commit is contained in:
parent
51ed21f9ef
commit
6887c543da
@ -404,11 +404,34 @@ QString PropertiesInterface::orientationToString(Qet::Orientation o) {
|
|||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
void PropertiesInterface::deleteUserProperties()
|
||||||
* \brief PropertiesInterface::propertiesToXml
|
{
|
||||||
* Write all user properties to the DomElement \p e
|
properties.clear();
|
||||||
* \param e
|
}
|
||||||
*/
|
|
||||||
|
int PropertiesInterface::userPropertiesCount() const
|
||||||
|
{
|
||||||
|
return properties.count();
|
||||||
|
}
|
||||||
|
|
||||||
|
void PropertiesInterface::setUserProperty(const QString& key, const QVariant& value)
|
||||||
|
{
|
||||||
|
properties[key] = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool PropertiesInterface::existUserProperty(const QString& key) const
|
||||||
|
{
|
||||||
|
return properties.contains(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariant PropertiesInterface::userPropertyValue(const QString& key)
|
||||||
|
{
|
||||||
|
if (!existUserProperty(key))
|
||||||
|
return QVariant();
|
||||||
|
|
||||||
|
return properties[key];
|
||||||
|
}
|
||||||
|
|
||||||
void PropertiesInterface::propertiesToXml(QDomElement& e) const
|
void PropertiesInterface::propertiesToXml(QDomElement& e) const
|
||||||
{
|
{
|
||||||
if (properties.count() == 0)
|
if (properties.count() == 0)
|
||||||
|
@ -26,52 +26,6 @@
|
|||||||
#include "sources/qet.h"
|
#include "sources/qet.h"
|
||||||
#include <QUuid>
|
#include <QUuid>
|
||||||
|
|
||||||
//struct Property {
|
|
||||||
// enum class Type {
|
|
||||||
// String,
|
|
||||||
// Int,
|
|
||||||
// Double,
|
|
||||||
// Bool,
|
|
||||||
// Uuid,
|
|
||||||
// Color
|
|
||||||
// };
|
|
||||||
// Property(enum Type type, QVariant& value): type(type), value(value) {};
|
|
||||||
// enum Type type;
|
|
||||||
// QVariant value;
|
|
||||||
//};
|
|
||||||
|
|
||||||
//class Property_T
|
|
||||||
//{
|
|
||||||
//public:
|
|
||||||
// enum class Type {
|
|
||||||
// String,
|
|
||||||
// Int,
|
|
||||||
// Double,
|
|
||||||
// Bool,
|
|
||||||
// Uuid,
|
|
||||||
// Color
|
|
||||||
// };
|
|
||||||
// Property_T(enum Type type): mType(type)
|
|
||||||
// {}
|
|
||||||
//public:
|
|
||||||
// enum Type mType;
|
|
||||||
//};
|
|
||||||
|
|
||||||
//class PropertyDouble: Property_T
|
|
||||||
//{
|
|
||||||
//public:
|
|
||||||
// PropertyDouble(double& value): Property_T(Property_T::Type::Double), mValue(value) {};
|
|
||||||
//public:
|
|
||||||
// double mValue;
|
|
||||||
//};
|
|
||||||
|
|
||||||
class DomElement: public QDomElement
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
DomElement(): QDomElement() {};
|
|
||||||
DomElement(QDomElement& e): QDomElement(e) {};
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@brief The PropertiesInterface class
|
@brief The PropertiesInterface class
|
||||||
This class is an interface for have common way
|
This class is an interface for have common way
|
||||||
@ -114,6 +68,48 @@ class PropertiesInterface
|
|||||||
@return true / false
|
@return true / false
|
||||||
*/
|
*/
|
||||||
virtual bool fromXml (const QDomElement &xml_element);
|
virtual bool fromXml (const QDomElement &xml_element);
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief deleteUserProperties
|
||||||
|
* Delete all userproperties
|
||||||
|
*/
|
||||||
|
void deleteUserProperties();
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief userPropertiesCount
|
||||||
|
* Returns the number of user properties
|
||||||
|
* \return
|
||||||
|
*/
|
||||||
|
int userPropertiesCount() const;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief setUserProperty
|
||||||
|
* Adds a new property if \p key does not exist in the \p properties member,
|
||||||
|
* otherwise overwrite the value
|
||||||
|
* \param key
|
||||||
|
* \param value
|
||||||
|
*/
|
||||||
|
void setUserProperty(const QString& key, const QVariant& value);
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief existUserProperty
|
||||||
|
* Checks if a user property with key \p key is available or not
|
||||||
|
* \param key
|
||||||
|
* \return
|
||||||
|
*/
|
||||||
|
bool existUserProperty(const QString& key) const;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief userProperty
|
||||||
|
* Returns the value of a user property with key \p key
|
||||||
|
* If \p key is not found, an invalid QVariant is returned.
|
||||||
|
* Use QVariant::type() to get the type of the vale
|
||||||
|
* \param key
|
||||||
|
* \return
|
||||||
|
*/
|
||||||
|
QVariant userPropertyValue(const QString& key);
|
||||||
|
|
||||||
|
|
||||||
static bool valideXml(QDomElement& element);
|
static bool valideXml(QDomElement& element);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
@ -175,6 +171,11 @@ class PropertiesInterface
|
|||||||
private:
|
private:
|
||||||
virtual void toXmlPriv (QDomElement &e) const =0;
|
virtual void toXmlPriv (QDomElement &e) const =0;
|
||||||
virtual bool fromXmlPriv (const QDomElement &e) =0;
|
virtual bool fromXmlPriv (const QDomElement &e) =0;
|
||||||
|
/*!
|
||||||
|
* \brief PropertiesInterface::propertiesToXml
|
||||||
|
* Write all user properties to the DomElement \p e
|
||||||
|
* \param e
|
||||||
|
*/
|
||||||
void propertiesToXml(QDomElement& e) const;
|
void propertiesToXml(QDomElement& e) const;
|
||||||
bool propertiesFromXml (const QDomElement &e);
|
bool propertiesFromXml (const QDomElement &e);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user