Files
libreoffice/chart2/source/inc/LineProperties.hxx

41 lines
1.2 KiB
C++
Raw Normal View History

2010-10-27 12:43:08 +01:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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
#ifndef INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX
#define INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX
2003-12-11 08:19:31 +00:00
#include <com/sun/star/drawing/LineStyle.hpp>
#include <com/sun/star/util/Color.hpp>
#include <com/sun/star/drawing/LineJoint.hpp>
#include <com/sun/star/drawing/LineDash.hpp>
#include <com/sun/star/uno/Any.hxx>
2003-12-11 08:19:31 +00:00
class LineProperties
2003-12-11 08:19:31 +00:00
{
private:
OUString maDashName;
com::sun::star::drawing::LineDash maLineDash;
sal_Int32 mnLineWidth;
com::sun::star::drawing::LineStyle meLineStyle;
com::sun::star::util::Color maLineColor;
sal_Int16 mnLineTransparence;
com::sun::star::drawing::LineJoint meLineJoint;
2003-12-11 08:19:31 +00:00
public:
LineProperties();
LineProperties(const LineProperties&);
2003-12-11 08:19:31 +00: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: */