diff options
author | Noel Grandin <noel@peralex.com> | 2013-05-09 14:03:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-05-13 09:38:03 +0200 |
commit | 088e86b865062dd4cc5ba0c85c6068dea62238db (patch) | |
tree | 3f4ba85335bae3349bf4852245400b35b36d7ea0 /offapi | |
parent | 5d1ad167294878789e644452f23ef883af93fe87 (diff) |
fdo#46808, Convert some chart2 services to new style
The services already existed, they just needed IDL files
Change-Id: Ia7bdae932c5fb4b47d23afd2bb0756ecc9cbf6f7
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 4 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/CartesianCoordinateSystem2d.idl | 35 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/CartesianCoordinateSystem3d.idl | 35 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/PolarCoordinateSystem2d.idl | 35 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/PolarCoordinateSystem3d.idl | 35 |
5 files changed, 144 insertions, 0 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index b500e72e34e8..05f7da2c500c 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -76,7 +76,11 @@ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/awt/tree,\ TreeControl \ )) $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/chart2,\ + CartesianCoordinateSystem2d \ + CartesianCoordinateSystem3d \ FormattedString \ + PolarCoordinateSystem2d \ + PolarCoordinateSystem3d \ )) $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,offapi/com/sun/star/chart2/data,\ DatabaseDataProvider \ diff --git a/offapi/com/sun/star/chart2/CartesianCoordinateSystem2d.idl b/offapi/com/sun/star/chart2/CartesianCoordinateSystem2d.idl new file mode 100644 index 000000000000..c547575bfda7 --- /dev/null +++ b/offapi/com/sun/star/chart2/CartesianCoordinateSystem2d.idl @@ -0,0 +1,35 @@ +/* -*- 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_CartesianCoordinateSystem2d_idl +#define com_sun_star_chart2_CartesianCoordinateSystem2d_idl + +#include <com/sun/star/chart2/XCoordinateSystem.idl> + +module com { module sun { module star { module chart2 { + +/** + @since LibreOffice 4.1 + */ +service CartesianCoordinateSystem2d : XCoordinateSystem; + +}; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/chart2/CartesianCoordinateSystem3d.idl b/offapi/com/sun/star/chart2/CartesianCoordinateSystem3d.idl new file mode 100644 index 000000000000..05f475220bb1 --- /dev/null +++ b/offapi/com/sun/star/chart2/CartesianCoordinateSystem3d.idl @@ -0,0 +1,35 @@ +/* -*- 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_CartesianCoordinateSystem3d_idl +#define com_sun_star_chart2_CartesianCoordinateSystem3d_idl + +#include <com/sun/star/chart2/XCoordinateSystem.idl> + +module com { module sun { module star { module chart2 { + +/** + @since LibreOffice 4.1 + */ +service CartesianCoordinateSystem3d : XCoordinateSystem; + +}; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/chart2/PolarCoordinateSystem2d.idl b/offapi/com/sun/star/chart2/PolarCoordinateSystem2d.idl new file mode 100644 index 000000000000..14597842daf8 --- /dev/null +++ b/offapi/com/sun/star/chart2/PolarCoordinateSystem2d.idl @@ -0,0 +1,35 @@ +/* -*- 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_PolarCoordinateSystem2d_idl +#define com_sun_star_chart2_PolarCoordinateSystem2d_idl + +#include <com/sun/star/chart2/XCoordinateSystem.idl> + +module com { module sun { module star { module chart2 { + +/** + @since LibreOffice 4.1 + */ +service PolarCoordinateSystem2d : XCoordinateSystem; + +}; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/chart2/PolarCoordinateSystem3d.idl b/offapi/com/sun/star/chart2/PolarCoordinateSystem3d.idl new file mode 100644 index 000000000000..afbdf5ddb213 --- /dev/null +++ b/offapi/com/sun/star/chart2/PolarCoordinateSystem3d.idl @@ -0,0 +1,35 @@ +/* -*- 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_PolarCoordinateSystem3d_idl +#define com_sun_star_chart2_PolarCoordinateSystem3d_idl + +#include <com/sun/star/chart2/XCoordinateSystem.idl> + +module com { module sun { module star { module chart2 { + +/** + @since LibreOffice 4.1 + */ +service PolarCoordinateSystem3d : XCoordinateSystem; + +}; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |