2010-10-27 12:43:08 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 14:30:25 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
2003-12-11 08:19:31 +00:00
|
|
|
|
2013-10-23 22:48:59 +02:00
|
|
|
#ifndef INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX
|
|
|
|
#define INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX
|
2003-12-11 08:19:31 +00:00
|
|
|
|
2013-04-21 02:49:04 +02:00
|
|
|
#include <com/sun/star/drawing/LineStyle.hpp>
|
|
|
|
#include <com/sun/star/util/Color.hpp>
|
|
|
|
#include <com/sun/star/drawing/LineJoint.hpp>
|
2013-04-22 06:18:17 +02:00
|
|
|
#include <com/sun/star/drawing/LineDash.hpp>
|
2013-04-21 02:49:04 +02:00
|
|
|
#include <com/sun/star/uno/Any.hxx>
|
2003-12-11 08:19:31 +00:00
|
|
|
|
2013-04-21 02:49:04 +02:00
|
|
|
class LineProperties
|
2003-12-11 08:19:31 +00:00
|
|
|
{
|
2013-04-21 02:49:04 +02:00
|
|
|
private:
|
|
|
|
OUString maDashName;
|
2013-04-22 06:18:17 +02:00
|
|
|
com::sun::star::drawing::LineDash maLineDash;
|
2013-04-21 02:49:04 +02:00
|
|
|
sal_Int32 mnLineWidth;
|
|
|
|
com::sun::star::drawing::LineStyle meLineStyle;
|
|
|
|
com::sun::star::util::Color maLineColor;
|
2013-04-22 10:34:40 +02:00
|
|
|
sal_Int16 mnLineTransparence;
|
2013-04-21 02:49:04 +02:00
|
|
|
com::sun::star::drawing::LineJoint meLineJoint;
|
2003-12-11 08:19:31 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
LineProperties();
|
2013-04-21 02:49:04 +02:00
|
|
|
LineProperties(const LineProperties&);
|
2003-12-11 08:19:31 +00:00
|
|
|
|
2013-04-21 02:49:04 +02:00
|
|
|
com::sun::star::uno::Any getPropertyValue(const OUString& rName);
|
|
|
|
void setPropertyValue(const OUString& rName, const com::sun::star::uno::Any& rAny);
|
|
|
|
};
|
2003-12-11 08:19:31 +00:00
|
|
|
|
|
|
|
#endif
|
2010-10-27 12:43:08 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|