Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
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"
27 :
28 : using namespace ::oox::core;
29 : using namespace ::com::sun::star;
30 :
31 : namespace oox { namespace drawingml { namespace table {
32 :
33 0 : TableContext::TableContext( ContextHandler& rParent, ShapePtr pShapePtr )
34 : : ShapeContext( rParent, ShapePtr(), pShapePtr )
35 0 : , mrTableProperties( *pShapePtr->getTableProperties().get() )
36 : {
37 0 : pShapePtr->setTableType();
38 0 : }
39 :
40 0 : TableContext::~TableContext()
41 : {
42 0 : }
43 :
44 : uno::Reference< xml::sax::XFastContextHandler > SAL_CALL
45 0 : TableContext::createFastChildContext( ::sal_Int32 aElementToken, const uno::Reference< xml::sax::XFastAttributeList >& xAttribs )
46 : throw ( xml::sax::SAXException, uno::RuntimeException)
47 : {
48 0 : uno::Reference< xml::sax::XFastContextHandler > xRet;
49 :
50 0 : switch( aElementToken )
51 : {
52 : case A_TOKEN( tblPr ): // CT_TableProperties
53 : {
54 0 : AttributeList aAttribs( xAttribs );
55 0 : mrTableProperties.isRtl() = aAttribs.getBool( XML_rtl, sal_False );
56 0 : mrTableProperties.isFirstRow() = aAttribs.getBool( XML_firstRow, sal_False );
57 0 : mrTableProperties.isFirstCol() = aAttribs.getBool( XML_firstCol, sal_False );
58 0 : mrTableProperties.isLastRow() = aAttribs.getBool( XML_lastRow, sal_False );
59 0 : mrTableProperties.isLastCol() = aAttribs.getBool( XML_lastCol, sal_False );
60 0 : mrTableProperties.isBandRow() = aAttribs.getBool( XML_bandRow, sal_False );
61 0 : mrTableProperties.isBandCol() = aAttribs.getBool( XML_bandCol, sal_False );
62 : }
63 0 : break;
64 : case A_TOKEN( tableStyle ): // CT_TableStyle
65 : {
66 0 : boost::shared_ptr< TableStyle >& rTableStyle = mrTableProperties.getTableStyle();
67 0 : rTableStyle.reset( new TableStyle() );
68 0 : xRet = new TableStyleContext( *this, xAttribs, *rTableStyle );
69 : }
70 0 : break;
71 : case A_TOKEN( tableStyleId ): // ST_Guid
72 0 : xRet.set( new oox::drawingml::GuidContext( *this, mrTableProperties.getStyleId() ) );
73 0 : break;
74 :
75 : case A_TOKEN( tblGrid ): // CT_TableGrid
76 0 : break;
77 : case A_TOKEN( gridCol ): // CT_TableCol
78 : {
79 0 : std::vector< sal_Int32 >& rvTableGrid( mrTableProperties.getTableGrid() );
80 0 : rvTableGrid.push_back( xAttribs->getOptionalValue( XML_w ).toInt32() );
81 : }
82 0 : break;
83 : case A_TOKEN( tr ): // CT_TableRow
84 : {
85 0 : std::vector< TableRow >& rvTableRows( mrTableProperties.getTableRows() );
86 0 : rvTableRows.resize( rvTableRows.size() + 1 );
87 0 : xRet.set( new TableRowContext( *this, xAttribs, rvTableRows.back() ) );
88 : }
89 0 : break;
90 : }
91 :
92 0 : if( !xRet.is() )
93 0 : xRet.set( this );
94 :
95 0 : return xRet;
96 : }
97 :
98 51 : } } }
99 :
100 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|