Lines Matching refs:xSet

1440                 Reference< XPropertySet >  xSet(xControl->getModel(), UNO_QUERY);  in toggleAutoFields()  local
1441 if (xSet.is() && ::comphelper::hasProperty(FM_PROP_BOUNDFIELD, xSet)) in toggleAutoFields()
1445 xSet->getPropertyValue(FM_PROP_BOUNDFIELD) >>= xField; in toggleAutoFields()
1468 Reference< XPropertySet > xSet(xControl->getModel(), UNO_QUERY); in toggleAutoFields() local
1469 if (xSet.is() && ::comphelper::hasProperty(FM_PROP_BOUNDFIELD, xSet)) in toggleAutoFields()
1473 xSet->getPropertyValue(FM_PROP_BOUNDFIELD) >>= xField; in toggleAutoFields()
1482 … OSL_VERIFY( xSet->getPropertyValue( FM_PROP_DEFAULTCONTROL ) >>= sServiceName ); in toggleAutoFields()
2242 Reference< XPropertySet > xSet(xControl->getModel(), UNO_QUERY); in setControlLock() local
2243 if (xSet.is() && ::comphelper::hasProperty(FM_PROP_BOUNDFIELD, xSet)) in setControlLock()
2247 if (::comphelper::hasProperty(FM_PROP_ENABLED, xSet)) in setControlLock()
2248 bTouch = ::comphelper::getBOOL(xSet->getPropertyValue(FM_PROP_ENABLED)); in setControlLock()
2249 if (::comphelper::hasProperty(FM_PROP_READONLY, xSet)) in setControlLock()
2250 bTouch = !::comphelper::getBOOL(xSet->getPropertyValue(FM_PROP_READONLY)); in setControlLock()
2255 xSet->getPropertyValue(FM_PROP_BOUNDFIELD) >>= xField; in setControlLock()
2619 Reference< XPropertySet > xSet(xForm, UNO_QUERY); in loaded() local
2620 if (xSet.is()) in loaded()
2622 Any aVal = xSet->getPropertyValue(FM_PROP_CYCLE); in loaded()
2626 m_bCanUpdate = aStaticTools.canUpdate(xSet); in loaded()
2627 m_bCanInsert = aStaticTools.canInsert(xSet); in loaded()
2628 … m_bCurrentRecordModified = ::comphelper::getBOOL(xSet->getPropertyValue(FM_PROP_ISMODIFIED)); in loaded()
2629 m_bCurrentRecordNew = ::comphelper::getBOOL(xSet->getPropertyValue(FM_PROP_ISNEW)); in loaded()
2631 startFormListening( xSet, sal_False ); in loaded()
2751 Reference< XPropertySet > xSet( m_xModelAsIndex, UNO_QUERY ); in unload() local
2752 if ( m_bDBConnection && xSet.is() ) in unload()
2753 stopFormListening( xSet, sal_False ); in unload()
2902 Reference< XPropertySet > xSet(xControl->getModel(), UNO_QUERY); in elementInserted() local
2903 if (xSet.is() && ::comphelper::hasProperty(FM_PROP_BOUNDFIELD, xSet)) in elementInserted()
2907 xSet->getPropertyValue(FM_PROP_BOUNDFIELD) >>= xField; in elementInserted()
3124 Reference< XPropertySet > xSet( xForm, UNO_QUERY ); in setFilter() local
3125 …::rtl::OUString sStatement = ::comphelper::getString( xSet->getPropertyValue( FM_PROP_ACTIVECOMMAN… in setFilter()
3126 ::rtl::OUString sFilter = ::comphelper::getString( xSet->getPropertyValue( FM_PROP_FILTER ) ); in setFilter()
3185 Reference< XPropertySet > xSet; in setFilter() local
3191 xQueryColumns->getByName(pRefValues[j].Name) >>= xSet; in setFilter()
3194 xSet->getPropertyValue(::rtl::OUString::createFromAscii("RealName")) >>= aRealName; in setFilter()
3198 xField = xSet; in setFilter()
3206 xColumnsByIndex->getByIndex(n) >>= xSet; in setFilter()
3207 xSet->getPropertyValue(::rtl::OUString::createFromAscii("RealName")) >>= aRealName; in setFilter()
3211 xField = xSet; in setFilter()
3346 Reference< XPropertySet > xSet(xSubControl->getModel(), UNO_QUERY); in startFiltering() local
3347 if (xSet.is() && ::comphelper::hasProperty(FM_PROP_BOUNDFIELD, xSet)) in startFiltering()
3351 xSet->getPropertyValue(FM_PROP_BOUNDFIELD) >>= xField; in startFiltering()
3413 Reference< XPropertySet > xSet( m_xModelAsIndex, UNO_QUERY ); in startFiltering() local
3414 if ( xSet.is() ) in startFiltering()
3415 stopFormListening( xSet, sal_True ); in startFiltering()
3468 Reference< XPropertySet > xSet(xControl->getModel(), UNO_QUERY); in stopFiltering() local
3469 if (xSet.is() && ::comphelper::hasProperty(FM_PROP_BOUNDFIELD, xSet)) in stopFiltering()
3473 xSet->getPropertyValue(FM_PROP_BOUNDFIELD) >>= xField; in stopFiltering()
3482 OSL_VERIFY( xSet->getPropertyValue( FM_PROP_DEFAULTCONTROL ) >>= sServiceName ); in stopFiltering()
3490 Reference< XPropertySet > xSet( m_xModelAsIndex, UNO_QUERY ); in stopFiltering() local
3491 if ( xSet.is() ) in stopFiltering()
3492 startFormListening( xSet, sal_True ); in stopFiltering()