Lines Matching refs:rValue

469 …const OUString& rValue, sal_Int32 nMultiSelect, ApiDefaultStateMode eDefStateMode, bool bAwtModel …  in convertAxState()  argument
476 if( rValue.getLength() == 1 ) switch( rValue[ 0 ] ) in convertAxState()
761 void AxControlModelBase::importProperty( sal_Int32 nPropId, const OUString& rValue ) in importProperty() argument
768 sal_Int32 nSepPos = rValue.indexOf( ';' ); in importProperty()
772 maSize.first = rValue.copy( 0, nSepPos ).toInt32(); in importProperty()
773 maSize.second = rValue.copy( nSepPos + 1 ).toInt32(); in importProperty()
787 void AxFontDataModel::importProperty( sal_Int32 nPropId, const OUString& rValue ) in importProperty() argument
791 …case XML_FontName: maFontData.maFontName = rValue; … in importProperty()
792 …ntEffects: maFontData.mnFontEffects = AttributeConversion::decodeUnsigned( rValue ); break; in importProperty()
793 …ntHeight: maFontData.mnFontHeight = AttributeConversion::decodeInteger( rValue ); break; in importProperty()
794 …ntCharSet: maFontData.mnFontCharSet = AttributeConversion::decodeInteger( rValue ); break; in importProperty()
795 …ragraphAlign: maFontData.mnHorAlign = AttributeConversion::decodeInteger( rValue ); break; in importProperty()
796 default: AxControlModelBase::importProperty( nPropId, rValue ); in importProperty()
856 void AxCommandButtonModel::importProperty( sal_Int32 nPropId, const OUString& rValue ) in importProperty() argument
860 …case XML_Caption: maCaption = rValue; … in importProperty()
861 …case XML_ForeColor: mnTextColor = AttributeConversion::decodeUnsigned( rValue ); … in importProperty()
862 …case XML_BackColor: mnBackColor = AttributeConversion::decodeUnsigned( rValue ); … in importProperty()
863 …case XML_VariousPropertyBits: mnFlags = AttributeConversion::decodeUnsigned( rValue ); … in importProperty()
864 …case XML_PicturePosition: mnPicturePos = AttributeConversion::decodeUnsigned( rValue ); … in importProperty()
865 …case XML_TakeFocusOnClick: mbFocusOnClick = AttributeConversion::decodeInteger( rValue ) != 0… in importProperty()
866 default: AxFontDataModel::importProperty( nPropId, rValue ); in importProperty()
927 void AxLabelModel::importProperty( sal_Int32 nPropId, const OUString& rValue ) in importProperty() argument
931 …case XML_Caption: maCaption = rValue; br… in importProperty()
932 …case XML_ForeColor: mnTextColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
933 …case XML_BackColor: mnBackColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
934 …case XML_VariousPropertyBits: mnFlags = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
935 …case XML_BorderColor: mnBorderColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
936 …case XML_BorderStyle: mnBorderStyle = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
937 …e XML_SpecialEffect: mnSpecialEffect = AttributeConversion::decodeInteger( rValue ); break; in importProperty()
938 default: AxFontDataModel::importProperty( nPropId, rValue ); in importProperty()
992 void AxImageModel::importProperty( sal_Int32 nPropId, const OUString& rValue ) in importProperty() argument
996 …case XML_BackColor: mnBackColor = AttributeConversion::decodeUnsigned( rValue ); … in importProperty()
997 …case XML_VariousPropertyBits: mnFlags = AttributeConversion::decodeUnsigned( rValue ); … in importProperty()
998 …case XML_BorderColor: mnBorderColor = AttributeConversion::decodeUnsigned( rValue ); … in importProperty()
999 …case XML_BorderStyle: mnBorderStyle = AttributeConversion::decodeInteger( rValue ); … in importProperty()
1000 …XML_SpecialEffect: mnSpecialEffect = AttributeConversion::decodeInteger( rValue ); break; in importProperty()
1001 …case XML_SizeMode: mnPicSizeMode = AttributeConversion::decodeInteger( rValue ); … in importProperty()
1002 …case XML_PictureAlignment: mnPicAlign = AttributeConversion::decodeInteger( rValue ); … in importProperty()
1003 …case XML_PictureTiling: mbPicTiling = AttributeConversion::decodeInteger( rValue ) != 0; … in importProperty()
1004 default: AxControlModelBase::importProperty( nPropId, rValue ); in importProperty()
1074 void AxMorphDataModelBase::importProperty( sal_Int32 nPropId, const OUString& rValue ) in importProperty() argument
1078 …case XML_Caption: maCaption = rValue; br… in importProperty()
1079 …case XML_Value: maValue = rValue; br… in importProperty()
1080 …case XML_GroupName: maGroupName = rValue; br… in importProperty()
1081 …case XML_ForeColor: mnTextColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1082 …case XML_BackColor: mnBackColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1083 …case XML_VariousPropertyBits: mnFlags = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1084 …case XML_PicturePosition: mnPicturePos = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1085 …case XML_BorderColor: mnBorderColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1086 …case XML_BorderStyle: mnBorderStyle = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1087 …e XML_SpecialEffect: mnSpecialEffect = AttributeConversion::decodeInteger( rValue ); break; in importProperty()
1088 …case XML_DisplayStyle: mnDisplayStyle = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1089 …case XML_MultiSelect: mnMultiSelect = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1090 …case XML_ScrollBars: mnScrollBars = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1091 …case XML_MatchEntry: mnMatchEntry = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1092 …e XML_ShowDropButtonWhen: mnShowDropButton = AttributeConversion::decodeInteger( rValue );break; in importProperty()
1093 …case XML_MaxLength: mnMaxLength = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1094 …case XML_PasswordChar: mnPasswordChar = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1095 …case XML_ListRows: mnListRows = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1096 default: AxFontDataModel::importProperty( nPropId, rValue ); in importProperty()
1357 void AxSpinButtonModel::importProperty( sal_Int32 nPropId, const OUString& rValue ) in importProperty() argument
1361 …case XML_ForeColor: mnArrowColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1362 …case XML_BackColor: mnBackColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1363 …case XML_VariousPropertyBits: mnFlags = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1364 …case XML_Orientation: mnOrientation = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1365 …case XML_Min: mnMin = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1366 …case XML_Max: mnMax = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1367 …case XML_Position: mnPosition = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1368 …case XML_SmallChange: mnSmallChange = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1369 …case XML_Delay: mnDelay = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1370 default: AxControlModelBase::importProperty( nPropId, rValue ); in importProperty()
1435 void AxScrollBarModel::importProperty( sal_Int32 nPropId, const OUString& rValue ) in importProperty() argument
1439 …case XML_ForeColor: mnArrowColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1440 …case XML_BackColor: mnBackColor = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1441 …case XML_VariousPropertyBits: mnFlags = AttributeConversion::decodeUnsigned( rValue ); br… in importProperty()
1442 …case XML_Orientation: mnOrientation = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1443 …case XML_ProportionalThumb: mnPropThumb = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1444 …case XML_Min: mnMin = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1445 …case XML_Max: mnMax = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1446 …case XML_Position: mnPosition = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1447 …case XML_SmallChange: mnSmallChange = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1448 …case XML_LargeChange: mnLargeChange = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1449 …case XML_Delay: mnDelay = AttributeConversion::decodeInteger( rValue ); br… in importProperty()
1450 default: AxControlModelBase::importProperty( nPropId, rValue ); in importProperty()
1582 void AxContainerModelBase::importProperty( sal_Int32 nPropId, const OUString& rValue ) in importProperty() argument
1585 maCaption = rValue; in importProperty()