fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / oox / source / drawingml / table / tablestylecellstylecontext.cxx
blob6304b612f3acae78506f1103ae97b7755ece1cd2
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>
22 #include "oox/drawingml/table/tablestylecellstylecontext.hxx"
23 #include "oox/drawingml/fillpropertiesgroupcontext.hxx"
24 #include "oox/drawingml/linepropertiescontext.hxx"
25 #include "oox/helper/attributelist.hxx"
27 using namespace ::oox::core;
28 using namespace ::com::sun::star;
29 using namespace ::com::sun::star::uno;
30 using namespace ::com::sun::star::xml::sax;
32 namespace oox { namespace drawingml { namespace table {
34 TableStyleCellStyleContext::TableStyleCellStyleContext( ContextHandler& rParent, TableStylePart& rTableStylePart )
35 : ContextHandler( rParent )
36 , mrTableStylePart( rTableStylePart )
37 , mnLineType( XML_none )
41 TableStyleCellStyleContext::~TableStyleCellStyleContext()
45 // CT_TableStyleCellStyle
46 uno::Reference< xml::sax::XFastContextHandler > SAL_CALL
47 TableStyleCellStyleContext::createFastChildContext( ::sal_Int32 aElementToken, const uno::Reference< xml::sax::XFastAttributeList >& xAttribs )
48 throw ( xml::sax::SAXException, uno::RuntimeException)
50 uno::Reference< xml::sax::XFastContextHandler > xRet;
51 AttributeList aAttribs( xAttribs );
52 switch( aElementToken )
54 case A_TOKEN( tcBdr ): // CT_TableCellBorderStyle
55 break;
56 case A_TOKEN( left ): // CT_ThemeableLineStyle
57 case A_TOKEN( right ):
58 case A_TOKEN( top ):
59 case A_TOKEN( bottom ):
60 case A_TOKEN( insideH ):
61 case A_TOKEN( insideV ):
62 case A_TOKEN( tl2br ):
63 case A_TOKEN( tr2bl ):
64 mnLineType = getBaseToken( aElementToken );
65 break;
67 case A_TOKEN( ln ):
69 if ( mnLineType != XML_none )
71 std::map < sal_Int32, ::oox::drawingml::LinePropertiesPtr >& rLineBorders = mrTableStylePart.getLineBorders();
72 ::oox::drawingml::LinePropertiesPtr mpLineProperties( new oox::drawingml::LineProperties );
73 rLineBorders[ mnLineType ] = mpLineProperties;
74 xRet = new LinePropertiesContext( *this, xAttribs, *mpLineProperties );
77 break;
78 case A_TOKEN( lnRef ):
80 if ( mnLineType != XML_none )
82 ShapeStyleRef& rLineStyleRef = mrTableStylePart.getStyleRefs()[ mnLineType ];
83 rLineStyleRef.mnThemedIdx = aAttribs.getInteger( XML_idx, 0 );
84 xRet.set( new ColorContext( *this, rLineStyleRef.maPhClr ) );
87 break;
89 // EG_ThemeableFillStyle (choice)
90 case A_TOKEN( fill ): // CT_FillProperties
92 FillPropertiesPtr& rxFillProperties = mrTableStylePart.getFillProperties();
93 rxFillProperties.reset( new FillProperties );
94 xRet.set( new FillPropertiesContext( *this, *rxFillProperties ) );
96 break;
97 case A_TOKEN( fillRef ): // CT_StyleMatrixReference
99 ShapeStyleRef& rStyleRef = mrTableStylePart.getStyleRefs()[ XML_fillRef ];
100 rStyleRef.mnThemedIdx = aAttribs.getInteger( XML_idx, 0 );
101 xRet.set( new ColorContext( *this, rStyleRef.maPhClr ) );
103 break;
105 case A_TOKEN( cell3D ): // CT_Cell3D
106 break;
108 if( !xRet.is() )
110 uno::Reference<XFastContextHandler> xTmp(this);
111 xRet.set( xTmp );
113 return xRet;
116 } } }
118 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */