Newer
Older
Roman Tolchenov
committed
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
QtProperty *pointSizeProp = d_ptr->m_propertyToPointSize[property];
if (pointSizeProp) {
d_ptr->m_pointSizeToProperty.remove(pointSizeProp);
delete pointSizeProp;
}
d_ptr->m_propertyToPointSize.remove(property);
QtProperty *boldProp = d_ptr->m_propertyToBold[property];
if (boldProp) {
d_ptr->m_boldToProperty.remove(boldProp);
delete boldProp;
}
d_ptr->m_propertyToBold.remove(property);
QtProperty *italicProp = d_ptr->m_propertyToItalic[property];
if (italicProp) {
d_ptr->m_italicToProperty.remove(italicProp);
delete italicProp;
}
d_ptr->m_propertyToItalic.remove(property);
QtProperty *underlineProp = d_ptr->m_propertyToUnderline[property];
if (underlineProp) {
d_ptr->m_underlineToProperty.remove(underlineProp);
delete underlineProp;
}
d_ptr->m_propertyToUnderline.remove(property);
QtProperty *strikeOutProp = d_ptr->m_propertyToStrikeOut[property];
if (strikeOutProp) {
d_ptr->m_strikeOutToProperty.remove(strikeOutProp);
delete strikeOutProp;
}
d_ptr->m_propertyToStrikeOut.remove(property);
QtProperty *kerningProp = d_ptr->m_propertyToKerning[property];
if (kerningProp) {
d_ptr->m_kerningToProperty.remove(kerningProp);
delete kerningProp;
}
d_ptr->m_propertyToKerning.remove(property);
d_ptr->m_values.remove(property);
}
// QtColorPropertyManager
class QtColorPropertyManagerPrivate
{
QtColorPropertyManager *q_ptr;
Q_DECLARE_PUBLIC(QtColorPropertyManager)
public:
void slotIntChanged(QtProperty *property, int value);
void slotPropertyDestroyed(QtProperty *property);
typedef QMap<const QtProperty *, QColor> PropertyValueMap;
PropertyValueMap m_values;
QtIntPropertyManager *m_intPropertyManager;
QMap<const QtProperty *, QtProperty *> m_propertyToR;
QMap<const QtProperty *, QtProperty *> m_propertyToG;
QMap<const QtProperty *, QtProperty *> m_propertyToB;
QMap<const QtProperty *, QtProperty *> m_propertyToA;
QMap<const QtProperty *, QtProperty *> m_rToProperty;
QMap<const QtProperty *, QtProperty *> m_gToProperty;
QMap<const QtProperty *, QtProperty *> m_bToProperty;
QMap<const QtProperty *, QtProperty *> m_aToProperty;
};
void QtColorPropertyManagerPrivate::slotIntChanged(QtProperty *property, int value)
{
if (QtProperty *prop = m_rToProperty.value(property, 0)) {
QColor c = m_values[prop];
c.setRed(value);
q_ptr->setValue(prop, c);
} else if (QtProperty *prop = m_gToProperty.value(property, 0)) {
QColor c = m_values[prop];
c.setGreen(value);
q_ptr->setValue(prop, c);
} else if (QtProperty *prop = m_bToProperty.value(property, 0)) {
QColor c = m_values[prop];
c.setBlue(value);
q_ptr->setValue(prop, c);
} else if (QtProperty *prop = m_aToProperty.value(property, 0)) {
QColor c = m_values[prop];
c.setAlpha(value);
q_ptr->setValue(prop, c);
}
}
void QtColorPropertyManagerPrivate::slotPropertyDestroyed(QtProperty *property)
{
if (QtProperty *pointProp = m_rToProperty.value(property, 0)) {
m_propertyToR[pointProp] = 0;
m_rToProperty.remove(property);
} else if (QtProperty *pointProp = m_gToProperty.value(property, 0)) {
m_propertyToG[pointProp] = 0;
m_gToProperty.remove(property);
} else if (QtProperty *pointProp = m_bToProperty.value(property, 0)) {
m_propertyToB[pointProp] = 0;
m_bToProperty.remove(property);
} else if (QtProperty *pointProp = m_aToProperty.value(property, 0)) {
m_propertyToA[pointProp] = 0;
m_aToProperty.remove(property);
}
}
/*!
\class QtColorPropertyManager
\brief The QtColorPropertyManager provides and manages QColor properties.
A color property has nested \e red, \e green and \e blue
subproperties. The top-level property's value can be retrieved
using the value() function, and set using the setValue() slot.
The subproperties are created by a QtIntPropertyManager object. This
manager can be retrieved using the subIntPropertyManager() function. In
order to provide editing widgets for the subproperties in a
property browser widget, this manager must be associated with an
editor factory.
In addition, QtColorPropertyManager provides the valueChanged() signal
which is emitted whenever a property created by this manager
changes.
\sa QtAbstractPropertyManager, QtAbstractPropertyBrowser, QtIntPropertyManager
*/
/*!
\fn void QtColorPropertyManager::valueChanged(QtProperty *property, const QColor &value)
This signal is emitted whenever a property created by this manager
changes its value, passing a pointer to the \a property and the new
\a value as parameters.
\sa setValue()
*/
/*!
Creates a manager with the given \a parent.
*/
QtColorPropertyManager::QtColorPropertyManager(QObject *parent)
: QtAbstractPropertyManager(parent)
{
d_ptr = new QtColorPropertyManagerPrivate;
d_ptr->q_ptr = this;
d_ptr->m_intPropertyManager = new QtIntPropertyManager(this);
connect(d_ptr->m_intPropertyManager, SIGNAL(valueChanged(QtProperty *, int)),
this, SLOT(slotIntChanged(QtProperty *, int)));
connect(d_ptr->m_intPropertyManager, SIGNAL(propertyDestroyed(QtProperty *)),
this, SLOT(slotPropertyDestroyed(QtProperty *)));
}
/*!
Destroys this manager, and all the properties it has created.
*/
QtColorPropertyManager::~QtColorPropertyManager()
{
clear();
delete d_ptr;
}
/*!
Returns the manager that produces the nested \e red, \e green and
\e blue subproperties.
In order to provide editing widgets for the subproperties in a
property browser widget, this manager must be associated with an
editor factory.
\sa QtAbstractPropertyBrowser::setFactoryForManager()
*/
QtIntPropertyManager *QtColorPropertyManager::subIntPropertyManager() const
{
return d_ptr->m_intPropertyManager;
}
/*!
Returns the given \a property's value.
If the given \a property is not managed by \e this manager, this
function returns an invalid color.
\sa setValue()
*/
QColor QtColorPropertyManager::value(const QtProperty *property) const
{
return d_ptr->m_values.value(property, QColor());
}
/*!
\reimp
*/
QString QtColorPropertyManager::valueText(const QtProperty *property) const
{
const QtColorPropertyManagerPrivate::PropertyValueMap::const_iterator it = d_ptr->m_values.constFind(property);
if (it == d_ptr->m_values.constEnd())
return QString();
return QtPropertyBrowserUtils::colorValueText(it.value());
}
/*!
\reimp
*/
QIcon QtColorPropertyManager::valueIcon(const QtProperty *property) const
{
const QtColorPropertyManagerPrivate::PropertyValueMap::const_iterator it = d_ptr->m_values.constFind(property);
if (it == d_ptr->m_values.constEnd())
return QIcon();
return QtPropertyBrowserUtils::brushValueIcon(QBrush(it.value()));
}
/*!
\fn void QtColorPropertyManager::setValue(QtProperty *property, const QColor &value)
Sets the value of the given \a property to \a value. Nested
properties are updated automatically.
\sa value(), valueChanged()
*/
void QtColorPropertyManager::setValue(QtProperty *property, const QColor &val)
{
const QtColorPropertyManagerPrivate::PropertyValueMap::iterator it = d_ptr->m_values.find(property);
if (it == d_ptr->m_values.end())
return;
if (it.value() == val)
return;
it.value() = val;
d_ptr->m_intPropertyManager->setValue(d_ptr->m_propertyToR[property], val.red());
d_ptr->m_intPropertyManager->setValue(d_ptr->m_propertyToG[property], val.green());
d_ptr->m_intPropertyManager->setValue(d_ptr->m_propertyToB[property], val.blue());
d_ptr->m_intPropertyManager->setValue(d_ptr->m_propertyToA[property], val.alpha());
emit propertyChanged(property);
emit valueChanged(property, val);
}
/*!
\reimp
*/
void QtColorPropertyManager::initializeProperty(QtProperty *property)
{
QColor val;
d_ptr->m_values[property] = val;
QtProperty *rProp = d_ptr->m_intPropertyManager->addProperty();
rProp->setPropertyName(tr("Red"));
d_ptr->m_intPropertyManager->setValue(rProp, val.red());
d_ptr->m_intPropertyManager->setRange(rProp, 0, 0xFF);
d_ptr->m_propertyToR[property] = rProp;
d_ptr->m_rToProperty[rProp] = property;
property->addSubProperty(rProp);
QtProperty *gProp = d_ptr->m_intPropertyManager->addProperty();
gProp->setPropertyName(tr("Green"));
d_ptr->m_intPropertyManager->setValue(gProp, val.green());
d_ptr->m_intPropertyManager->setRange(gProp, 0, 0xFF);
d_ptr->m_propertyToG[property] = gProp;
d_ptr->m_gToProperty[gProp] = property;
property->addSubProperty(gProp);
QtProperty *bProp = d_ptr->m_intPropertyManager->addProperty();
bProp->setPropertyName(tr("Blue"));
d_ptr->m_intPropertyManager->setValue(bProp, val.blue());
d_ptr->m_intPropertyManager->setRange(bProp, 0, 0xFF);
d_ptr->m_propertyToB[property] = bProp;
d_ptr->m_bToProperty[bProp] = property;
property->addSubProperty(bProp);
QtProperty *aProp = d_ptr->m_intPropertyManager->addProperty();
aProp->setPropertyName(tr("Alpha"));
d_ptr->m_intPropertyManager->setValue(aProp, val.alpha());
d_ptr->m_intPropertyManager->setRange(aProp, 0, 0xFF);
d_ptr->m_propertyToA[property] = aProp;
d_ptr->m_aToProperty[aProp] = property;
property->addSubProperty(aProp);
}
/*!
\reimp
*/
void QtColorPropertyManager::uninitializeProperty(QtProperty *property)
{
QtProperty *rProp = d_ptr->m_propertyToR[property];
if (rProp) {
d_ptr->m_rToProperty.remove(rProp);
delete rProp;
}
d_ptr->m_propertyToR.remove(property);
QtProperty *gProp = d_ptr->m_propertyToG[property];
if (gProp) {
d_ptr->m_gToProperty.remove(gProp);
delete gProp;
}
d_ptr->m_propertyToG.remove(property);
QtProperty *bProp = d_ptr->m_propertyToB[property];
if (bProp) {
d_ptr->m_bToProperty.remove(bProp);
delete bProp;
}
d_ptr->m_propertyToB.remove(property);
QtProperty *aProp = d_ptr->m_propertyToA[property];
if (aProp) {
d_ptr->m_aToProperty.remove(aProp);
delete aProp;
}
d_ptr->m_propertyToA.remove(property);
d_ptr->m_values.remove(property);
}
// QtCursorPropertyManager
Q_GLOBAL_STATIC(QtCursorDatabase, cursorDatabase)
class QtCursorPropertyManagerPrivate
{
QtCursorPropertyManager *q_ptr;
Q_DECLARE_PUBLIC(QtCursorPropertyManager)
public:
typedef QMap<const QtProperty *, QCursor> PropertyValueMap;
PropertyValueMap m_values;
};
/*!
\class QtCursorPropertyManager
\brief The QtCursorPropertyManager provides and manages QCursor properties.
A cursor property has a current value which can be
retrieved using the value() function, and set using the setValue()
slot. In addition, QtCursorPropertyManager provides the
valueChanged() signal which is emitted whenever a property created
by this manager changes.
\sa QtAbstractPropertyManager
*/
/*!
\fn void QtCursorPropertyManager::valueChanged(QtProperty *property, const QCursor &value)
This signal is emitted whenever a property created by this manager
changes its value, passing a pointer to the \a property and the new
\a value as parameters.
\sa setValue()
*/
/*!
Creates a manager with the given \a parent.
*/
QtCursorPropertyManager::QtCursorPropertyManager(QObject *parent)
: QtAbstractPropertyManager(parent)
{
d_ptr = new QtCursorPropertyManagerPrivate;
d_ptr->q_ptr = this;
}
/*!
Destroys this manager, and all the properties it has created.
*/
QtCursorPropertyManager::~QtCursorPropertyManager()
{
clear();
delete d_ptr;
}
/*!
Returns the given \a property's value.
If the given \a property is not managed by this manager, this
function returns a default QCursor object.
\sa setValue()
*/
#ifndef QT_NO_CURSOR
QCursor QtCursorPropertyManager::value(const QtProperty *property) const
{
return d_ptr->m_values.value(property, QCursor());
}
#endif
/*!
\reimp
*/
QString QtCursorPropertyManager::valueText(const QtProperty *property) const
{
const QtCursorPropertyManagerPrivate::PropertyValueMap::const_iterator it = d_ptr->m_values.constFind(property);
if (it == d_ptr->m_values.constEnd())
return QString();
return cursorDatabase()->cursorToShapeName(it.value());
}
/*!
\reimp
*/
QIcon QtCursorPropertyManager::valueIcon(const QtProperty *property) const
{
const QtCursorPropertyManagerPrivate::PropertyValueMap::const_iterator it = d_ptr->m_values.constFind(property);
if (it == d_ptr->m_values.constEnd())
return QIcon();
return cursorDatabase()->cursorToShapeIcon(it.value());
}
/*!
\fn void QtCursorPropertyManager::setValue(QtProperty *property, const QCursor &value)
Sets the value of the given \a property to \a value.
\sa value(), valueChanged()
*/
void QtCursorPropertyManager::setValue(QtProperty *property, const QCursor &value)
{
#ifndef QT_NO_CURSOR
const QtCursorPropertyManagerPrivate::PropertyValueMap::iterator it = d_ptr->m_values.find(property);
if (it == d_ptr->m_values.end())
return;
if (it.value().shape() == value.shape() && value.shape() != Qt::BitmapCursor)
return;
it.value() = value;
emit propertyChanged(property);
emit valueChanged(property, value);
#endif
}
/*!
\reimp
*/
void QtCursorPropertyManager::initializeProperty(QtProperty *property)
{
#ifndef QT_NO_CURSOR
d_ptr->m_values[property] = QCursor();
#endif
}
/*!
\reimp
*/
void QtCursorPropertyManager::uninitializeProperty(QtProperty *property)
{
d_ptr->m_values.remove(property);
}
#if QT_VERSION >= 0x040400
QT_END_NAMESPACE
#endif
#include "moc_qtpropertymanager.cpp"
#include "qtpropertymanager.moc"