From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- svx/source/items/chrtitem.cxx | 178 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 svx/source/items/chrtitem.cxx (limited to 'svx/source/items/chrtitem.cxx') diff --git a/svx/source/items/chrtitem.cxx b/svx/source/items/chrtitem.cxx new file mode 100644 index 000000000..6fb6e8523 --- /dev/null +++ b/svx/source/items/chrtitem.cxx @@ -0,0 +1,178 @@ +/* -*- 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/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#include +#include +#include +#include + +#include + +using namespace ::com::sun::star; + + +SfxPoolItem* SvxDoubleItem::CreateDefault() { return new SvxDoubleItem(0.0, TypedWhichId(0));} + +SvxChartTextOrderItem::SvxChartTextOrderItem(SvxChartTextOrder eOrder, + TypedWhichId nId) : + SfxEnumItem(nId, eOrder) +{ +} + +SvxChartTextOrderItem* SvxChartTextOrderItem::Clone(SfxItemPool* /*pPool*/) const +{ + return new SvxChartTextOrderItem(*this); +} + +bool SvxChartTextOrderItem::QueryValue( css::uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const +{ + // the order of the two enums is not equal, so a mapping is required + css::chart::ChartAxisArrangeOrderType eAO; + SvxChartTextOrder eOrder( GetValue()); + + switch( eOrder ) + { + case SvxChartTextOrder::SideBySide: + eAO = css::chart::ChartAxisArrangeOrderType_SIDE_BY_SIDE; break; + case SvxChartTextOrder::UpDown: + eAO = css::chart::ChartAxisArrangeOrderType_STAGGER_ODD; break; + case SvxChartTextOrder::DownUp: + eAO = css::chart::ChartAxisArrangeOrderType_STAGGER_EVEN; break; + case SvxChartTextOrder::Auto: + eAO = css::chart::ChartAxisArrangeOrderType_AUTO; break; + } + + rVal <<= eAO; + + return true; +} + + +bool SvxChartTextOrderItem::PutValue( const css::uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) +{ + // the order of the two enums is not equal, so a mapping is required + css::chart::ChartAxisArrangeOrderType eAO; + SvxChartTextOrder eOrder; + + if(!(rVal >>= eAO)) + { + // also try an int (for Basic) + sal_Int32 nAO = 0; + if(!(rVal >>= nAO)) + return false; + eAO = static_cast< css::chart::ChartAxisArrangeOrderType >( nAO ); + } + + switch( eAO ) + { + case css::chart::ChartAxisArrangeOrderType_SIDE_BY_SIDE: + eOrder = SvxChartTextOrder::SideBySide; break; + case css::chart::ChartAxisArrangeOrderType_STAGGER_ODD: + eOrder = SvxChartTextOrder::UpDown; break; + case css::chart::ChartAxisArrangeOrderType_STAGGER_EVEN: + eOrder = SvxChartTextOrder::DownUp; break; + case css::chart::ChartAxisArrangeOrderType_AUTO: + eOrder = SvxChartTextOrder::Auto; break; + default: + return false; + } + + SetValue( eOrder ); + + return true; +} + +SvxDoubleItem::SvxDoubleItem(double fValue, TypedWhichId nId) : + SfxPoolItem(nId), + fVal(fValue) +{ +} + +SvxDoubleItem::SvxDoubleItem(const SvxDoubleItem& rItem) : + SfxPoolItem(rItem), + fVal(rItem.fVal) +{ +} + +bool SvxDoubleItem::GetPresentation + ( SfxItemPresentation /*ePresentation*/, MapUnit /*eCoreMetric*/, + MapUnit /*ePresentationMetric*/, OUString& rText, + const IntlWrapper& rIntlWrapper) const +{ + rText = ::rtl::math::doubleToUString( fVal, rtl_math_StringFormat_E, 4, + rIntlWrapper.getLocaleData()->getNumDecimalSep()[0], true ); + return true; +} + +bool SvxDoubleItem::operator == (const SfxPoolItem& rItem) const +{ + assert(SfxPoolItem::operator==(rItem)); + return static_cast(rItem).fVal == fVal; +} + +SvxDoubleItem* SvxDoubleItem::Clone(SfxItemPool* /*pPool*/) const +{ + return new SvxDoubleItem(*this); +} + +bool SvxDoubleItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const +{ + rVal <<= fVal; + return true; +} + +bool SvxDoubleItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) +{ + return rVal >>= fVal; +} + +SvxChartKindErrorItem::SvxChartKindErrorItem(SvxChartKindError eOrient, + TypedWhichId nId) : + SfxEnumItem(nId, eOrient) +{ +} + +SvxChartKindErrorItem* SvxChartKindErrorItem::Clone(SfxItemPool* /*pPool*/) const +{ + return new SvxChartKindErrorItem(*this); +} + +SvxChartIndicateItem::SvxChartIndicateItem(SvxChartIndicate eOrient, + TypedWhichId nId) : + SfxEnumItem(nId, eOrient) +{ +} + +SvxChartIndicateItem* SvxChartIndicateItem::Clone(SfxItemPool* /*pPool*/) const +{ + return new SvxChartIndicateItem(*this); +} + +SvxChartRegressItem::SvxChartRegressItem(SvxChartRegress eOrient, + TypedWhichId nId) : + SfxEnumItem(nId, eOrient) +{ +} + +SvxChartRegressItem* SvxChartRegressItem::Clone(SfxItemPool* /*pPool*/) const +{ + return new SvxChartRegressItem(*this); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3