QGIS API Documentation  2.14.0-Essen
Public Member Functions | List of all members
QgsPropertyKey Class Reference

QgsPropertyKey node. More...

#include <qgsprojectproperty.h>

Inheritance diagram for QgsPropertyKey:
Inheritance graph
[legend]

Public Member Functions

 QgsPropertyKey (const QString &name="")
 
virtual ~QgsPropertyKey ()
 
QgsPropertyKeyaddKey (const QString &keyName)
 add the given property key More...
 
virtual void clear ()
 reset the QgsProperty key to prestine state More...
 
virtual void clearKeys ()
 delete any sub-nodes More...
 
int count () const
 how many elements are contained within this one? More...
 
void dump (int tabs=0) const override
 Dumps out the keys and values. More...
 
void entryList (QStringList &entries) const
 return keys that do not contain other keys More...
 
QgsPropertyfind (QString &propertyName)
 
bool isEmpty () const
 Does this property not have any subkeys or values? More...
 
virtual bool isKey () const override
 Returns true if is a QgsPropertyKey. More...
 
bool isLeaf () const override
 Returns true if a leaf node A leaf node is a key node that has either no value or a single value. More...
 
virtual bool isValue () const override
 Returns true if is a QgsPropertyValue. More...
 
bool readXML (QDomNode &keyNode) override
 restores property hierarchy to given Dom node More...
 
void removeKey (const QString &keyName)
 remove the given key More...
 
QgsPropertyValuesetValue (const QString &name, const QVariant &value)
 Set the value associated with this key. More...
 
QgsPropertyValuesetValue (const QVariant &value)
 Set the value associated with this key. More...
 
void subkeyList (QStringList &entries) const
 return keys that contain other keys More...
 
QVariant value () const override
 If this key has a value, it will be stored by its name in its properties. More...
 
bool writeXML (const QString &nodeName, QDomElement &element, QDomDocument &document) override
 Property keys will always create a Dom element for itself and then recursively call writeXML for any constituent properties. More...
 
QString name () const
 every key has a name More...
 
QStringname ()
 
- Public Member Functions inherited from QgsProperty
 QgsProperty ()
 
virtual ~QgsProperty ()
 

Detailed Description

QgsPropertyKey node.

Can, itself, contain QgsPropertyKeys and QgsPropertyValues.

The internal QHash, mProperties, maps key names to their respective QgsPropertyValue or next QgsPropertyKey in the key name sequence. The key with the current name should contain its QgsPropertyValue.

E.g., given the key sequence "/foo/bar", "foo" will have a corresponding QgsPropertyKey with a name "foo". It will contain an element in its mProperties that maps to "bar", which is another QgsPropertyKey. The "bar" QgsPropertyKey will, in turn, have an element that maps to itself, i.e. "bar", that will contain a QgsPropertyValue.

Definition at line 188 of file qgsprojectproperty.h.

Constructor & Destructor Documentation

QgsPropertyKey::QgsPropertyKey ( const QString name = "")

Definition at line 267 of file qgsprojectproperty.cpp.

QgsPropertyKey::~QgsPropertyKey ( )
virtual

Definition at line 271 of file qgsprojectproperty.cpp.

Member Function Documentation

QgsPropertyKey* QgsPropertyKey::addKey ( const QString keyName)
inline

add the given property key

Definition at line 210 of file qgsprojectproperty.h.

virtual void QgsPropertyKey::clear ( )
inlinevirtual

reset the QgsProperty key to prestine state

Definition at line 280 of file qgsprojectproperty.h.

virtual void QgsPropertyKey::clearKeys ( )
inlinevirtual

delete any sub-nodes

Definition at line 287 of file qgsprojectproperty.h.

int QgsPropertyKey::count ( ) const
inline

how many elements are contained within this one?

Definition at line 256 of file qgsprojectproperty.h.

void QgsPropertyKey::dump ( int  tabs = 0) const
overridevirtual

Dumps out the keys and values.

Parameters
tabsis number of tabs to print; used for pretty-printing hierarchy

Implements QgsProperty.

Definition at line 290 of file qgsprojectproperty.cpp.

void QgsPropertyKey::entryList ( QStringList entries) const

return keys that do not contain other keys

Return keys that do not contain other keys.

Definition at line 426 of file qgsprojectproperty.cpp.

QgsProperty* QgsPropertyKey::find ( QString propertyName)
inline

Definition at line 293 of file qgsprojectproperty.h.

bool QgsPropertyKey::isEmpty ( ) const
inline

Does this property not have any subkeys or values?

Definition at line 259 of file qgsprojectproperty.h.

virtual bool QgsPropertyKey::isKey ( ) const
inlineoverridevirtual

Returns true if is a QgsPropertyKey.

Implements QgsProperty.

Definition at line 262 of file qgsprojectproperty.h.

bool QgsPropertyKey::isLeaf ( ) const
overridevirtual

Returns true if a leaf node A leaf node is a key node that has either no value or a single value.

A non-leaf node would be a key node with key sub-nodes.

Implements QgsProperty.

Definition at line 457 of file qgsprojectproperty.cpp.

virtual bool QgsPropertyKey::isValue ( ) const
inlineoverridevirtual

Returns true if is a QgsPropertyValue.

Implements QgsProperty.

Definition at line 265 of file qgsprojectproperty.h.

QString QgsPropertyKey::name ( ) const
inline

every key has a name

Definition at line 197 of file qgsprojectproperty.h.

QString& QgsPropertyKey::name ( )
inline

Definition at line 199 of file qgsprojectproperty.h.

bool QgsPropertyKey::readXML ( QDomNode keyNode)
overridevirtual

restores property hierarchy to given Dom node

Used for restoring properties from project file

Implements QgsProperty.

Definition at line 349 of file qgsprojectproperty.cpp.

void QgsPropertyKey::removeKey ( const QString keyName)
inline

remove the given key

Definition at line 220 of file qgsprojectproperty.h.

QgsPropertyValue* QgsPropertyKey::setValue ( const QString name,
const QVariant value 
)
inline

Set the value associated with this key.

Parameters
nameis the key name
valueis the value to set
Returns
pointer to property value

Definition at line 230 of file qgsprojectproperty.h.

QgsPropertyValue* QgsPropertyKey::setValue ( const QVariant value)
inline

Set the value associated with this key.

Note
that the single value node associated with each key is always stored keyed by the current key name

Definition at line 243 of file qgsprojectproperty.h.

void QgsPropertyKey::subkeyList ( QStringList entries) const

return keys that contain other keys

Definition at line 442 of file qgsprojectproperty.cpp.

QVariant QgsPropertyKey::value ( ) const
overridevirtual

If this key has a value, it will be stored by its name in its properties.

Implements QgsProperty.

Definition at line 276 of file qgsprojectproperty.cpp.

bool QgsPropertyKey::writeXML ( const QString nodeName,
QDomElement element,
QDomDocument document 
)
overridevirtual

Property keys will always create a Dom element for itself and then recursively call writeXML for any constituent properties.

Implements QgsProperty.

Definition at line 397 of file qgsprojectproperty.cpp.


The documentation for this class was generated from the following files: