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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
// *************************************************************************************************
//
// QPropertyEditor v 0.1
//
// --------------------------------------
// Copyright (C) 2007 Volker Wiendl
//
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or any later version.
//
// 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.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
// *************************************************************************************************
#ifndef QPROPERTYMODEL_H_
#define QPROPERTYMODEL_H_
#include <Qt/qabstractitemmodel.h>
#include <Qt/qmap.h>
#include "QPropertyEditorWidget.h"
class Property;
/**
* The QPropertyModel handles the user defined properties of QObjects
*/
class QPropertyModel : public QAbstractItemModel {
Q_OBJECT
public:
/**
* Constructor
* @param parent optional parent object
*/
QPropertyModel(QObject* parent = 0);
/// Destructor
virtual ~QPropertyModel();
/// QAbstractItemModel implementation
QModelIndex index ( int row, int column, const QModelIndex & parent = QModelIndex() ) const;
/// QAbstractItemModel implementation
QModelIndex parent ( const QModelIndex & index ) const;
/// QAbstractItemModel implementation
int rowCount ( const QModelIndex & parent = QModelIndex() ) const;
/// QAbstractItemModel implementation
int columnCount ( const QModelIndex & parent = QModelIndex() ) const;
/// QAbstractItemModel implementation
QVariant data ( const QModelIndex & index, int role = Qt::DisplayRole ) const;
/// QAbstractItemModel implementation
bool setData ( const QModelIndex & index, const QVariant & value, int role = Qt::EditRole );
/// QAbstractItemModel implementation
Qt::ItemFlags flags ( const QModelIndex & index ) const;
/// QAbstractItemModel implementation
QVariant headerData ( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const;
/// QAbstractItemModel implementation
QModelIndex buddy ( const QModelIndex & index ) const;
/**
* Adds the user properties of the given class to the QPropertyModel instance
*
* @param propertyObject the class inherited from QObject that contains user properties that should be
* managed by this instance
*/
void addItem(QObject* propertyObject);
/**
* Creates a dataChanged signal for the given object
* @param propertyObject the instance of a QObject based class that should be updated
* @param parent optional model index the propertyObject is child of
*/
void updateItem ( QObject* propertyObject, const QModelIndex& parent = QModelIndex() ) ;
/**
* Removes all objects from the model
*/
void clear();
/**
* Sets custom callback that will be used to create Property instances for custom datatypes
*/
void setCustomPropertyCB(QPropertyEditorWidget::UserTypeCB callback);
private:
/// The Root Property for all objects
Property* m_rootItem;
/// Custom callback
QPropertyEditorWidget::UserTypeCB m_userCallback;
};
#endif
|