34 QList<OptionalEdit*> editors = editorToProperty.keys();
35 QListIterator<OptionalEdit*> it(editors);
52 SIGNAL(valueChanged(
QtProperty*,
const QVariant&)),
54 SLOT(slotPropertyChanged(
QtProperty*,
const QVariant&)));
56 SIGNAL(attributeChanged(
QtProperty*,
const QString&,
const QVariant&)),
58 SLOT(slotPropertyAttributeChanged(
QtProperty*,
const QString&,
const QVariant&)));
76 ->attributeValue(varProp, QLatin1String(
"PossibleValues"))
89 createdEditors[property].append(editor);
90 editorToProperty[editor] = property;
93 connect(editor, SIGNAL(valueChanged(QString)),
this, SLOT(slotSetValue(
const QString&)));
94 connect(editor, SIGNAL(enabledChanged(
bool)),
this, SLOT(slotSetEnabled(
const bool&)));
95 connect(editor, SIGNAL(destroyed(QObject*)),
this, SLOT(slotEditorDestroyed(QObject*)));
105 SIGNAL(valueChanged(
QtProperty*,
const QVariant&)),
107 SLOT(slotPropertyChanged(
QtProperty*,
const QVariant&)));
109 SIGNAL(attributeChanged(
QtProperty*,
const QString&,
const QVariant&)),
111 SLOT(slotPropertyAttributeChanged(
QtProperty*,
const QString&,
const QVariant&)));
116 OptionalVariantFactory::slotPropertyChanged(
QtProperty* property,
const QVariant&
value)
118 if (!createdEditors.contains(property))
123 QList<OptionalEdit*> editors = createdEditors[property];
124 QListIterator<OptionalEdit*> itEditor(editors);
125 while (itEditor.hasNext())
127 itEditor.next()->setValue(
value.toString());
132 OptionalVariantFactory::slotPropertyAttributeChanged(
QtProperty* property,
133 const QString& attribute,
134 const QVariant&
value)
136 if (!createdEditors.contains(property))
141 if (attribute == QLatin1String(
"enabled"))
143 QList<OptionalEdit*> editors = createdEditors[property];
144 QListIterator<OptionalEdit*> itEditor(editors);
145 while (itEditor.hasNext())
147 itEditor.next()->setPropertyEnabled(
value.toBool());
151 if (attribute == QLatin1String(
"readOnly"))
153 QList<OptionalEdit*> editors = createdEditors[property];
154 QListIterator<OptionalEdit*> itEditor(editors);
155 while (itEditor.hasNext())
157 itEditor.next()->setReadOnly(
value.toBool());
163 OptionalVariantFactory::slotSetValue(
const QString&
value)
165 QObject*
object = sender();
166 QMap<OptionalEdit*, QtProperty*>::ConstIterator itEditor = editorToProperty.constBegin();
167 while (itEditor != editorToProperty.constEnd())
169 if (itEditor.key() ==
object)
186 OptionalVariantFactory::slotSetEnabled(
const bool&
value)
188 QObject*
object = sender();
189 QMap<OptionalEdit*, QtProperty*>::ConstIterator itEditor = editorToProperty.constBegin();
190 while (itEditor != editorToProperty.constEnd())
192 if (itEditor.key() ==
object)
209 OptionalVariantFactory::slotEditorDestroyed(QObject*
object)
211 QMap<OptionalEdit*, QtProperty*>::ConstIterator itEditor = editorToProperty.constBegin();
212 while (itEditor != editorToProperty.constEnd())
214 if (itEditor.key() ==
object)
218 editorToProperty.remove(editor);
219 createdEditors[property].removeAll(editor);
220 if (createdEditors[property].isEmpty())
222 createdEditors.remove(property);