source: trunk/tools/shared/qtpropertybrowser/qtvariantproperty.h@ 158

Last change on this file since 158 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 8.2 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the tools applications of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you are unsure which license is appropriate for your use, please
37** contact the sales department at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#ifndef QTVARIANTPROPERTY_H
43#define QTVARIANTPROPERTY_H
44
45#include "qtpropertybrowser.h"
46#include <QtCore/QVariant>
47#include <QtGui/QIcon>
48
49#if QT_VERSION >= 0x040400
50QT_BEGIN_NAMESPACE
51#endif
52
53typedef QMap<int, QIcon> QtIconMap;
54
55class QtVariantPropertyManager;
56
57class QtVariantProperty : public QtProperty
58{
59public:
60 ~QtVariantProperty();
61 QVariant value() const;
62 QVariant attributeValue(const QString &attribute) const;
63 int valueType() const;
64 int propertyType() const;
65
66 void setValue(const QVariant &value);
67 void setAttribute(const QString &attribute, const QVariant &value);
68protected:
69 QtVariantProperty(QtVariantPropertyManager *manager);
70private:
71 friend class QtVariantPropertyManager;
72 class QtVariantPropertyPrivate *d_ptr;
73};
74
75class QtVariantPropertyManager : public QtAbstractPropertyManager
76{
77 Q_OBJECT
78public:
79 QtVariantPropertyManager(QObject *parent = 0);
80 ~QtVariantPropertyManager();
81
82 virtual QtVariantProperty *addProperty(int propertyType, const QString &name = QString());
83
84 int propertyType(const QtProperty *property) const;
85 int valueType(const QtProperty *property) const;
86 QtVariantProperty *variantProperty(const QtProperty *property) const;
87
88 virtual bool isPropertyTypeSupported(int propertyType) const;
89 virtual int valueType(int propertyType) const;
90 virtual QStringList attributes(int propertyType) const;
91 virtual int attributeType(int propertyType, const QString &attribute) const;
92
93 virtual QVariant value(const QtProperty *property) const;
94 virtual QVariant attributeValue(const QtProperty *property, const QString &attribute) const;
95
96 static int enumTypeId();
97 static int flagTypeId();
98 static int groupTypeId();
99 static int iconMapTypeId();
100public Q_SLOTS:
101 virtual void setValue(QtProperty *property, const QVariant &val);
102 virtual void setAttribute(QtProperty *property,
103 const QString &attribute, const QVariant &value);
104Q_SIGNALS:
105 void valueChanged(QtProperty *property, const QVariant &val);
106 void attributeChanged(QtProperty *property,
107 const QString &attribute, const QVariant &val);
108protected:
109 virtual bool hasValue(const QtProperty *property) const;
110 QString valueText(const QtProperty *property) const;
111 QIcon valueIcon(const QtProperty *property) const;
112 virtual void initializeProperty(QtProperty *property);
113 virtual void uninitializeProperty(QtProperty *property);
114 virtual QtProperty *createProperty();
115private:
116 class QtVariantPropertyManagerPrivate *d_ptr;
117 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, int))
118 Q_PRIVATE_SLOT(d_func(), void slotRangeChanged(QtProperty *, int, int))
119 Q_PRIVATE_SLOT(d_func(), void slotSingleStepChanged(QtProperty *, int))
120 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, double))
121 Q_PRIVATE_SLOT(d_func(), void slotRangeChanged(QtProperty *, double, double))
122 Q_PRIVATE_SLOT(d_func(), void slotSingleStepChanged(QtProperty *, double))
123 Q_PRIVATE_SLOT(d_func(), void slotDecimalsChanged(QtProperty *, int))
124 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, bool))
125 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QString &))
126 Q_PRIVATE_SLOT(d_func(), void slotRegExpChanged(QtProperty *, const QRegExp &))
127 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QDate &))
128 Q_PRIVATE_SLOT(d_func(), void slotRangeChanged(QtProperty *, const QDate &, const QDate &))
129 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QTime &))
130 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QDateTime &))
131 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QKeySequence &))
132 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QChar &))
133 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QLocale &))
134 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QPoint &))
135 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QPointF &))
136 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QSize &))
137 Q_PRIVATE_SLOT(d_func(), void slotRangeChanged(QtProperty *, const QSize &, const QSize &))
138 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QSizeF &))
139 Q_PRIVATE_SLOT(d_func(), void slotRangeChanged(QtProperty *, const QSizeF &, const QSizeF &))
140 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QRect &))
141 Q_PRIVATE_SLOT(d_func(), void slotConstraintChanged(QtProperty *, const QRect &))
142 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QRectF &))
143 Q_PRIVATE_SLOT(d_func(), void slotConstraintChanged(QtProperty *, const QRectF &))
144 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QColor &))
145 Q_PRIVATE_SLOT(d_func(), void slotEnumNamesChanged(QtProperty *, const QStringList &))
146 Q_PRIVATE_SLOT(d_func(), void slotEnumIconsChanged(QtProperty *, const QMap<int, QIcon> &))
147 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QSizePolicy &))
148 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QFont &))
149 Q_PRIVATE_SLOT(d_func(), void slotValueChanged(QtProperty *, const QCursor &))
150 Q_PRIVATE_SLOT(d_func(), void slotFlagNamesChanged(QtProperty *, const QStringList &))
151
152 Q_PRIVATE_SLOT(d_func(), void slotPropertyInserted(QtProperty *, QtProperty *, QtProperty *))
153 Q_PRIVATE_SLOT(d_func(), void slotPropertyRemoved(QtProperty *, QtProperty *))
154 Q_DECLARE_PRIVATE(QtVariantPropertyManager)
155 Q_DISABLE_COPY(QtVariantPropertyManager)
156};
157
158class QtVariantEditorFactory : public QtAbstractEditorFactory<QtVariantPropertyManager>
159{
160 Q_OBJECT
161public:
162 QtVariantEditorFactory(QObject *parent = 0);
163 ~QtVariantEditorFactory();
164protected:
165 void connectPropertyManager(QtVariantPropertyManager *manager);
166 QWidget *createEditor(QtVariantPropertyManager *manager, QtProperty *property,
167 QWidget *parent);
168 void disconnectPropertyManager(QtVariantPropertyManager *manager);
169private:
170 class QtVariantEditorFactoryPrivate *d_ptr;
171 Q_DECLARE_PRIVATE(QtVariantEditorFactory)
172 Q_DISABLE_COPY(QtVariantEditorFactory)
173};
174
175#if QT_VERSION >= 0x040400
176QT_END_NAMESPACE
177#endif
178
179Q_DECLARE_METATYPE(QIcon)
180Q_DECLARE_METATYPE(QtIconMap)
181#endif
Note: See TracBrowser for help on using the repository browser.