Lines Matching refs:rAttribs

226 void SheetViewSettings::importSheetView( const AttributeList& rAttribs )  in importSheetView()  argument
229 rModel.maGridColor.setIndexed( rAttribs.getInteger( XML_colorId, OOX_COLOR_WINDOWTEXT ) ); in importSheetView()
230 …rModel.maFirstPos = getAddressConverter().createValidCellAddress( rAttribs.getString( XML_t… in importSheetView()
231 rModel.mnWorkbookViewId = rAttribs.getToken( XML_workbookViewId, 0 ); in importSheetView()
232 rModel.mnViewType = rAttribs.getToken( XML_view, XML_normal ); in importSheetView()
233 rModel.mnCurrentZoom = rAttribs.getInteger( XML_zoomScale, 100 ); in importSheetView()
234 rModel.mnNormalZoom = rAttribs.getInteger( XML_zoomScaleNormal, 0 ); in importSheetView()
235 rModel.mnSheetLayoutZoom = rAttribs.getInteger( XML_zoomScaleSheetLayoutView, 0 ); in importSheetView()
236 rModel.mnPageLayoutZoom = rAttribs.getInteger( XML_zoomScalePageLayoutView, 0 ); in importSheetView()
237 rModel.mbSelected = rAttribs.getBool( XML_tabSelected, false ); in importSheetView()
238 rModel.mbRightToLeft = rAttribs.getBool( XML_rightToLeft, false ); in importSheetView()
239 rModel.mbDefGridColor = rAttribs.getBool( XML_defaultGridColor, true ); in importSheetView()
240 rModel.mbShowFormulas = rAttribs.getBool( XML_showFormulas, false ); in importSheetView()
241 rModel.mbShowGrid = rAttribs.getBool( XML_showGridLines, true ); in importSheetView()
242 rModel.mbShowHeadings = rAttribs.getBool( XML_showRowColHeaders, true ); in importSheetView()
243 rModel.mbShowZeros = rAttribs.getBool( XML_showZeros, true ); in importSheetView()
244 rModel.mbShowOutline = rAttribs.getBool( XML_showOutlineSymbols, true ); in importSheetView()
247 void SheetViewSettings::importPane( const AttributeList& rAttribs ) in importPane() argument
253 …rModel.maSecondPos = getAddressConverter().createValidCellAddress( rAttribs.getString( XML_topL… in importPane()
254 rModel.mnActivePaneId = rAttribs.getToken( XML_activePane, XML_topLeft ); in importPane()
255 rModel.mnPaneState = rAttribs.getToken( XML_state, XML_split ); in importPane()
256 rModel.mfSplitX = rAttribs.getDouble( XML_xSplit, 0.0 ); in importPane()
257 rModel.mfSplitY = rAttribs.getDouble( XML_ySplit, 0.0 ); in importPane()
261 void SheetViewSettings::importSelection( const AttributeList& rAttribs ) in importSelection() argument
267 sal_Int32 nPaneId = rAttribs.getToken( XML_pane, XML_topLeft ); in importSelection()
270 …rSelData.maActiveCell = getAddressConverter().createValidCellAddress( rAttribs.getString( XML_acti… in importSelection()
271 rSelData.mnActiveCellId = rAttribs.getInteger( XML_activeCellId, 0 ); in importSelection()
274 …getAddressConverter().convertToCellRangeList( rSelData.maSelection, rAttribs.getString( XML_sqref,… in importSelection()
278 void SheetViewSettings::importChartSheetView( const AttributeList& rAttribs ) in importChartSheetView() argument
281 rModel.mnWorkbookViewId = rAttribs.getToken( XML_workbookViewId, 0 ); in importChartSheetView()
282 rModel.mnCurrentZoom = rAttribs.getInteger( XML_zoomScale, 100 ); in importChartSheetView()
283 rModel.mbSelected = rAttribs.getBool( XML_tabSelected, false ); in importChartSheetView()
284 rModel.mbZoomToFit = rAttribs.getBool( XML_zoomToFit, false ); in importChartSheetView()
624 void ViewSettings::importWorkbookView( const AttributeList& rAttribs ) in importWorkbookView() argument
627 rModel.mnWinX = rAttribs.getInteger( XML_xWindow, 0 ); in importWorkbookView()
628 rModel.mnWinY = rAttribs.getInteger( XML_yWindow, 0 ); in importWorkbookView()
629 rModel.mnWinWidth = rAttribs.getInteger( XML_windowWidth, 0 ); in importWorkbookView()
630 rModel.mnWinHeight = rAttribs.getInteger( XML_windowHeight, 0 ); in importWorkbookView()
631 rModel.mnActiveSheet = rAttribs.getInteger( XML_activeTab, 0 ); in importWorkbookView()
632 rModel.mnFirstVisSheet = rAttribs.getInteger( XML_firstSheet, 0 ); in importWorkbookView()
633 rModel.mnTabBarWidth = rAttribs.getInteger( XML_tabRatio, 600 ); in importWorkbookView()
634 rModel.mnVisibility = rAttribs.getToken( XML_visibility, XML_visible ); in importWorkbookView()
635 rModel.mbShowTabBar = rAttribs.getBool( XML_showSheetTabs, true ); in importWorkbookView()
636 rModel.mbShowHorScroll = rAttribs.getBool( XML_showHorizontalScroll, true ); in importWorkbookView()
637 rModel.mbShowVerScroll = rAttribs.getBool( XML_showVerticalScroll, true ); in importWorkbookView()
638 rModel.mbMinimized = rAttribs.getBool( XML_minimized, false ); in importWorkbookView()
641 void ViewSettings::importOleSize( const AttributeList& rAttribs ) in importOleSize() argument
643 OUString aRange = rAttribs.getString( XML_ref, OUString() ); in importOleSize()