Newer
Older
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
d_ptr->m_enumPropertyManager->setEnumNames(familyProp, d_ptr->m_familyNames);
int idx = d_ptr->m_familyNames.indexOf(val.family());
if (idx == -1)
idx = 0;
d_ptr->m_enumPropertyManager->setValue(familyProp, idx);
d_ptr->m_propertyToFamily[property] = familyProp;
d_ptr->m_familyToProperty[familyProp] = property;
property->addSubProperty(familyProp);
QtProperty *pointSizeProp = d_ptr->m_intPropertyManager->addProperty();
pointSizeProp->setPropertyName(tr("Point Size"));
d_ptr->m_intPropertyManager->setValue(pointSizeProp, val.pointSize());
d_ptr->m_intPropertyManager->setMinimum(pointSizeProp, 1);
d_ptr->m_propertyToPointSize[property] = pointSizeProp;
d_ptr->m_pointSizeToProperty[pointSizeProp] = property;
property->addSubProperty(pointSizeProp);
QtProperty *boldProp = d_ptr->m_boolPropertyManager->addProperty();
boldProp->setPropertyName(tr("Bold"));
d_ptr->m_boolPropertyManager->setValue(boldProp, val.bold());
d_ptr->m_propertyToBold[property] = boldProp;
d_ptr->m_boldToProperty[boldProp] = property;
property->addSubProperty(boldProp);
QtProperty *italicProp = d_ptr->m_boolPropertyManager->addProperty();
italicProp->setPropertyName(tr("Italic"));
d_ptr->m_boolPropertyManager->setValue(italicProp, val.italic());
d_ptr->m_propertyToItalic[property] = italicProp;
d_ptr->m_italicToProperty[italicProp] = property;
property->addSubProperty(italicProp);
QtProperty *underlineProp = d_ptr->m_boolPropertyManager->addProperty();
underlineProp->setPropertyName(tr("Underline"));
d_ptr->m_boolPropertyManager->setValue(underlineProp, val.underline());
d_ptr->m_propertyToUnderline[property] = underlineProp;
d_ptr->m_underlineToProperty[underlineProp] = property;
property->addSubProperty(underlineProp);
QtProperty *strikeOutProp = d_ptr->m_boolPropertyManager->addProperty();
strikeOutProp->setPropertyName(tr("Strikeout"));
d_ptr->m_boolPropertyManager->setValue(strikeOutProp, val.strikeOut());
d_ptr->m_propertyToStrikeOut[property] = strikeOutProp;
d_ptr->m_strikeOutToProperty[strikeOutProp] = property;
property->addSubProperty(strikeOutProp);
QtProperty *kerningProp = d_ptr->m_boolPropertyManager->addProperty();
kerningProp->setPropertyName(tr("Kerning"));
d_ptr->m_boolPropertyManager->setValue(kerningProp, val.kerning());
d_ptr->m_propertyToKerning[property] = kerningProp;
d_ptr->m_kerningToProperty[kerningProp] = property;
property->addSubProperty(kerningProp);
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
void QtFontPropertyManager::uninitializeProperty(QtProperty *property) {
QtProperty *familyProp = d_ptr->m_propertyToFamily[property];
if (familyProp) {
d_ptr->m_familyToProperty.remove(familyProp);
delete familyProp;
}
d_ptr->m_propertyToFamily.remove(property);
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);
class QtColorPropertyManagerPrivate {
QtColorPropertyManager *q_ptr;
Q_DECLARE_PUBLIC(QtColorPropertyManager)
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;
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
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);
}
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
}
/**
\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());
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());
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;
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);
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
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);
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
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)
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());
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) {
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;
emit propertyChanged(property);
emit valueChanged(property, value);
#endif
}
/**
\reimp
*/
void QtCursorPropertyManager::initializeProperty(QtProperty *property) {
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"