mirror of
https://github.com/LibreOffice/core.git
synced 2025-07-26 15:45:26 +00:00

This reverts commit 1886ecf7ee
.
because reportdesign will pass in a OReportDefinition* and not a SvNumberFormatsSupplierObj*
Change-Id: Ic0068d18a10ce24ed74bb86cfef4cb9f34e9eeb2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184437
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
96 lines
3.9 KiB
C++
96 lines
3.9 KiB
C++
/* -*- 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 .
|
|
*/
|
|
#pragma once
|
|
|
|
#include "StackMode.hxx"
|
|
#include "ChartTypeTemplate.hxx"
|
|
#include <com/sun/star/awt/Rectangle.hpp>
|
|
#include <rtl/ref.hxx>
|
|
|
|
namespace chart { class ChartModel; }
|
|
namespace com::sun::star::util { class XNumberFormats; }
|
|
namespace com::sun::star::util { class XNumberFormatsSupplier; }
|
|
|
|
namespace chart
|
|
{
|
|
class BaseCoordinateSystem;
|
|
class ChartType;
|
|
class DataSeries;
|
|
|
|
class DiagramHelper
|
|
{
|
|
public:
|
|
|
|
/** Retrieves the stackmode of the first DataSeries or none. If the series have differing stack
|
|
modes, rbAmbiguous is set to true. If no series is there rbFound is set to false.
|
|
|
|
@param xCorrespondingCoordinateSystem
|
|
The coordinate system in which the given chart type xChartType is
|
|
located. (This is needed for determining percent stacking. If
|
|
omitted, the result will just indicate "not stacked", "stacked" or
|
|
"ambiguous")
|
|
*/
|
|
static StackMode getStackModeFromChartType(
|
|
const rtl::Reference< ::chart::ChartType > & xChartType,
|
|
bool& rbFound, bool& rbAmbiguous,
|
|
const rtl::Reference< ::chart::BaseCoordinateSystem > & xCorrespondingCoordinateSystem
|
|
);
|
|
|
|
static css::uno::Sequence< OUString >
|
|
getExplicitSimpleCategories( ChartModel& rModel );
|
|
|
|
static css::uno::Sequence< OUString >
|
|
generateAutomaticCategoriesFromCooSys(
|
|
const rtl::Reference< ::chart::BaseCoordinateSystem > & xCooSys );
|
|
|
|
static void switchToDateCategories(
|
|
const rtl::Reference<::chart::ChartModel> & xChartDoc );
|
|
|
|
static void switchToTextCategories(
|
|
const rtl::Reference<::chart::ChartModel> & xChartDoc );
|
|
|
|
static bool isDateNumberFormat( sal_Int32 nNumberFormat, const css::uno::Reference< css::util::XNumberFormats >& xNumberFormats );
|
|
static sal_Int32 getDateNumberFormat( const css::uno::Reference< css::util::XNumberFormatsSupplier >& xNumberFormatsSupplier );
|
|
static sal_Int32 getDateTimeInputNumberFormat( const css::uno::Reference< css::util::XNumberFormatsSupplier >& xNumberFormatsSupplier, double fNumber );
|
|
|
|
static sal_Int32 getPercentNumberFormat( const css::uno::Reference<
|
|
css::util::XNumberFormatsSupplier >& xNumberFormatsSupplier );
|
|
|
|
static bool areChartTypesCompatible(
|
|
const rtl::Reference< ::chart::ChartType >& xFirstType,
|
|
const rtl::Reference< ::chart::ChartType >& xSecondType );
|
|
|
|
static bool setDiagramPositioning( const rtl::Reference<::chart::ChartModel>& xChartModel,
|
|
const css::awt::Rectangle& rPosRect /*100th mm*/ );
|
|
|
|
static css::awt::Rectangle getDiagramRectangleFromModel( const rtl::Reference<::chart::ChartModel>& xChartModel );
|
|
|
|
static bool switchDiagramPositioningToExcludingPositioning( ChartModel& rModel
|
|
, bool bResetModifiedState //set model back to unchanged if it was unchanged before
|
|
, bool bConvertAlsoFromAutoPositioning );
|
|
|
|
private:
|
|
DiagramHelper() = delete;
|
|
|
|
};
|
|
|
|
} // namespace chart
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|