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 :
10 : #ifndef INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX
11 : #define INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX
12 :
13 : #include <com/sun/star/drawing/LineStyle.hpp>
14 : #include <com/sun/star/util/Color.hpp>
15 : #include <com/sun/star/drawing/LineJoint.hpp>
16 : #include <com/sun/star/drawing/LineDash.hpp>
17 : #include <com/sun/star/uno/Any.hxx>
18 :
19 17 : class LineProperties
20 : {
21 : private:
22 : OUString maDashName;
23 : com::sun::star::drawing::LineDash maLineDash;
24 : sal_Int32 mnLineWidth;
25 : com::sun::star::drawing::LineStyle meLineStyle;
26 : com::sun::star::util::Color maLineColor;
27 : sal_Int16 mnLineTransparence;
28 : com::sun::star::drawing::LineJoint meLineJoint;
29 :
30 : public:
31 : LineProperties();
32 : LineProperties(const LineProperties&);
33 :
34 : com::sun::star::uno::Any getPropertyValue(const OUString& rName);
35 : void setPropertyValue(const OUString& rName, const com::sun::star::uno::Any& rAny);
36 : };
37 :
38 : #endif
39 :
40 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|