Lines Matching refs:rAttribs
122 …xtHandlerRef SheetDataContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) in onCreateContext() argument
127 if( nElement == XLS_TOKEN( row ) ) { importRow( rAttribs ); return this; } in onCreateContext()
132 if( nElement == XLS_TOKEN( c ) && importCell( rAttribs ) ) in onCreateContext()
145 importFormula( rAttribs ); in onCreateContext()
283 void SheetDataContext::importRow( const AttributeList& rAttribs ) in importRow() argument
286 aModel.mnRow = rAttribs.getInteger( XML_r, -1 ); in importRow()
287 aModel.mfHeight = rAttribs.getDouble( XML_ht, -1.0 ); in importRow()
288 aModel.mnXfId = rAttribs.getInteger( XML_s, -1 ); in importRow()
289 aModel.mnLevel = rAttribs.getInteger( XML_outlineLevel, 0 ); in importRow()
290 aModel.mbCustomHeight = rAttribs.getBool( XML_customHeight, false ); in importRow()
291 aModel.mbCustomFormat = rAttribs.getBool( XML_customFormat, false ); in importRow()
292 aModel.mbShowPhonetic = rAttribs.getBool( XML_ph, false ); in importRow()
293 aModel.mbHidden = rAttribs.getBool( XML_hidden, false ); in importRow()
294 aModel.mbCollapsed = rAttribs.getBool( XML_collapsed, false ); in importRow()
295 aModel.mbThickTop = rAttribs.getBool( XML_thickTop, false ); in importRow()
296 aModel.mbThickBottom = rAttribs.getBool( XML_thickBot, false ); in importRow()
299 OUString aColSpansText = rAttribs.getString( XML_spans, OUString() ); in importRow()
318 bool SheetDataContext::importCell( const AttributeList& rAttribs ) in importCell() argument
320 …bool bValidAddr = mrAddressConv.convertToCellAddress( maCellData.maCellAddr, rAttribs.getString( X… in importCell()
323 maCellData.mnCellType = rAttribs.getToken( XML_t, XML_n ); in importCell()
324 maCellData.mnXfId = rAttribs.getInteger( XML_s, -1 ); in importCell()
325 maCellData.mbShowPhonetic = rAttribs.getBool( XML_ph, false ); in importCell()
338 void SheetDataContext::importFormula( const AttributeList& rAttribs ) in importFormula() argument
341 …mbValidRange = mrAddressConv.convertToCellRange( maFmlaData.maFormulaRef, rAttribs.getString( XML_… in importFormula()
343 maFmlaData.mnFormulaType = rAttribs.getToken( XML_t, XML_normal ); in importFormula()
344 maFmlaData.mnSharedId = rAttribs.getInteger( XML_si, -1 ); in importFormula()
348 maTableData.maRef1 = rAttribs.getString( XML_r1, OUString() ); in importFormula()
349 maTableData.maRef2 = rAttribs.getString( XML_r2, OUString() ); in importFormula()
350 maTableData.mb2dTable = rAttribs.getBool( XML_dt2D, false ); in importFormula()
351 maTableData.mbRowTable = rAttribs.getBool( XML_dtr, false ); in importFormula()
352 maTableData.mbRef1Deleted = rAttribs.getBool( XML_del1, false ); in importFormula()
353 maTableData.mbRef2Deleted = rAttribs.getBool( XML_del2, false ); in importFormula()