Lines Matching refs:aAttribs

1037 	::css::uno::Sequence< ::css::beans::PropertyValue > aAttribs( AttributeCount );  in retrieveCharacterAttributes()
1040 aAttribs[i].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharBackColor")); in retrieveCharacterAttributes()
1041 aAttribs[i].Handle = -1; in retrieveCharacterAttributes()
1042 aAttribs[i].Value = mapFontColor( aFont.GetFillColor() ); in retrieveCharacterAttributes()
1043 aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; in retrieveCharacterAttributes()
1048 aAttribs[i].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharColor")); in retrieveCharacterAttributes()
1049 aAttribs[i].Handle = -1; in retrieveCharacterAttributes()
1051 aAttribs[i].Value = mapFontColor( m_rEngine.GetTextColor() ); in retrieveCharacterAttributes()
1052 aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; in retrieveCharacterAttributes()
1057 aAttribs[i].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharFontName")); in retrieveCharacterAttributes()
1058 aAttribs[i].Handle = -1; in retrieveCharacterAttributes()
1059 aAttribs[i].Value = ::css::uno::makeAny( (::rtl::OUString)aFont.GetName() ); in retrieveCharacterAttributes()
1060 aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; in retrieveCharacterAttributes()
1065 aAttribs[i].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharHeight")); in retrieveCharacterAttributes()
1066 aAttribs[i].Handle = -1; in retrieveCharacterAttributes()
1067 aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)aFont.GetHeight() ); in retrieveCharacterAttributes()
1068 aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; in retrieveCharacterAttributes()
1073 aAttribs[i].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharPosture")); in retrieveCharacterAttributes()
1074 aAttribs[i].Handle = -1; in retrieveCharacterAttributes()
1075 aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)aFont.GetItalic() ); in retrieveCharacterAttributes()
1076 aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; in retrieveCharacterAttributes()
1089 aAttribs[i].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharStrikeout")); in retrieveCharacterAttributes()
1090 aAttribs[i].Handle = -1; in retrieveCharacterAttributes()
1091 aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)aFont.GetStrikeout() ); in retrieveCharacterAttributes()
1092 aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; in retrieveCharacterAttributes()
1097 aAttribs[i].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharUnderline")); in retrieveCharacterAttributes()
1098 aAttribs[i].Handle = -1; in retrieveCharacterAttributes()
1099 aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)aFont.GetUnderline() ); in retrieveCharacterAttributes()
1100 aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; in retrieveCharacterAttributes()
1105 aAttribs[i].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharWeight")); in retrieveCharacterAttributes()
1106 aAttribs[i].Handle = -1; in retrieveCharacterAttributes()
1107 aAttribs[i].Value = ::css::uno::makeAny( (float)aFont.GetWeight() ); in retrieveCharacterAttributes()
1108 aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; in retrieveCharacterAttributes()
1113 aAttribs[i].Name = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ParaAdjust")); in retrieveCharacterAttributes()
1114 aAttribs[i].Handle = -1; in retrieveCharacterAttributes()
1115 aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)m_rEngine.GetTextAlign() ); in retrieveCharacterAttributes()
1116 aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; in retrieveCharacterAttributes()
1148 ::css::beans::PropertyValue* pValues = aAttribs.getArray(); in retrieveCharacterAttributes()