115 // integrate the `Form Editor component' |
115 // integrate the `Form Editor component' |
116 // |
116 // |
117 |
117 |
118 // Extensions |
118 // Extensions |
119 if (QDesignerPropertyEditor *designerPropertyEditor= qobject_cast<QDesignerPropertyEditor *>(core()->propertyEditor())) { |
119 if (QDesignerPropertyEditor *designerPropertyEditor= qobject_cast<QDesignerPropertyEditor *>(core()->propertyEditor())) { |
120 connect(designerPropertyEditor, SIGNAL(propertyValueChanged(QString, QVariant, bool)), this, SLOT(updateProperty(QString, QVariant, bool))); |
120 connect(designerPropertyEditor, SIGNAL(propertyValueChanged(QString,QVariant,bool)), this, SLOT(updateProperty(QString,QVariant,bool))); |
121 connect(designerPropertyEditor, SIGNAL(resetProperty(QString)), this, SLOT(resetProperty(QString))); |
121 connect(designerPropertyEditor, SIGNAL(resetProperty(QString)), this, SLOT(resetProperty(QString))); |
122 connect(designerPropertyEditor, SIGNAL(addDynamicProperty(QString,QVariant)), |
122 connect(designerPropertyEditor, SIGNAL(addDynamicProperty(QString,QVariant)), |
123 this, SLOT(addDynamicProperty(QString,QVariant))); |
123 this, SLOT(addDynamicProperty(QString,QVariant))); |
124 connect(designerPropertyEditor, SIGNAL(removeDynamicProperty(QString)), |
124 connect(designerPropertyEditor, SIGNAL(removeDynamicProperty(QString)), |
125 this, SLOT(removeDynamicProperty(QString))); |
125 this, SLOT(removeDynamicProperty(QString))); |