Lines Matching refs:property

46 +(int)convertUnderlineStyle:(PropertyValue)property {
49 property.Value >>= value;
57 +(int)convertBoldStyle:(PropertyValue)property {
60 property.Value >>= value;
70 +(int)convertItalicStyle:(PropertyValue)property {
72 const sal_Int16 value = property.Value.get< ::css_awt::FontSlant>();
79 +(BOOL)isStrikethrough:(PropertyValue)property {
82 property.Value >>= value;
90 +(BOOL)convertBoolean:(PropertyValue)property {
93 property.Value >>= value;
100 +(NSNumber *)convertShort:(PropertyValue)property {
102 property.Value >>= value;
154 PropertyValue property = attributes [ attrIndex ];
157 if ( property.Value.hasValue() ) {
158 if ( property.Name.equals ( attrUnderline ) ) {
159 int style = [ AquaA11yTextAttributesWrapper convertUnderlineStyle: property ];
163 } else if ( property.Name.equals ( attrFontname ) ) {
164 property.Value >>= fontname;
165 } else if ( property.Name.equals ( attrBold ) ) {
166 fonttraits |= [ AquaA11yTextAttributesWrapper convertBoldStyle: property ];
167 } else if ( property.Name.equals ( attrItalic ) ) {
168 fonttraits |= [ AquaA11yTextAttributesWrapper convertItalicStyle: property ];
169 } else if ( property.Name.equals ( attrHeight ) ) {
170 property.Value >>= fontsize;
171 } else if ( property.Name.equals ( attrStrikethrough ) ) {
172 if ( [ AquaA11yTextAttributesWrapper isStrikethrough: property ] ) {
175 } else if ( property.Name.equals ( attrShadow ) ) {
176 if ( [ AquaA11yTextAttributesWrapper convertBoolean: property ] ) {
179 } else if ( property.Name.equals ( attrUnderlineColor ) ) {
180 property.Value >>= underlineColor;
181 } else if ( property.Name.equals ( attrUnderlineHasColor ) ) {
182 underlineHasColor = [ AquaA11yTextAttributesWrapper convertBoolean: property ];
183 } else if ( property.Name.equals ( attrForegroundColor ) ) {
184 …[ AquaA11yTextAttributesWrapper addColor: property.Value.get<sal_Int32>() forAttribute: NSAccessib…
185 } else if ( property.Name.equals ( attrBackgroundColor ) ) {
186 …[ AquaA11yTextAttributesWrapper addColor: property.Value.get<sal_Int32>() forAttribute: NSAccessib…
187 } else if ( property.Name.equals ( attrSuperscript ) ) {
191 NSNumber * number = [ AquaA11yTextAttributesWrapper convertShort: property ];