fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / oox / source / drawingml / table / tablestylecellstylecontext.cxx
blobef9be244dfe064007862d8ad177f93331e058a72
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 "drawingml/table/tablestylecellstylecontext.hxx"
23 #include "drawingml/fillpropertiesgroupcontext.hxx"
24 #include "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( ContextHandler2Helper& rParent, TableStylePart& rTableStylePart )
35 : ContextHandler2( rParent )
36 , mrTableStylePart( rTableStylePart )
37 , mnLineType( XML_none )
41 TableStyleCellStyleContext::~TableStyleCellStyleContext()
45 // CT_TableStyleCellStyle
46 ContextHandlerRef
47 TableStyleCellStyleContext::onCreateContext( ::sal_Int32 aElementToken, const AttributeList& rAttribs )
49 switch( aElementToken )
51 case A_TOKEN( tcBdr ): // CT_TableCellBorderStyle
52 break;
53 case A_TOKEN( left ): // CT_ThemeableLineStyle
54 case A_TOKEN( right ):
55 case A_TOKEN( top ):
56 case A_TOKEN( bottom ):
57 case A_TOKEN( insideH ):
58 case A_TOKEN( insideV ):
59 case A_TOKEN( tl2br ):
60 case A_TOKEN( tr2bl ):
61 mnLineType = getBaseToken( aElementToken );
62 break;
64 case A_TOKEN( ln ):
66 if ( mnLineType != XML_none )
68 std::map < sal_Int32, ::oox::drawingml::LinePropertiesPtr >& rLineBorders = mrTableStylePart.getLineBorders();
69 ::oox::drawingml::LinePropertiesPtr mpLineProperties( new oox::drawingml::LineProperties );
70 rLineBorders[ mnLineType ] = mpLineProperties;
71 return new LinePropertiesContext( *this, rAttribs, *mpLineProperties );
74 break;
75 case A_TOKEN( lnRef ):
77 if ( mnLineType != XML_none )
79 ShapeStyleRef& rLineStyleRef = mrTableStylePart.getStyleRefs()[ mnLineType ];
80 rLineStyleRef.mnThemedIdx = rAttribs.getInteger( XML_idx, 0 );
81 return new ColorContext( *this, rLineStyleRef.maPhClr );
84 break;
86 // EG_ThemeableFillStyle (choice)
87 case A_TOKEN( fill ): // CT_FillProperties
89 FillPropertiesPtr& rxFillProperties = mrTableStylePart.getFillProperties();
90 rxFillProperties.reset( new FillProperties );
91 return new FillPropertiesContext( *this, *rxFillProperties );
93 case A_TOKEN( fillRef ): // CT_StyleMatrixReference
95 ShapeStyleRef& rStyleRef = mrTableStylePart.getStyleRefs()[ XML_fillRef ];
96 rStyleRef.mnThemedIdx = rAttribs.getInteger( XML_idx, 0 );
97 return new ColorContext( *this, rStyleRef.maPhClr );
99 case A_TOKEN( cell3D ): // CT_Cell3D
100 break;
103 return this;
106 } } }
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */