fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / chart2 / source / view / main / VLineProperties.cxx
blob8cf06e6913bf4a70cb471fc96ab51043416edaa8
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 "VLineProperties.hxx"
21 #include "macros.hxx"
22 #include <com/sun/star/drawing/LineStyle.hpp>
24 namespace chart
26 using namespace ::com::sun::star;
28 // get line properties from a propertyset
30 VLineProperties::VLineProperties()
32 this->Color = uno::makeAny( sal_Int32(0x000000) ); //type sal_Int32 UNO_NAME_LINECOLOR
33 this->LineStyle = uno::makeAny( drawing::LineStyle_SOLID ); //type drawing::LineStyle for property UNO_NAME_LINESTYLE
34 this->Transparence = uno::makeAny( sal_Int16(0) );//type sal_Int16 for property UNO_NAME_LINETRANSPARENCE
35 this->Width = uno::makeAny( sal_Int32(0) );//type sal_Int32 for property UNO_NAME_LINEWIDTH
38 void VLineProperties::initFromPropertySet( const uno::Reference< beans::XPropertySet >& xProp, bool bUseSeriesPropertyNames )
40 if(xProp.is())
42 if( bUseSeriesPropertyNames ) try
44 this->Color = xProp->getPropertyValue( "BorderColor" );
45 this->LineStyle = xProp->getPropertyValue( "BorderStyle" );
46 this->Transparence = xProp->getPropertyValue( "BorderTransparency" );
47 this->Width = xProp->getPropertyValue( "BorderWidth" );
48 this->DashName = xProp->getPropertyValue( "BorderDashName" );
50 catch( const uno::Exception& e )
52 ASSERT_EXCEPTION( e );
54 else try
56 this->Color = xProp->getPropertyValue( "LineColor" );
57 this->LineStyle = xProp->getPropertyValue( "LineStyle" );
58 this->Transparence = xProp->getPropertyValue( "LineTransparence" );
59 this->Width = xProp->getPropertyValue( "LineWidth" );
60 this->DashName = xProp->getPropertyValue( "LineDashName" );
62 catch( const uno::Exception& e )
64 ASSERT_EXCEPTION( e );
67 else
68 this->LineStyle = uno::makeAny( drawing::LineStyle_NONE );
71 bool VLineProperties::isLineVisible() const
73 bool bRet = false;
75 drawing::LineStyle aLineStyle(drawing::LineStyle_SOLID);
76 this->LineStyle >>= aLineStyle;
77 if( aLineStyle != drawing::LineStyle_NONE )
79 sal_Int16 nLineTransparence=0;
80 this->Transparence >>= nLineTransparence;
81 if(100!=nLineTransparence)
83 bRet = true;
87 return bRet;
90 } //namespace chart
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */