fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / filter / excel / xlview.cxx
blobdca88f2136922114e44676a6c258c5edadfd58ca
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "xlview.hxx"
21 #include "ftools.hxx"
22 #include <osl/diagnose.h>
24 // Structs ====================================================================
26 XclDocViewData::XclDocViewData() :
27 mnWinX( 0 ),
28 mnWinY( 0 ),
29 mnWinWidth( 0 ),
30 mnWinHeight( 0 ),
31 mnFlags( EXC_WIN1_HOR_SCROLLBAR | EXC_WIN1_VER_SCROLLBAR | EXC_WIN1_TABBAR ),
32 mnDisplXclTab( 0 ),
33 mnFirstVisXclTab( 0 ),
34 mnXclSelectCnt( 1 ),
35 mnTabBarWidth( 600 )
39 XclTabViewData::XclTabViewData() :
40 maFirstXclPos( ScAddress::UNINITIALIZED ),
41 maSecondXclPos( ScAddress::UNINITIALIZED )
43 SetDefaults();
46 XclTabViewData::~XclTabViewData()
50 void XclTabViewData::SetDefaults()
52 maSelMap.clear();
53 maGridColor.SetColor( COL_AUTO );
54 maFirstXclPos.Set( 0, 0 );
55 maSecondXclPos.Set( 0, 0 );
56 mnSplitX = mnSplitY = 0;
57 mnNormalZoom = EXC_WIN2_NORMALZOOM_DEF;
58 mnPageZoom = EXC_WIN2_PAGEZOOM_DEF;
59 mnCurrentZoom = 0; // default to mnNormalZoom or mnPageZoom
60 mnActivePane = EXC_PANE_TOPLEFT;
61 mbSelected = mbDisplayed = false;
62 mbMirrored = false;
63 mbFrozenPanes = false;
64 mbPageMode = false;
65 mbDefGridColor = true;
66 mbShowFormulas = false;
67 mbShowGrid = mbShowHeadings = mbShowZeros = mbShowOutline = true;
68 maTabBgColor.SetColor( COL_AUTO );
69 mnTabBgColorId = 0;
72 bool XclTabViewData::IsSplit() const
74 return (mnSplitX > 0) || (mnSplitY > 0);
77 bool XclTabViewData::HasPane( sal_uInt8 nPaneId ) const
79 switch( nPaneId )
81 case EXC_PANE_BOTTOMRIGHT: return (mnSplitX > 0) && (mnSplitY > 0);
82 case EXC_PANE_TOPRIGHT: return mnSplitX > 0;
83 case EXC_PANE_BOTTOMLEFT: return mnSplitY > 0;
84 case EXC_PANE_TOPLEFT: return true;
86 OSL_FAIL( "XclExpPane::HasPane - wrong pane ID" );
87 return false;
90 const XclSelectionData* XclTabViewData::GetSelectionData( sal_uInt8 nPane ) const
92 XclSelectionMap::const_iterator aIt = maSelMap.find( nPane );
93 return (aIt == maSelMap.end()) ? 0 : aIt->second.get();
96 XclSelectionData& XclTabViewData::CreateSelectionData( sal_uInt8 nPane )
98 XclSelectionDataRef& rxSelData = maSelMap[ nPane ];
99 if( !rxSelData )
100 rxSelData.reset( new XclSelectionData );
101 return *rxSelData;
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */