1*ca5ec200SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*ca5ec200SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*ca5ec200SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*ca5ec200SAndrew Rist * distributed with this work for additional information 6*ca5ec200SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*ca5ec200SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*ca5ec200SAndrew Rist * "License"); you may not use this file except in compliance 9*ca5ec200SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*ca5ec200SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*ca5ec200SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*ca5ec200SAndrew Rist * software distributed under the License is distributed on an 15*ca5ec200SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*ca5ec200SAndrew Rist * KIND, either express or implied. See the License for the 17*ca5ec200SAndrew Rist * specific language governing permissions and limitations 18*ca5ec200SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*ca5ec200SAndrew Rist *************************************************************/ 21*ca5ec200SAndrew Rist 22*ca5ec200SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #include <osl/diagnose.h> 25cdf0e10cSrcweir #include "oox/helper/attributelist.hxx" 26cdf0e10cSrcweir #include "oox/drawingml/guidcontext.hxx" 27cdf0e10cSrcweir #include "oox/drawingml/table/tablecontext.hxx" 28cdf0e10cSrcweir #include "oox/drawingml/table/tableproperties.hxx" 29cdf0e10cSrcweir #include "oox/drawingml/table/tablestylecontext.hxx" 30cdf0e10cSrcweir #include "oox/drawingml/table/tablerowcontext.hxx" 31cdf0e10cSrcweir 32cdf0e10cSrcweir using namespace ::oox::core; 33cdf0e10cSrcweir using namespace ::com::sun::star; 34cdf0e10cSrcweir using ::rtl::OUString; 35cdf0e10cSrcweir 36cdf0e10cSrcweir namespace oox { namespace drawingml { namespace table { 37cdf0e10cSrcweir 38cdf0e10cSrcweir TableContext::TableContext( ContextHandler& rParent, ShapePtr pShapePtr ) 39cdf0e10cSrcweir : ShapeContext( rParent, ShapePtr(), pShapePtr ) 40cdf0e10cSrcweir , mrTableProperties( *pShapePtr->getTableProperties().get() ) 41cdf0e10cSrcweir { 42cdf0e10cSrcweir pShapePtr->setTableType(); 43cdf0e10cSrcweir } 44cdf0e10cSrcweir 45cdf0e10cSrcweir TableContext::~TableContext() 46cdf0e10cSrcweir { 47cdf0e10cSrcweir } 48cdf0e10cSrcweir 49cdf0e10cSrcweir uno::Reference< xml::sax::XFastContextHandler > SAL_CALL 50cdf0e10cSrcweir TableContext::createFastChildContext( ::sal_Int32 aElementToken, const uno::Reference< xml::sax::XFastAttributeList >& xAttribs ) 51cdf0e10cSrcweir throw ( xml::sax::SAXException, uno::RuntimeException) 52cdf0e10cSrcweir { 53cdf0e10cSrcweir uno::Reference< xml::sax::XFastContextHandler > xRet; 54cdf0e10cSrcweir 55cdf0e10cSrcweir switch( aElementToken ) 56cdf0e10cSrcweir { 57cdf0e10cSrcweir case A_TOKEN( tblPr ): // CT_TableProperties 58cdf0e10cSrcweir { 59cdf0e10cSrcweir AttributeList aAttribs( xAttribs ); 60cdf0e10cSrcweir mrTableProperties.isRtl() = aAttribs.getBool( XML_rtl, sal_False ); 61cdf0e10cSrcweir mrTableProperties.isFirstRow() = aAttribs.getBool( XML_firstRow, sal_False ); 62cdf0e10cSrcweir mrTableProperties.isFirstCol() = aAttribs.getBool( XML_firstCol, sal_False ); 63cdf0e10cSrcweir mrTableProperties.isLastRow() = aAttribs.getBool( XML_lastRow, sal_False ); 64cdf0e10cSrcweir mrTableProperties.isLastCol() = aAttribs.getBool( XML_lastCol, sal_False ); 65cdf0e10cSrcweir mrTableProperties.isBandRow() = aAttribs.getBool( XML_bandRow, sal_False ); 66cdf0e10cSrcweir mrTableProperties.isBandCol() = aAttribs.getBool( XML_bandCol, sal_False ); 67cdf0e10cSrcweir } 68cdf0e10cSrcweir break; 69cdf0e10cSrcweir case A_TOKEN( tableStyle ): // CT_TableStyle 70cdf0e10cSrcweir { 71cdf0e10cSrcweir boost::shared_ptr< TableStyle >& rTableStyle = mrTableProperties.getTableStyle(); 72cdf0e10cSrcweir rTableStyle.reset( new TableStyle() ); 73cdf0e10cSrcweir xRet = new TableStyleContext( *this, xAttribs, *rTableStyle ); 74cdf0e10cSrcweir } 75cdf0e10cSrcweir break; 76cdf0e10cSrcweir case A_TOKEN( tableStyleId ): // ST_Guid 77cdf0e10cSrcweir xRet.set( new oox::drawingml::GuidContext( *this, mrTableProperties.getStyleId() ) ); 78cdf0e10cSrcweir break; 79cdf0e10cSrcweir 80cdf0e10cSrcweir case A_TOKEN( tblGrid ): // CT_TableGrid 81cdf0e10cSrcweir break; 82cdf0e10cSrcweir case A_TOKEN( gridCol ): // CT_TableCol 83cdf0e10cSrcweir { 84cdf0e10cSrcweir std::vector< sal_Int32 >& rvTableGrid( mrTableProperties.getTableGrid() ); 85cdf0e10cSrcweir rvTableGrid.push_back( xAttribs->getOptionalValue( XML_w ).toInt32() ); 86cdf0e10cSrcweir } 87cdf0e10cSrcweir break; 88cdf0e10cSrcweir case A_TOKEN( tr ): // CT_TableRow 89cdf0e10cSrcweir { 90cdf0e10cSrcweir std::vector< TableRow >& rvTableRows( mrTableProperties.getTableRows() ); 91cdf0e10cSrcweir rvTableRows.resize( rvTableRows.size() + 1 ); 92cdf0e10cSrcweir xRet.set( new TableRowContext( *this, xAttribs, rvTableRows.back() ) ); 93cdf0e10cSrcweir } 94cdf0e10cSrcweir break; 95cdf0e10cSrcweir } 96cdf0e10cSrcweir 97cdf0e10cSrcweir if( !xRet.is() ) 98cdf0e10cSrcweir xRet.set( this ); 99cdf0e10cSrcweir 100cdf0e10cSrcweir return xRet; 101cdf0e10cSrcweir } 102cdf0e10cSrcweir 103cdf0e10cSrcweir } } } 104