1*b1cdbd2cSJim Jagielski /**************************************************************
2*b1cdbd2cSJim Jagielski  *
3*b1cdbd2cSJim Jagielski  * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski  * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski  * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski  * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski  * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski  * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski  * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski  *
11*b1cdbd2cSJim Jagielski  *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski  *
13*b1cdbd2cSJim Jagielski  * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski  * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski  * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski  * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski  * under the License.
19*b1cdbd2cSJim Jagielski  *
20*b1cdbd2cSJim Jagielski  *************************************************************/
21*b1cdbd2cSJim Jagielski 
22*b1cdbd2cSJim Jagielski 
23*b1cdbd2cSJim Jagielski 
24*b1cdbd2cSJim Jagielski #include "oox/drawingml/linepropertiescontext.hxx"
25*b1cdbd2cSJim Jagielski #include "oox/drawingml/drawingmltypes.hxx"
26*b1cdbd2cSJim Jagielski #include "oox/drawingml/fillpropertiesgroupcontext.hxx"
27*b1cdbd2cSJim Jagielski #include "oox/drawingml/lineproperties.hxx"
28*b1cdbd2cSJim Jagielski #include "oox/helper/attributelist.hxx"
29*b1cdbd2cSJim Jagielski 
30*b1cdbd2cSJim Jagielski using ::rtl::OUString;
31*b1cdbd2cSJim Jagielski using namespace ::oox::core;
32*b1cdbd2cSJim Jagielski using namespace ::com::sun::star::uno;
33*b1cdbd2cSJim Jagielski using namespace ::com::sun::star::xml::sax;
34*b1cdbd2cSJim Jagielski 
35*b1cdbd2cSJim Jagielski // CT_LineProperties
36*b1cdbd2cSJim Jagielski 
37*b1cdbd2cSJim Jagielski namespace oox { namespace drawingml {
38*b1cdbd2cSJim Jagielski // ---------------------------------------------------------------------
39*b1cdbd2cSJim Jagielski 
LinePropertiesContext(ContextHandler & rParent,const Reference<XFastAttributeList> & xAttribs,LineProperties & rLineProperties)40*b1cdbd2cSJim Jagielski LinePropertiesContext::LinePropertiesContext( ContextHandler& rParent, const Reference< XFastAttributeList >& xAttribs,
41*b1cdbd2cSJim Jagielski     LineProperties& rLineProperties ) throw()
42*b1cdbd2cSJim Jagielski : ContextHandler( rParent )
43*b1cdbd2cSJim Jagielski , mrLineProperties( rLineProperties )
44*b1cdbd2cSJim Jagielski {
45*b1cdbd2cSJim Jagielski     AttributeList aAttribs( xAttribs );
46*b1cdbd2cSJim Jagielski     mrLineProperties.moLineWidth = aAttribs.getInteger( XML_w );
47*b1cdbd2cSJim Jagielski     mrLineProperties.moLineCompound = aAttribs.getToken( XML_cmpd );
48*b1cdbd2cSJim Jagielski     mrLineProperties.moLineCap = aAttribs.getToken( XML_cap );
49*b1cdbd2cSJim Jagielski }
50*b1cdbd2cSJim Jagielski 
~LinePropertiesContext()51*b1cdbd2cSJim Jagielski LinePropertiesContext::~LinePropertiesContext()
52*b1cdbd2cSJim Jagielski {
53*b1cdbd2cSJim Jagielski }
54*b1cdbd2cSJim Jagielski 
createFastChildContext(sal_Int32 nElement,const Reference<XFastAttributeList> & xAttribs)55*b1cdbd2cSJim Jagielski Reference< XFastContextHandler > LinePropertiesContext::createFastChildContext( sal_Int32 nElement, const Reference< XFastAttributeList >& xAttribs ) throw (SAXException, RuntimeException)
56*b1cdbd2cSJim Jagielski {
57*b1cdbd2cSJim Jagielski     Reference< XFastContextHandler > xRet;
58*b1cdbd2cSJim Jagielski     AttributeList aAttribs( xAttribs );
59*b1cdbd2cSJim Jagielski     switch( nElement )
60*b1cdbd2cSJim Jagielski     {
61*b1cdbd2cSJim Jagielski         // LineFillPropertiesGroup
62*b1cdbd2cSJim Jagielski         case A_TOKEN( noFill ):
63*b1cdbd2cSJim Jagielski         case A_TOKEN( solidFill ):
64*b1cdbd2cSJim Jagielski         case A_TOKEN( gradFill ):
65*b1cdbd2cSJim Jagielski         case A_TOKEN( pattFill ):
66*b1cdbd2cSJim Jagielski             xRet = FillPropertiesContext::createFillContext( *this, nElement, xAttribs, mrLineProperties.maLineFill );
67*b1cdbd2cSJim Jagielski         break;
68*b1cdbd2cSJim Jagielski 
69*b1cdbd2cSJim Jagielski         // LineDashPropertiesGroup
70*b1cdbd2cSJim Jagielski         case A_TOKEN( prstDash ):  // CT_PresetLineDashProperties
71*b1cdbd2cSJim Jagielski             mrLineProperties.moPresetDash = aAttribs.getToken( XML_val );
72*b1cdbd2cSJim Jagielski         break;
73*b1cdbd2cSJim Jagielski         case A_TOKEN( custDash ):  // CT_DashStopList
74*b1cdbd2cSJim Jagielski             xRet = this;
75*b1cdbd2cSJim Jagielski         break;
76*b1cdbd2cSJim Jagielski         case A_TOKEN( ds ):
77*b1cdbd2cSJim Jagielski             mrLineProperties.maCustomDash.push_back( LineProperties::DashStop(
78*b1cdbd2cSJim Jagielski                 aAttribs.getInteger( XML_d, 0 ), aAttribs.getInteger( XML_sp, 0 ) ) );
79*b1cdbd2cSJim Jagielski         break;
80*b1cdbd2cSJim Jagielski 
81*b1cdbd2cSJim Jagielski         // LineJoinPropertiesGroup
82*b1cdbd2cSJim Jagielski         case A_TOKEN( round ):
83*b1cdbd2cSJim Jagielski         case A_TOKEN( bevel ):
84*b1cdbd2cSJim Jagielski         case A_TOKEN( miter ):
85*b1cdbd2cSJim Jagielski             mrLineProperties.moLineJoint = getBaseToken( nElement );
86*b1cdbd2cSJim Jagielski         break;
87*b1cdbd2cSJim Jagielski 
88*b1cdbd2cSJim Jagielski         case A_TOKEN( headEnd ):  // CT_LineEndProperties
89*b1cdbd2cSJim Jagielski         case A_TOKEN( tailEnd ):  // CT_LineEndProperties
90*b1cdbd2cSJim Jagielski         {                         // ST_LineEndType
91*b1cdbd2cSJim Jagielski             bool bTailEnd = nElement == A_TOKEN( tailEnd );
92*b1cdbd2cSJim Jagielski             LineArrowProperties& rArrowProps = bTailEnd ? mrLineProperties.maEndArrow : mrLineProperties.maStartArrow;
93*b1cdbd2cSJim Jagielski             rArrowProps.moArrowType = aAttribs.getToken( XML_type );
94*b1cdbd2cSJim Jagielski             rArrowProps.moArrowWidth = aAttribs.getToken( XML_w );
95*b1cdbd2cSJim Jagielski             rArrowProps.moArrowLength = aAttribs.getToken( XML_len );
96*b1cdbd2cSJim Jagielski         }
97*b1cdbd2cSJim Jagielski         break;
98*b1cdbd2cSJim Jagielski     }
99*b1cdbd2cSJim Jagielski     return xRet;
100*b1cdbd2cSJim Jagielski }
101*b1cdbd2cSJim Jagielski 
102*b1cdbd2cSJim Jagielski } }
103