-
Notifications
You must be signed in to change notification settings - Fork 7
/
attributeitem.h
48 lines (42 loc) · 1.29 KB
/
attributeitem.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef ATTRIBUTEITEM_H
#define ATTRIBUTEITEM_H
#include <QStringList>
#include <QVariant>
#include "branchitem.h"
/*! \brief A key and a value
The data itself is stored in Attribute Definitions (AttributeDef).
A list of these tables AttributeTable is maintained for every MapEditor.
*/
class AttributeItem:public BranchItem {
public:
enum Type {
Undefined, //!< Undefined type
IntList, //!< Integer
FreeInt, //!< Integer
StringList, //!< List of strings
FreeString, //!< String
UniqueString//!< String which is unique in a map, e.g. for IDs
};
AttributeItem(const QList<QVariant> &data, TreeItem *parent = 0);
virtual ~AttributeItem();
void set (const QString &k, const QString &v, const Type &t);
void get (QString &k, QString &v, Type &t);
void setKey (const QString &k);
QString getKey ();
void setValue (const QString &v);
QVariant getValue ();
using BranchItem::setType;
virtual void setType (const Type &t);
AttributeItem::Type getAttributeType ();
QString getTypeString ();
void setInternal (bool b);
bool isInternal();
QString getDataXML();
protected:
void createHeading();
bool internal; //!< Internal attributes cannot be edited by user
QString key;
QVariant value;
Type attrType;
};
#endif