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 :
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"
26 :
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;
31 :
32 : namespace oox { namespace drawingml { namespace table {
33 :
34 0 : TableStyleCellStyleContext::TableStyleCellStyleContext( ContextHandler& rParent, TableStylePart& rTableStylePart )
35 : : ContextHandler( rParent )
36 : , mrTableStylePart( rTableStylePart )
37 0 : , mnLineType( XML_none )
38 : {
39 0 : }
40 :
41 0 : TableStyleCellStyleContext::~TableStyleCellStyleContext()
42 : {
43 0 : }
44 :
45 : // CT_TableStyleCellStyle
46 : uno::Reference< xml::sax::XFastContextHandler > SAL_CALL
47 0 : TableStyleCellStyleContext::createFastChildContext( ::sal_Int32 aElementToken, const uno::Reference< xml::sax::XFastAttributeList >& xAttribs )
48 : throw ( xml::sax::SAXException, uno::RuntimeException)
49 : {
50 0 : uno::Reference< xml::sax::XFastContextHandler > xRet;
51 0 : AttributeList aAttribs( xAttribs );
52 0 : switch( aElementToken )
53 : {
54 : case A_TOKEN( tcBdr ): // CT_TableCellBorderStyle
55 0 : 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 0 : mnLineType = getBaseToken( aElementToken );
65 0 : break;
66 :
67 : case A_TOKEN( ln ):
68 : {
69 0 : if ( mnLineType != XML_none )
70 : {
71 0 : std::map < sal_Int32, ::oox::drawingml::LinePropertiesPtr >& rLineBorders = mrTableStylePart.getLineBorders();
72 0 : ::oox::drawingml::LinePropertiesPtr mpLineProperties( new oox::drawingml::LineProperties );
73 0 : rLineBorders[ mnLineType ] = mpLineProperties;
74 0 : xRet = new LinePropertiesContext( *this, xAttribs, *mpLineProperties );
75 : }
76 : }
77 0 : break;
78 : case A_TOKEN( lnRef ):
79 : {
80 0 : if ( mnLineType != XML_none )
81 : {
82 0 : ShapeStyleRef& rLineStyleRef = mrTableStylePart.getStyleRefs()[ mnLineType ];
83 0 : rLineStyleRef.mnThemedIdx = aAttribs.getInteger( XML_idx, 0 );
84 0 : xRet.set( new ColorContext( *this, rLineStyleRef.maPhClr ) );
85 : }
86 : }
87 0 : break;
88 :
89 : // EG_ThemeableFillStyle (choice)
90 : case A_TOKEN( fill ): // CT_FillProperties
91 : {
92 0 : FillPropertiesPtr& rxFillProperties = mrTableStylePart.getFillProperties();
93 0 : rxFillProperties.reset( new FillProperties );
94 0 : xRet.set( new FillPropertiesContext( *this, *rxFillProperties ) );
95 : }
96 0 : break;
97 : case A_TOKEN( fillRef ): // CT_StyleMatrixReference
98 : {
99 0 : ShapeStyleRef& rStyleRef = mrTableStylePart.getStyleRefs()[ XML_fillRef ];
100 0 : rStyleRef.mnThemedIdx = aAttribs.getInteger( XML_idx, 0 );
101 0 : xRet.set( new ColorContext( *this, rStyleRef.maPhClr ) );
102 : }
103 0 : break;
104 :
105 : case A_TOKEN( cell3D ): // CT_Cell3D
106 0 : break;
107 : }
108 0 : if( !xRet.is() )
109 : {
110 0 : uno::Reference<XFastContextHandler> xTmp(this);
111 0 : xRet.set( xTmp );
112 : }
113 0 : return xRet;
114 : }
115 :
116 51 : } } }
117 :
118 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|