Lines Matching refs:rAttribs

44 …ndlerRef IndexedColorsContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs )  in onCreateContext()  argument
49 if( nElement == XLS_TOKEN( rgbColor ) ) getStyles().importPaletteColor( rAttribs ); in onCreateContext()
68 ContextHandlerRef FontContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) in onCreateContext() argument
71 mxFont->importAttribs( nElement, rAttribs ); in onCreateContext()
77 void BorderContext::onStartElement( const AttributeList& rAttribs ) in onStartElement() argument
80 mxBorder->importBorder( rAttribs ); in onStartElement()
83 ContextHandlerRef BorderContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs in onCreateContext() argument
88 mxBorder->importStyle( nElement, rAttribs ); in onCreateContext()
93 mxBorder->importColor( getCurrentElement(), rAttribs ); in onCreateContext()
100 ContextHandlerRef FillContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) in onCreateContext() argument
107 case XLS_TOKEN( patternFill ): mxFill->importPatternFill( rAttribs ); return this; in onCreateContext()
108 case XLS_TOKEN( gradientFill ): mxFill->importGradientFill( rAttribs ); return this; in onCreateContext()
114 case XLS_TOKEN( fgColor ): mxFill->importFgColor( rAttribs ); break; in onCreateContext()
115 case XLS_TOKEN( bgColor ): mxFill->importBgColor( rAttribs ); break; in onCreateContext()
121 mfGradPos = rAttribs.getDouble( XML_position, -1.0 ); in onCreateContext()
127 mxFill->importColor( rAttribs, mfGradPos ); in onCreateContext()
135 void XfContext::onStartElement( const AttributeList& rAttribs ) in onStartElement() argument
138 mxXf->importXf( rAttribs, mbCellXf ); in onStartElement()
141 ContextHandlerRef XfContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) in onCreateContext() argument
148 case XLS_TOKEN( alignment ): mxXf->importAlignment( rAttribs ); break; in onCreateContext()
149 case XLS_TOKEN( protection ): mxXf->importProtection( rAttribs ); break; in onCreateContext()
158 ContextHandlerRef DxfContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) in onCreateContext() argument
169 case XLS_TOKEN( numFmt ): mxDxf->importNumFmt( rAttribs ); break; in onCreateContext()
171 case XLS_TOKEN( alignment ): mxDxf->importAlignment( rAttribs ); break; in onCreateContext()
172 case XLS_TOKEN( protection ): mxDxf->importProtection( rAttribs ); break; in onCreateContext()
187 …textHandlerRef StylesFragment::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) in onCreateContext() argument
214 if( nElement == XLS_TOKEN( numFmt ) ) getStyles().importNumFmt( rAttribs ); in onCreateContext()
235 if( nElement == XLS_TOKEN( cellStyle ) ) getStyles().importCellStyle( rAttribs ); in onCreateContext()