/aoo4110/main/embedserv/source/embed/ |
H A D | tracker.cxx | 315 if (nHandle < 0) in SetCursor() 319 nHandle = NormalizeHit(nHandle); in SetCursor() 327 nHandle = (TrackerHit)9; in SetCursor() 341 if (nHandle < 0) in Track() 349 SetCursor(hWnd,nHandle); in Track() 492 if(nHandle == hitMiddle) in AdjustRect() 668 nHandle = NormalizeHit(nHandle); in GetHandleRect() 739 if (nHandle == hitMiddle || nHandle == hitNothing) in NormalizeHit() 740 return nHandle; in NormalizeHit() 749 return nHandle; in NormalizeHit() [all …]
|
/aoo4110/main/comphelper/source/property/ |
H A D | propagg.cxx | 116 sal_Int32 nHandle = -1; in OPropertyArrayAggregationHelper() local 121 if ( -1 == nHandle ) in OPropertyArrayAggregationHelper() 123 nHandle = nAggregateHandle++; in OPropertyArrayAggregationHelper() 130 nHandle = nAggregateHandle++; in OPropertyArrayAggregationHelper() 137 pMergedProps->Handle = nHandle; in OPropertyArrayAggregationHelper() 521 if ( ( nHandle != -1 ) && !isCurrentlyForwardingProperty( nHandle ) ) in propertiesChange() 535 if ( ( nHandle != -1 ) && !isCurrentlyForwardingProperty( nHandle ) ) in propertiesChange() 537 pHandles[nDest] = nHandle; in propertiesChange() 912 if (nHandle == -1) in getPropertyState() 936 if (nHandle == -1) in setPropertyToDefault() [all …]
|
H A D | propstate.cxx | 88 …void OPropertyStateHelper::firePropertyChange(sal_Int32 nHandle, const ::com::sun::star::uno::Any… in firePropertyChange() argument 90 fire(&nHandle, &aNewValue, &aOldValue, 1, sal_False); in firePropertyChange() 98 sal_Int32 nHandle = rPH.getHandleByName(_rsName); in getPropertyState() local 100 if (nHandle == -1) in getPropertyState() 103 return getPropertyStateByHandle(nHandle); in getPropertyState() 110 sal_Int32 nHandle = rPH.getHandleByName(_rsName); in setPropertyToDefault() local 112 if (nHandle == -1) in setPropertyToDefault() 115 setPropertyToDefaultByHandle(nHandle); in setPropertyToDefault() 122 sal_Int32 nHandle = rPH.getHandleByName(_rsName); in getPropertyDefault() local 124 if (nHandle == -1) in getPropertyDefault() [all …]
|
/aoo4110/main/chart2/source/controller/chartapiwrapper/ |
H A D | TitleWrapper.cxx | 326 OSL_ASSERT( FAST_PROPERTY_ID_START_CHAR_PROP <= nHandle && in getFastCharacterPropertyValue() 340 rValue = xFastProp->getFastPropertyValue( nHandle ); in getFastCharacterPropertyValue() 347 sal_Int32 nHandle, const Any& rValue ) throw (uno::Exception) in setFastCharacterPropertyValue() argument 349 OSL_ASSERT( FAST_PROPERTY_ID_START_CHAR_PROP <= nHandle && in setFastCharacterPropertyValue() 378 if( CharacterProperties::IsCharacterPropertyHandle( nHandle ) ) in setPropertyValue() 380 setFastCharacterPropertyValue( nHandle, rValue ); in setPropertyValue() 391 if( CharacterProperties::IsCharacterPropertyHandle( nHandle ) ) in getPropertyValue() 392 getFastCharacterPropertyValue( nHandle, aRet ); in getPropertyValue() 404 if( CharacterProperties::IsCharacterPropertyHandle( nHandle ) ) in getPropertyState() 425 if( CharacterProperties::IsCharacterPropertyHandle( nHandle ) ) in setPropertyToDefault() [all …]
|
/aoo4110/main/forms/source/xforms/ |
H A D | propertysetbase.cxx | 102 void PropertySetBase::notifyAndCachePropertyValue( sal_Int32 nHandle ) in notifyAndCachePropertyValue() argument 106 PropertyValueCache::iterator aPos = m_aCache.find( nHandle ); in notifyAndCachePropertyValue() 129 getFastPropertyValue( aNewValue, nHandle ); in notifyAndCachePropertyValue() 135 firePropertyChange( nHandle, aNewValue, aOldValue ); in notifyAndCachePropertyValue() 138 void PropertySetBase::initializePropertyValueCache( sal_Int32 nHandle ) in initializePropertyValueCache() argument 141 getFastPropertyValue( aCurrentValue, nHandle ); in initializePropertyValueCache() 146 m_aCache.insert( PropertyValueCache::value_type( nHandle, aCurrentValue ) ); in initializePropertyValueCache() 152 PropertyAccessors::const_iterator aPropertyPos = m_aAccessors.find( nHandle ); in locatePropertyHandler() 164 PropertyAccessorBase& rAccessor = locatePropertyHandler( nHandle ); in convertFastPropertyValue() 180 PropertyAccessorBase& rAccessor = locatePropertyHandler( nHandle ); in setFastPropertyValue_NoBroadcast() [all …]
|
H A D | propertysetbase.hxx | 246 void notifyAndCachePropertyValue( sal_Int32 nHandle ); 266 void initializePropertyValueCache( sal_Int32 nHandle ); 271 virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const Any_t& rValue ) 273 virtual void SAL_CALL getFastPropertyValue( Any_t& rValue, sal_Int32 nHandle ) const; 287 …inline void getCurrentPropertyValueByHandle( sal_Int32 nHandle, Any_t& /* [out] */ rValue, const N… in getCurrentPropertyValueByHandle() argument 289 getFastPropertyValue( rValue, nHandle ); in getCurrentPropertyValueByHandle() 294 …inline void notifyPropertyChange( sal_Int32 nHandle, const Any_t& rOldValue, const Any_t& rNewValu… in notifyPropertyChange() argument 296 const_cast< PropertySetBase* >( this )->firePropertyChange( nHandle, rNewValue, rOldValue ); in notifyPropertyChange() 308 PropertyAccessorBase& locatePropertyHandler( sal_Int32 nHandle ) const; 343 inline PropertyChangeNotifier( const PropertySetBase& rPropertySet, sal_Int32 nHandle ) in PropertyChangeNotifier() [all …]
|
/aoo4110/main/sd/source/ui/animations/ |
H A D | STLPropertySet.cxx | 48 maPropertyMap[ nHandle ] = aEntry; in setPropertyDefaultValue() 54 if( findProperty( nHandle, aIter ) ) in setPropertyValue() 65 Any STLPropertySet::getPropertyValue( sal_Int32 nHandle ) const in getPropertyValue() 68 if( findProperty( nHandle, aIter ) ) in getPropertyValue() 81 sal_Int32 STLPropertySet::getPropertyState( sal_Int32 nHandle ) const in getPropertyState() 84 if( findProperty( nHandle, aIter ) ) in getPropertyState() 95 void STLPropertySet::setPropertyState( sal_Int32 nHandle, sal_Int32 nState ) in setPropertyState() argument 98 if( findProperty( nHandle, aIter ) ) in setPropertyState() 108 bool STLPropertySet::findProperty( sal_Int32 nHandle, PropertyMapIter& rIter ) in findProperty() argument 110 rIter = maPropertyMap.find(nHandle); in findProperty() [all …]
|
H A D | STLPropertySet.hxx | 65 void setPropertyDefaultValue( sal_Int32 nHandle, const com::sun::star::uno::Any& rValue ); 66 …void setPropertyValue( sal_Int32 nHandle, const com::sun::star::uno::Any& rValue, sal_Int32 nState… 67 ::com::sun::star::uno::Any getPropertyValue( sal_Int32 nHandle ) const; 69 sal_Int32 getPropertyState( sal_Int32 nHandle ) const; 70 void setPropertyState( sal_Int32 nHandle, sal_Int32 nState ); 73 bool findProperty( sal_Int32 nHandle, PropertyMapIter& rIter ); 74 bool findProperty( sal_Int32 nHandle, PropertyMapConstIter& rIter ) const;
|
/aoo4110/main/dbaccess/source/core/api/ |
H A D | definitioncolumn.cxx | 126 OColumn::setFastPropertyValue_NoBroadcast( nHandle, rValue ); in setFastPropertyValue_NoBroadcast() 220 sal_Int32 nHandle; in OQueryColumn() member 395 if ( OColumn::isRegisteredProperty( nHandle ) ) in getFastPropertyValue() 397 OColumn::getFastPropertyValue( rValue, nHandle ); in getFastPropertyValue() 410 if ( OColumn::isRegisteredProperty( nHandle ) ) in convertFastPropertyValue() 416 getFastPropertyValue( rOldValue, nHandle ); in convertFastPropertyValue() 429 if ( OColumn::isRegisteredProperty( nHandle ) ) in setFastPropertyValue_NoBroadcast() 431 OColumn::setFastPropertyValue_NoBroadcast( nHandle, rValue ); in setFastPropertyValue_NoBroadcast() 565 OColumnWrapper::getFastPropertyValue( rValue, nHandle ); in getFastPropertyValue() 596 sal_Int32 nHandle, in setFastPropertyValue_NoBroadcast() argument [all …]
|
H A D | CRowSetDataColumn.cxx | 134 if ( PROPERTY_ID_VALUE == nHandle ) in getFastPropertyValue() 147 else if ( PROPERTY_ID_LABEL == nHandle && m_sLabel.getLength() ) in getFastPropertyValue() 150 ODataColumn::getFastPropertyValue( rValue, nHandle ); in getFastPropertyValue() 156 switch( nHandle ) in setFastPropertyValue_NoBroadcast() 169 ODataColumn::setFastPropertyValue_NoBroadcast( nHandle,rValue ); in setFastPropertyValue_NoBroadcast() 176 sal_Int32 nHandle, in convertFastPropertyValue() argument 180 switch( nHandle ) in convertFastPropertyValue() 223 sal_Int32 nHandle = PROPERTY_ID_VALUE; in fireValueChange() local 227 fire(&nHandle, &aNew, &m_aOldValue, 1, sal_False ); in fireValueChange() 231 sal_Int32 nHandle = PROPERTY_ID_VALUE; in fireValueChange() local [all …]
|
/aoo4110/main/cppuhelper/source/ |
H A D | propshlp.cxx | 258 setFastPropertyValue( nHandle, rValue ); in setPropertyValue() 271 return getFastPropertyValue( nHandle ); in getPropertyValue() 295 if( nHandle == -1 ) { in addPropertyChangeListener() 341 if( nHandle == -1 ) in removePropertyChangeListener() 377 if( nHandle == -1 ) { in addVetoableChangeListener() 421 if( nHandle == -1 ) { in removeVetoableChangeListener() 572 getFastPropertyValue( aRet, nHandle ); in getFastPropertyValue() 1156 sal_Int32 nHandle in fillPropertyMembersByHandle() argument 1164 if( nHandle < 0 || nHandle >= nElements ) in fillPropertyMembersByHandle() 1167 *pPropName = pProperties[ nHandle ].Name; in fillPropertyMembersByHandle() [all …]
|
/aoo4110/main/chart2/source/tools/ |
H A D | OPropertySet.cxx | 299 sal_Int32 nHandle, in convertFastPropertyValue() argument 303 getFastPropertyValue( rOldValue, nHandle ); in convertFastPropertyValue() 331 ( sal_Int32 nHandle, in setFastPropertyValue_NoBroadcast() argument 340 rPH.fillPropertyMembersByHandle( &aName, 0, nHandle ); in setFastPropertyValue_NoBroadcast() 349 aDefault = GetDefaultValue( nHandle ); in setFastPropertyValue_NoBroadcast() 355 m_pImplProperties->SetPropertyValueByHandle( nHandle, rValue ); in setFastPropertyValue_NoBroadcast() 357 m_pImplProperties->SetPropertyToDefault( nHandle ); in setFastPropertyValue_NoBroadcast() 364 sal_Int32 nHandle ) const in getFastPropertyValue() 400 OSL_ENSURE( nHandle == aProp.Handle, in getFastPropertyValue() 403 if( nHandle == aProp.Handle ) in getFastPropertyValue() [all …]
|
H A D | ImplOPropertySet.cxx | 51 inline beans::PropertyState operator() ( sal_Int32 nHandle ) in operator ()() 53 if( m_rMap.end() == m_rMap.find( nHandle )) in operator ()() 112 beans::PropertyState ImplOPropertySet::GetPropertyStateByHandle( sal_Int32 nHandle ) const in GetPropertyStateByHandle() 114 return lcl_getPropertyStateByHandle( m_aProperties ) ( nHandle ); in GetPropertyStateByHandle() 129 void ImplOPropertySet::SetPropertyToDefault( sal_Int32 nHandle ) in SetPropertyToDefault() argument 131 tPropertyMap::iterator aFoundIter( m_aProperties.find( nHandle ) ); in SetPropertyToDefault() 153 sal_Int32 nHandle ) const in GetPropertyValueByHandle() 157 tPropertyMap::const_iterator aFoundIter( m_aProperties.find( nHandle ) ); in GetPropertyValueByHandle() 169 sal_Int32 nHandle, const Any & rValue, Any * pOldValue ) in SetPropertyValueByHandle() argument 173 tPropertyMap::const_iterator aFoundIter( m_aProperties.find( nHandle ) ); in SetPropertyValueByHandle() [all …]
|
H A D | WrappedPropertySet.cxx | 112 sal_Int32 nHandle = getInfoHelper().getHandleByName( rPropertyName ); in setPropertyValue() local 113 const WrappedProperty* pWrappedProperty = getWrappedProperty( nHandle ); in setPropertyValue() 161 sal_Int32 nHandle = getInfoHelper().getHandleByName( rPropertyName ); in getPropertyValue() local 162 const WrappedProperty* pWrappedProperty = getWrappedProperty( nHandle ); in getPropertyValue() 340 sal_Int32 nHandle = getInfoHelper().getHandleByName( rOuterName ); in getWrappedProperty() local 341 return getWrappedProperty( nHandle ); in getWrappedProperty() 344 const WrappedProperty* WrappedPropertySet::getWrappedProperty( sal_Int32 nHandle ) in getWrappedProperty() argument 346 tWrappedPropertyMap::const_iterator aFound( getWrappedPropertyMap().find( nHandle ) ); in getWrappedProperty() 478 if( nHandle == -1 ) in getWrappedPropertyMap() 483 else if( p->find( nHandle ) != p->end() ) in getWrappedPropertyMap() [all …]
|
/aoo4110/main/forms/source/component/ |
H A D | propertybaghelper.cxx | 130 sal_Int32 nHandle = lcl_getPropertyInfos().getPreferedPropertyId( _rPropertyName ); in impl_findFreeHandle() local 131 if ( ( nHandle != -1 ) && rPropInfo.fillPropertyMembersByHandle( NULL, NULL, nHandle ) ) in impl_findFreeHandle() 132 nHandle = -1; in impl_findFreeHandle() 135 if ( nHandle == -1 ) in impl_findFreeHandle() 145 nHandle = nNum + NEW_HANDLE_BASE; in impl_findFreeHandle() 153 if ( nHandle == -1 ) in impl_findFreeHandle() 155 nHandle = NEW_HANDLE_BASE + 1009; in impl_findFreeHandle() 156 while ( rPropInfo.fillPropertyMembersByHandle( NULL, NULL, nHandle ) ) in impl_findFreeHandle() 157 ++nHandle; in impl_findFreeHandle() 160 return nHandle; in impl_findFreeHandle() [all …]
|
H A D | EditBase.cxx | 251 void OEditBaseModel::getFastPropertyValue( Any& rValue, sal_Int32 nHandle ) const in getFastPropertyValue() 253 switch (nHandle) in getFastPropertyValue() 270 OBoundControlModel::getFastPropertyValue(rValue, nHandle); in getFastPropertyValue() 276 sal_Int32 nHandle, const Any& rValue ) throw( IllegalArgumentException ) in convertFastPropertyValue() argument 279 switch (nHandle) in convertFastPropertyValue() 301 nHandle, in convertFastPropertyValue() 310 switch (nHandle) in setFastPropertyValue_NoBroadcast() 333 OBoundControlModel::setFastPropertyValue_NoBroadcast(nHandle, rValue ); in setFastPropertyValue_NoBroadcast() 339 Any OEditBaseModel::getPropertyDefaultByHandle( sal_Int32 nHandle ) const in getPropertyDefaultByHandle() 341 switch (nHandle) in getPropertyDefaultByHandle() [all …]
|
H A D | Grid.cxx | 499 switch (nHandle) in getFastPropertyValue() 557 if ( isFontRelatedProperty( nHandle ) ) in getFastPropertyValue() 560 OControlModel::getFastPropertyValue( rValue, nHandle ); in getFastPropertyValue() 569 switch (nHandle) in convertFastPropertyValue() 646 if ( isFontRelatedProperty( nHandle ) ) in convertFastPropertyValue() 657 switch (nHandle) in setFastPropertyValue_NoBroadcast() 715 if ( isFontRelatedProperty( nHandle ) ) in setFastPropertyValue_NoBroadcast() 721 if ( isFontAggregateProperty( nHandle ) ) in setFastPropertyValue_NoBroadcast() 736 switch (nHandle) in getPropertyDefaultByHandle() 778 if ( isFontRelatedProperty( nHandle ) ) in getPropertyDefaultByHandle() [all …]
|
H A D | File.cxx | 164 void OFileControlModel::getFastPropertyValue(Any& rValue, sal_Int32 nHandle) const in getFastPropertyValue() 166 switch (nHandle) in getFastPropertyValue() 170 OControlModel::getFastPropertyValue(rValue, nHandle); in getFastPropertyValue() 175 void OFileControlModel::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& rValue) thro… in setFastPropertyValue_NoBroadcast() argument 177 switch (nHandle) in setFastPropertyValue_NoBroadcast() 184 OControlModel::setFastPropertyValue_NoBroadcast(nHandle, rValue); in setFastPropertyValue_NoBroadcast() 189 …convertFastPropertyValue(Any& rConvertedValue, Any& rOldValue, sal_Int32 nHandle, const Any& rValu… in convertFastPropertyValue() argument 192 switch (nHandle) in convertFastPropertyValue() 197 return OControlModel::convertFastPropertyValue(rConvertedValue, rOldValue, nHandle, rValue); in convertFastPropertyValue()
|
/aoo4110/main/sc/source/core/inc/ |
H A D | adiasync.hxx | 33 void CALLTYPE ScAddInAsyncCallBack( double& nHandle, void* pData ); 58 sal_uLong nHandle; // wird von double auf sal_uLong gecasted member in ScAddInAsync 65 ScAddInAsync( sal_uLong nHandle, sal_uInt16 nIndex, 70 static ScAddInAsync* Get( sal_uLong nHandle ); 71 static void CallBack( sal_uLong nHandle, void* pData ); 82 sal_Bool operator < ( const ScAddInAsync& r ) { return nHandle < r.nHandle; } in operator <() 83 sal_Bool operator ==( const ScAddInAsync& r ) { return nHandle == r.nHandle; } in operator ==()
|
/aoo4110/main/tools/source/stream/ |
H A D | strmunx.cxx | 194 int nHandle; member in StreamData 196 StreamData() { nHandle = 0; } in StreamData() 327 return (sal_uInt32)pInstanceData->nHandle; in GetFileHandle() 425 nNewPos = lseek( pInstanceData->nHandle, 0L, SEEK_END ); in SeekPos() 433 return lseek(pInstanceData->nHandle,0L,SEEK_CUR); in SeekPos() 534 if (fcntl(pInstanceData->nHandle, F_GETLK, &aflock) == -1) in LockRange() 764 pInstanceData->nHandle = nHandleTmp; in Open() 774 pInstanceData->nHandle = 0; in Open() 820 close( pInstanceData->nHandle ); in Close() 821 pInstanceData->nHandle = 0; in Close() [all …]
|
/aoo4110/main/unotools/source/config/ |
H A D | securityoptions.cxx | 516 sal_Int32 nHandle; in GetHandle() local 519 nHandle = PROPERTYHANDLE_SECUREURL; in GetHandle() 523 nHandle = PROPERTYHANDLE_DOCWARN_SIGNING; in GetHandle() 525 nHandle = PROPERTYHANDLE_DOCWARN_PRINT; in GetHandle() 535 nHandle = PROPERTYHANDLE_MACRO_SECLEVEL; in GetHandle() 539 nHandle = PROPERTYHANDLE_MACRO_DISABLE; in GetHandle() 543 nHandle = PROPERTYHANDLE_STAROFFICEBASIC; in GetHandle() 545 nHandle = PROPERTYHANDLE_EXECUTEPLUGINS; in GetHandle() 547 nHandle = PROPERTYHANDLE_WARNINGENABLED; in GetHandle() 553 nHandle = PROPERTYHANDLE_INVALID; in GetHandle() [all …]
|
/aoo4110/main/toolkit/source/controls/ |
H A D | geometrycontrolmodel.cxx | 195 …un::star::uno::Any OGeometryControlModel_Base::ImplGetDefaultValueByHandle(sal_Int32 nHandle) const in ImplGetDefaultValueByHandle() 199 switch ( nHandle ) in ImplGetDefaultValueByHandle() 217 …n::star::uno::Any OGeometryControlModel_Base::ImplGetPropertyValueByHandle(sal_Int32 nHandle) const in ImplGetPropertyValueByHandle() 221 switch ( nHandle ) in ImplGetPropertyValueByHandle() 241 switch ( nHandle ) in ImplSetPropertyValueByHandle() 343 ::com::sun::star::uno::Any aValue = ImplGetPropertyValueByHandle( nHandle ); in getPropertyStateByHandle() 344 ::com::sun::star::uno::Any aDefault = ImplGetDefaultValueByHandle( nHandle ); in getPropertyStateByHandle() 350 void OGeometryControlModel_Base::setPropertyToDefaultByHandle(sal_Int32 nHandle) in setPropertyToDefaultByHandle() argument 352 ImplSetPropertyValueByHandle( nHandle , ImplGetDefaultValueByHandle( nHandle ) ); in setPropertyToDefaultByHandle() 356 …n::star::uno::Any OGeometryControlModel_Base::getPropertyDefaultByHandle( sal_Int32 nHandle ) const in getPropertyDefaultByHandle() [all …]
|
/aoo4110/main/sc/source/core/tool/ |
H A D | adiasync.cxx | 52 void CALLTYPE ScAddInAsyncCallBack( double& nHandle, void* pData ) in ScAddInAsyncCallBack() argument 54 ScAddInAsync::CallBack( sal_uLong( nHandle ), pData ); in ScAddInAsyncCallBack() 62 nHandle( 0 ) in ScAddInAsync() 71 nHandle( nHandleP ), in ScAddInAsync() 86 if ( nHandle ) in ~ScAddInAsync() 89 pFuncData->Unadvice( (double)nHandle ); in ~ScAddInAsync() 102 aSeekObj.nHandle = nHandleP; in Get() 105 aSeekObj.nHandle = 0; in Get()
|
/aoo4110/main/sd/source/ui/unoidl/ |
H A D | DrawController.cxx | 544 sal_Int32 nHandle = PROPERTY_UPDATEACC; in NotifyAccUpdate() local 546 fire (&nHandle, &aNewValue, &aOldValue, 1, sal_False); in NotifyAccUpdate() 553 sal_Int32 nHandle = PROPERTY_ACTIVE_LAYER; in fireChangeLayer() local 559 fire (&nHandle, &aNewValue, &aOldValue, 1, sal_False); in fireChangeLayer() 581 sal_Int32 nHandle, in FirePropertyChange() argument 891 sal_Int32 nHandle, in convertFastPropertyValue() argument 897 if (nHandle == PROPERTY_SUB_CONTROLLER) in convertFastPropertyValue() 925 sal_Int32 nHandle, in setFastPropertyValue_NoBroadcast() argument 930 if (nHandle == PROPERTY_SUB_CONTROLLER) in setFastPropertyValue_NoBroadcast() 941 sal_Int32 nHandle ) const in getFastPropertyValue() [all …]
|
/aoo4110/main/chart2/source/model/main/ |
H A D | Diagram.cxx | 642 uno::Any Diagram::GetDefaultValue( sal_Int32 nHandle ) const in GetDefaultValue() 673 if( PROP_DIAGRAM_PERSPECTIVE == nHandle ) in setFastPropertyValue() 679 else if( PROP_DIAGRAM_ROTATION_HORIZONTAL == nHandle in setFastPropertyValue() 680 || PROP_DIAGRAM_ROTATION_VERTICAL == nHandle ) in setFastPropertyValue() 687 if( PROP_DIAGRAM_ROTATION_HORIZONTAL == nHandle ) in setFastPropertyValue() 695 ::property::OPropertySet::setFastPropertyValue( nHandle, rValue ); in setFastPropertyValue() 701 if( nHandle == PROP_DIAGRAM_PERSPECTIVE ) in getFastPropertyValue() 707 else if( PROP_DIAGRAM_ROTATION_HORIZONTAL == nHandle in getFastPropertyValue() 708 || PROP_DIAGRAM_ROTATION_VERTICAL == nHandle ) in getFastPropertyValue() 713 if( PROP_DIAGRAM_ROTATION_HORIZONTAL == nHandle ) in getFastPropertyValue() [all …]
|