bool QDeclarativePropertyPrivate::write(const QDeclarativeProperty &that, const QVariant &value, WriteFlags flags) { if (that.d->object && that.type() & QDeclarativeProperty::Property && that.d->core.isValid() && that.isWritable()) return that.d->writeValueProperty(value, flags); else return false; }
static PyObject *meth_QDeclarativeProperty_type(PyObject *sipSelf, PyObject *sipArgs) { PyObject *sipParseErr = NULL; { QDeclarativeProperty *sipCpp; if (sipParseArgs(&sipParseErr, sipArgs, "B", &sipSelf, sipType_QDeclarativeProperty, &sipCpp)) { QDeclarativeProperty::Type sipRes; Py_BEGIN_ALLOW_THREADS sipRes = sipCpp->type(); Py_END_ALLOW_THREADS return sipConvertFromEnum(sipRes,sipType_QDeclarativeProperty_Type); } }