diff options
author | Noel Grandin <noel@peralex.com> | 2016-07-05 09:54:33 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-07-05 10:51:09 +0000 |
commit | 7001ca25ec7251c5bac4a5ff304d1f26794b58a0 (patch) | |
tree | afba191579312c64d09c125d4b5e170448ce9edc /chart2/source/inc/LineProperties.hxx | |
parent | 860a82766f2c6d4fad340bf6ab283a7cd22a1fd5 (diff) |
merge LineProperties with chart::ErrorBar
Change-Id: Ic3490a15339ff981e90a86cb69c206c231db9161
Reviewed-on: https://gerrit.libreoffice.org/26932
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'chart2/source/inc/LineProperties.hxx')
-rw-r--r-- | chart2/source/inc/LineProperties.hxx | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/chart2/source/inc/LineProperties.hxx b/chart2/source/inc/LineProperties.hxx deleted file mode 100644 index 6c9d413a656e..000000000000 --- a/chart2/source/inc/LineProperties.hxx +++ /dev/null @@ -1,40 +0,0 @@ -/* -*- 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/. - */ - -#ifndef INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX -#define INCLUDED_CHART2_SOURCE_INC_LINEPROPERTIES_HXX - -#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> - -class LineProperties -{ -private: - OUString maDashName; - css::drawing::LineDash maLineDash; - sal_Int32 mnLineWidth; - css::drawing::LineStyle meLineStyle; - css::util::Color maLineColor; - sal_Int16 mnLineTransparence; - css::drawing::LineJoint meLineJoint; - -public: - LineProperties(); - LineProperties(const LineProperties&); - - css::uno::Any getPropertyValue(const OUString& rName); - void setPropertyValue(const OUString& rName, const css::uno::Any& rAny); -}; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |