diff options
author | Noel Grandin <noel@peralex.com> | 2013-05-09 11:12:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-05-13 09:38:03 +0200 |
commit | 5d1ad167294878789e644452f23ef883af93fe87 (patch) | |
tree | 8f8e14de156eb20e5843e7458502b58828c258a9 /offapi | |
parent | 39ab9c4e4f4fb26326d8b1f08e4ef45cbe268cfb (diff) |
fdo#46808 Convert chart2::FormattedString service to new style
API CHANGE: dropped the following services from the new unified
interface because the current service does not implement them.
service ::com::sun::star::style::CharacterProperties;
[optional] service ::com::sun::star::style::CharacterPropertiesAsian;
[optional] service ::com::sun::star::style::CharacterPropertiesComplex;
Change-Id: I7cb6a5d4e998975b1272f4f4da03feea30cd30b6
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 5 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/FormattedString.idl | 35 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/XFormattedString2.idl | 48 |
3 files changed, 56 insertions, 32 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index 825182a666cc..b500e72e34e8 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -75,6 +75,9 @@ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/awt/tree,\ MutableTreeNode \ TreeControl \ )) +$(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/chart2,\ + FormattedString \ +)) $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/chart2/data,\ DatabaseDataProvider \ LabeledDataSequence \ @@ -609,7 +612,6 @@ $(eval $(call gb_UnoApi_add_idlfiles_noheader,offapi,offapi/com/sun/star/chart2, Diagram \ ErrorBar \ ExponentialScaling \ - FormattedString \ GridProperties \ Legend \ LinearScaling \ @@ -2004,6 +2006,7 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/chart2,\ XDiagram \ XDiagramProvider \ XFormattedString \ + XFormattedString2 \ XInternalDataProvider \ XLabeled \ XLegend \ diff --git a/offapi/com/sun/star/chart2/FormattedString.idl b/offapi/com/sun/star/chart2/FormattedString.idl index e4be3c7de08a..e4d80e7ef3a7 100644 --- a/offapi/com/sun/star/chart2/FormattedString.idl +++ b/offapi/com/sun/star/chart2/FormattedString.idl @@ -20,40 +20,13 @@ #ifndef com_sun_star_chart2_FormattedString_idl #define com_sun_star_chart2_FormattedString_idl -#include <com/sun/star/beans/PropertySet.idl> -#include <com/sun/star/style/CharacterProperties.idl> -#include <com/sun/star/style/CharacterPropertiesAsian.idl> -#include <com/sun/star/style/CharacterPropertiesComplex.idl> -#include <com/sun/star/chart2/XFormattedString.idl> +#include <com/sun/star/chart2/XFormattedString2.idl> -module com -{ -module sun -{ -module star -{ -module chart2 -{ +module com { module sun { module star { module chart2 { -service FormattedString -{ - /** - */ - service com::sun::star::beans::PropertySet; +service FormattedString : XFormattedString2; - service ::com::sun::star::style::CharacterProperties; - [optional] service ::com::sun::star::style::CharacterPropertiesAsian; - [optional] service ::com::sun::star::style::CharacterPropertiesComplex; - - /** - */ - interface ::com::sun::star::chart2::XFormattedString; -}; - -} ; // chart2 -} ; // com -} ; // sun -} ; // star +}; }; }; }; #endif diff --git a/offapi/com/sun/star/chart2/XFormattedString2.idl b/offapi/com/sun/star/chart2/XFormattedString2.idl new file mode 100644 index 000000000000..ea80fce260d7 --- /dev/null +++ b/offapi/com/sun/star/chart2/XFormattedString2.idl @@ -0,0 +1,48 @@ +/* -*- 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 . + */ + +#ifndef com_sun_star_chart2_XFormattedString2_idl +#define com_sun_star_chart2_XFormattedString2_idl + +#include <com/sun/star/beans/XPropertySet.idl> +#include <com/sun/star/style/CharacterProperties.idl> +#include <com/sun/star/style/CharacterPropertiesAsian.idl> +#include <com/sun/star/style/CharacterPropertiesComplex.idl> +#include <com/sun/star/chart2/XFormattedString.idl> + +module com { module sun { module star { module chart2 { + +/** + Provides unified interface for FormattedString service. + + @since LibreOffice 4.1 +*/ +interface XFormattedString2 +{ + interface com::sun::star::beans::XPropertySet; + + interface com::sun::star::chart2::XFormattedString; + +}; + +}; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |