bump product version to 4.1.6.2
[LibreOffice.git] / oox / source / drawingml / table / tablecontext.cxx
blob15f9776de2d8b290185c4f333d60e47416ad57ed
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 <osl/diagnose.h>
21 #include "oox/helper/attributelist.hxx"
22 #include "oox/drawingml/guidcontext.hxx"
23 #include "oox/drawingml/table/tablecontext.hxx"
24 #include "oox/drawingml/table/tableproperties.hxx"
25 #include "oox/drawingml/table/tablestylecontext.hxx"
26 #include "oox/drawingml/table/tablerowcontext.hxx"
28 using namespace ::oox::core;
29 using namespace ::com::sun::star;
31 namespace oox { namespace drawingml { namespace table {
33 TableContext::TableContext( ContextHandler& rParent, ShapePtr pShapePtr )
34 : ShapeContext( rParent, ShapePtr(), pShapePtr )
35 , mrTableProperties( *pShapePtr->getTableProperties().get() )
37 pShapePtr->setTableType();
40 TableContext::~TableContext()
44 uno::Reference< xml::sax::XFastContextHandler > SAL_CALL
45 TableContext::createFastChildContext( ::sal_Int32 aElementToken, const uno::Reference< xml::sax::XFastAttributeList >& xAttribs )
46 throw ( xml::sax::SAXException, uno::RuntimeException)
48 uno::Reference< xml::sax::XFastContextHandler > xRet;
50 switch( aElementToken )
52 case A_TOKEN( tblPr ): // CT_TableProperties
54 AttributeList aAttribs( xAttribs );
55 mrTableProperties.isRtl() = aAttribs.getBool( XML_rtl, sal_False );
56 mrTableProperties.isFirstRow() = aAttribs.getBool( XML_firstRow, sal_False );
57 mrTableProperties.isFirstCol() = aAttribs.getBool( XML_firstCol, sal_False );
58 mrTableProperties.isLastRow() = aAttribs.getBool( XML_lastRow, sal_False );
59 mrTableProperties.isLastCol() = aAttribs.getBool( XML_lastCol, sal_False );
60 mrTableProperties.isBandRow() = aAttribs.getBool( XML_bandRow, sal_False );
61 mrTableProperties.isBandCol() = aAttribs.getBool( XML_bandCol, sal_False );
63 break;
64 case A_TOKEN( tableStyle ): // CT_TableStyle
66 boost::shared_ptr< TableStyle >& rTableStyle = mrTableProperties.getTableStyle();
67 rTableStyle.reset( new TableStyle() );
68 xRet = new TableStyleContext( *this, xAttribs, *rTableStyle );
70 break;
71 case A_TOKEN( tableStyleId ): // ST_Guid
72 xRet.set( new oox::drawingml::GuidContext( *this, mrTableProperties.getStyleId() ) );
73 break;
75 case A_TOKEN( tblGrid ): // CT_TableGrid
76 break;
77 case A_TOKEN( gridCol ): // CT_TableCol
79 std::vector< sal_Int32 >& rvTableGrid( mrTableProperties.getTableGrid() );
80 rvTableGrid.push_back( xAttribs->getOptionalValue( XML_w ).toInt32() );
82 break;
83 case A_TOKEN( tr ): // CT_TableRow
85 std::vector< TableRow >& rvTableRows( mrTableProperties.getTableRows() );
86 rvTableRows.resize( rvTableRows.size() + 1 );
87 xRet.set( new TableRowContext( *this, xAttribs, rvTableRows.back() ) );
89 break;
92 if( !xRet.is() )
93 xRet.set( this );
95 return xRet;
98 } } }
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */