summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-08-03 17:39:56 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-08-06 10:33:46 +0100
commitd10065ea3a45ef27f2d29ee75c3a51b1fd253431 (patch)
tree74f8b72e8bb0f2dd5fe9a961290f0e8628e6f53c
parentSome minor fixes. (diff)
downloadcore-d10065ea3a45ef27f2d29ee75c3a51b1fd253431.tar.gz
core-d10065ea3a45ef27f2d29ee75c3a51b1fd253431.zip
merge pointlessly fragmented chart2 libraries, leaving controller split.
-rw-r--r--Repository.mk4
-rw-r--r--android/Bootstrap/Makefile.shared6
-rw-r--r--android/experimental/LibreOffice4Android/Makefile17
-rw-r--r--android/qa/desktop/Makefile12
-rw-r--r--chart2/Library_chartcontroller.mk3
-rw-r--r--chart2/Library_chartcore.mk230
-rw-r--r--chart2/Library_chartmodel.mk115
-rw-r--r--chart2/Library_charttools.mk127
-rw-r--r--chart2/Library_chartview.mk115
-rw-r--r--chart2/Module_chart2.mk4
-rw-r--r--ios/qa/sc/Makefile2
-rw-r--r--scp2/source/ooo/file_library_ooo.scp4
-rw-r--r--scp2/source/ooo/module_hidden_ooo.scp4
13 files changed, 260 insertions, 383 deletions
diff --git a/Repository.mk b/Repository.mk
index e012879dc8b3..8e8df07d7f5b 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -245,9 +245,7 @@ $(eval $(call gb_Helper_register_libraries,OOOLIBS, \
basegfx \
calc \
chartcontroller \
- chartmodel \
- charttools \
- chartview \
+ chartcore \
cppcanvas \
ctl \
cui \
diff --git a/android/Bootstrap/Makefile.shared b/android/Bootstrap/Makefile.shared
index 6daef1347054..d5936765204e 100644
--- a/android/Bootstrap/Makefile.shared
+++ b/android/Bootstrap/Makefile.shared
@@ -51,3 +51,9 @@ uninstall:
clean: properties
$(ANT) clean
rm -rf assets $(SODEST) $(OBJLOCAL)
+
+# If you reinstall an app several times, even if you uninstall it
+# between, disk space seems to leak that won't get recycled until you
+# stop and start...
+stop-start-cycle:
+ $(ANDROID_SDK_HOME)/platform-tools/adb shell stop && $(ANDROID_SDK_HOME)/platform-tools/adb shell start && sleep 10
diff --git a/android/experimental/LibreOffice4Android/Makefile b/android/experimental/LibreOffice4Android/Makefile
index 9e6b239f1b74..577cf38cb76d 100644
--- a/android/experimental/LibreOffice4Android/Makefile
+++ b/android/experimental/LibreOffice4Android/Makefile
@@ -21,14 +21,21 @@ copy-stuff:
#
for F in $(strip \
analysislo \
+ avmedialo \
basebmplo \
basegfxlo \
bootstrap.uno \
+ canvastoolslo \
+ chartcontrollerlo \
+ chartcorelo \
comphelpgcc3 \
+ cppcanvaslo \
ctllo \
datelo \
dbaxmllo \
dbtoolslo \
+ drawinglayerlo \
+ embobj \
evtattlo \
expwrap.uno \
fastsax.uno \
@@ -39,6 +46,7 @@ copy-stuff:
fsstorage.uno \
gcc3_uno \
hwplo \
+ hyphenlo \
i18nisolang1gcc3 \
i18npool.uno \
i18nutilgcc3 \
@@ -53,9 +61,13 @@ copy-stuff:
jvmaccessgcc3 \
jvmfwk \
libotouchlo \
+ lnglo \
+ lnthlo \
lo-bootstrap \
localebe1.uno \
localedata_en \
+ localedata_es \
+ localedata_euro \
localedata_others \
lwpftlo \
mergedlo \
@@ -66,17 +78,21 @@ copy-stuff:
reg \
saxlo \
sclo \
+ sclo \
scdlo \
scfiltlo \
+ sdlo \
sddlo \
smdlo \
sotlo \
+ spelllo \
stocservices.uno \
store \
svgfilterlo \
svllo \
swdlo \
swlo \
+ swdlo \
t602filterlo \
textinstream.uno \
tllo \
@@ -99,6 +115,7 @@ copy-stuff:
xmlfdlo \
xmlreader \
xmlsecurity \
+ xoflo \
xslt \
xstor \
); do \
diff --git a/android/qa/desktop/Makefile b/android/qa/desktop/Makefile
index ca4ddc6fd68a..2c87ac904bc5 100644
--- a/android/qa/desktop/Makefile
+++ b/android/qa/desktop/Makefile
@@ -168,9 +168,7 @@ copy-stuff: buildrcs
scfiltlo \
\
chartcontrollerlo \
- chartviewlo \
- chartmodello \
- charttoolslo \
+ chartcorelo \
); do \
$(call COPYSO,$(OUTDIR)/lib/lib$${F}.so); \
done
@@ -230,11 +228,3 @@ run:
$(ANDROID_SDK_HOME)/platform-tools/adb push cmdline $(APP_DATA_PATH)/cmdline
$(ANDROID_SDK_HOME)/platform-tools/adb shell am start -n $(APP_PACKAGE)/$(BOOTSTRAP) -e lo-main-delay 20 -e lo-main-indirect-cmdline "$(APP_DATA_PATH)/cmdline"
# add -e lo-strace yes # if you want that
-
-# If you reinstall an app several times, even if you uninstall it
-# between, disk space seems to leak that won't get recycled until you
-# stop and start...
-stop-start-cycle:
- $(ANDROID_SDK_HOME)/platform-tools/adb shell stop && $(ANDROID_SDK_HOME)/platform-tools/adb shell start && sleep 10
-
-
diff --git a/chart2/Library_chartcontroller.mk b/chart2/Library_chartcontroller.mk
index b42c0e8f328e..bd1837956130 100644
--- a/chart2/Library_chartcontroller.mk
+++ b/chart2/Library_chartcontroller.mk
@@ -45,8 +45,7 @@ $(eval $(call gb_Library_use_sdk_api,chartcontroller))
$(eval $(call gb_Library_use_libraries,chartcontroller,\
basegfx \
- charttools \
- chartview \
+ chartcore \
comphelper \
cppu \
cppuhelper \
diff --git a/chart2/Library_chartcore.mk b/chart2/Library_chartcore.mk
new file mode 100644
index 000000000000..c34bdb1640fd
--- /dev/null
+++ b/chart2/Library_chartcore.mk
@@ -0,0 +1,230 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# 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/.
+#
+
+$(eval $(call gb_Library_Library,chartcore))
+
+$(eval $(call gb_Library_set_include,chartcore,\
+ $$(INCLUDE) \
+ -I$(SRCDIR)/chart2/source/model/inc \
+ -I$(SRCDIR)/chart2/source/view/inc \
+ -I$(SRCDIR)/chart2/source/inc \
+))
+
+# not ideal - we should use a single core define ideally
+$(eval $(call gb_Library_add_defs,chartcore,\
+ -DOOO_DLLIMPLEMENTATION_CHARTTOOLS \
+ -DOOO_DLLIMPLEMENTATION_CHARTVIEW \
+))
+
+$(eval $(call gb_Library_use_sdk_api,chartcore))
+
+$(eval $(call gb_Library_use_libraries,chartcore,\
+ basegfx \
+ comphelper \
+ cppu \
+ cppuhelper \
+ drawinglayer \
+ editeng \
+ fwe \
+ i18nisolang1 \
+ sal \
+ sfx \
+ svl \
+ svt \
+ svxcore \
+ tl \
+ ucbhelper \
+ utl \
+ vcl \
+ $(gb_STDLIBS) \
+))
+
+# view pieces ...
+$(eval $(call gb_Library_set_componentfile,chartcore,chart2/source/view/chartview))
+$(eval $(call gb_Library_add_exception_objects,chartcore,\
+ chart2/source/view/axes/DateHelper \
+ chart2/source/view/axes/DateScaling \
+ chart2/source/view/axes/MinimumAndMaximumSupplier \
+ chart2/source/view/axes/ScaleAutomatism \
+ chart2/source/view/axes/Tickmarks \
+ chart2/source/view/axes/Tickmarks_Dates \
+ chart2/source/view/axes/Tickmarks_Equidistant \
+ chart2/source/view/axes/VAxisBase \
+ chart2/source/view/axes/VAxisOrGridBase \
+ chart2/source/view/axes/VAxisProperties \
+ chart2/source/view/axes/VCartesianAxis \
+ chart2/source/view/axes/VCartesianCoordinateSystem \
+ chart2/source/view/axes/VCartesianGrid \
+ chart2/source/view/axes/VCoordinateSystem \
+ chart2/source/view/axes/VPolarAngleAxis \
+ chart2/source/view/axes/VPolarAxis \
+ chart2/source/view/axes/VPolarCoordinateSystem \
+ chart2/source/view/axes/VPolarGrid \
+ chart2/source/view/axes/VPolarRadiusAxis \
+ chart2/source/view/charttypes/AreaChart \
+ chart2/source/view/charttypes/BarChart \
+ chart2/source/view/charttypes/BarPositionHelper \
+ chart2/source/view/charttypes/BubbleChart \
+ chart2/source/view/charttypes/CandleStickChart \
+ chart2/source/view/charttypes/CategoryPositionHelper \
+ chart2/source/view/charttypes/PieChart \
+ chart2/source/view/charttypes/Splines \
+ chart2/source/view/charttypes/VSeriesPlotter \
+ chart2/source/view/diagram/VDiagram \
+ chart2/source/view/main/ChartItemPool \
+ chart2/source/view/main/ChartView \
+ chart2/source/view/main/Clipping \
+ chart2/source/view/main/DataPointSymbolSupplier \
+ chart2/source/view/main/DrawModelWrapper \
+ chart2/source/view/main/LabelPositionHelper \
+ chart2/source/view/main/Linear3DTransformation \
+ chart2/source/view/main/PlotterBase \
+ chart2/source/view/main/PlottingPositionHelper \
+ chart2/source/view/main/PolarLabelPositionHelper \
+ chart2/source/view/main/PropertyMapper \
+ chart2/source/view/main/_serviceregistration_view \
+ chart2/source/view/main/ShapeFactory \
+ chart2/source/view/main/Stripe \
+ chart2/source/view/main/VDataSeries \
+ chart2/source/view/main/VLegend \
+ chart2/source/view/main/VLegendSymbolFactory \
+ chart2/source/view/main/VLineProperties \
+ chart2/source/view/main/VPolarTransformation \
+ chart2/source/view/main/VTitle \
+))
+
+# model pieces ...
+$(eval $(call gb_Library_set_componentfile,chartcore,chart2/source/model/chartmodel))
+$(eval $(call gb_Library_add_exception_objects,chartcore,\
+ chart2/source/model/filter/XMLFilter \
+ chart2/source/model/main/Axis \
+ chart2/source/model/main/BaseCoordinateSystem \
+ chart2/source/model/main/CartesianCoordinateSystem \
+ chart2/source/model/main/ChartModel \
+ chart2/source/model/main/ChartModel_Persistence \
+ chart2/source/model/main/DataPoint \
+ chart2/source/model/main/DataPointProperties \
+ chart2/source/model/main/DataSeries \
+ chart2/source/model/main/DataSeriesProperties \
+ chart2/source/model/main/Diagram \
+ chart2/source/model/main/FormattedString \
+ chart2/source/model/main/GridProperties \
+ chart2/source/model/main/Legend \
+ chart2/source/model/main/PageBackground \
+ chart2/source/model/main/PolarCoordinateSystem \
+ chart2/source/model/main/_serviceregistration_model \
+ chart2/source/model/main/StockBar \
+ chart2/source/model/main/Title \
+ chart2/source/model/main/UndoManager \
+ chart2/source/model/main/Wall \
+ chart2/source/model/template/AreaChartType \
+ chart2/source/model/template/AreaChartTypeTemplate \
+ chart2/source/model/template/BarChartType \
+ chart2/source/model/template/BarChartTypeTemplate \
+ chart2/source/model/template/BubbleChartType \
+ chart2/source/model/template/BubbleChartTypeTemplate \
+ chart2/source/model/template/BubbleDataInterpreter \
+ chart2/source/model/template/CandleStickChartType \
+ chart2/source/model/template/ChartType \
+ chart2/source/model/template/ChartTypeManager \
+ chart2/source/model/template/ChartTypeTemplate \
+ chart2/source/model/template/ColumnChartType \
+ chart2/source/model/template/ColumnLineChartTypeTemplate \
+ chart2/source/model/template/ColumnLineDataInterpreter \
+ chart2/source/model/template/DataInterpreter \
+ chart2/source/model/template/FilledNetChartType \
+ chart2/source/model/template/LineChartType \
+ chart2/source/model/template/LineChartTypeTemplate \
+ chart2/source/model/template/NetChartType \
+ chart2/source/model/template/NetChartTypeTemplate \
+ chart2/source/model/template/PieChartType \
+ chart2/source/model/template/PieChartTypeTemplate \
+ chart2/source/model/template/ScatterChartType \
+ chart2/source/model/template/ScatterChartTypeTemplate \
+ chart2/source/model/template/_serviceregistration_charttypes \
+ chart2/source/model/template/StockChartTypeTemplate \
+ chart2/source/model/template/StockDataInterpreter \
+ chart2/source/model/template/XYDataInterpreter \
+))
+
+# tools pieces
+$(eval $(call gb_Library_set_componentfile,chartcore,chart2/source/tools/charttools))
+$(eval $(call gb_Library_add_exception_objects,chartcore,\
+ chart2/source/tools/AxisHelper \
+ chart2/source/tools/BaseGFXHelper \
+ chart2/source/tools/CachedDataSequence \
+ chart2/source/tools/CharacterProperties \
+ chart2/source/tools/ChartDebugTrace \
+ chart2/source/tools/ChartModelHelper \
+ chart2/source/tools/ChartTypeHelper \
+ chart2/source/tools/ChartViewHelper \
+ chart2/source/tools/ColorPerPointHelper \
+ chart2/source/tools/CommonConverters \
+ chart2/source/tools/ConfigColorScheme \
+ chart2/source/tools/ControllerLockGuard \
+ chart2/source/tools/DataSeriesHelper \
+ chart2/source/tools/DataSource \
+ chart2/source/tools/DataSourceHelper \
+ chart2/source/tools/DiagramHelper \
+ chart2/source/tools/ErrorBar \
+ chart2/source/tools/ExplicitCategoriesProvider \
+ chart2/source/tools/ExponentialRegressionCurveCalculator \
+ chart2/source/tools/FillProperties \
+ chart2/source/tools/FormattedStringHelper \
+ chart2/source/tools/ImplOPropertySet \
+ chart2/source/tools/InternalData \
+ chart2/source/tools/InternalDataProvider \
+ chart2/source/tools/LabeledDataSequence \
+ chart2/source/tools/LegendHelper \
+ chart2/source/tools/LifeTime \
+ chart2/source/tools/LinearRegressionCurveCalculator \
+ chart2/source/tools/LineProperties \
+ chart2/source/tools/LogarithmicRegressionCurveCalculator \
+ chart2/source/tools/MeanValueRegressionCurveCalculator \
+ chart2/source/tools/MediaDescriptorHelper \
+ chart2/source/tools/ModifyListenerCallBack \
+ chart2/source/tools/ModifyListenerHelper \
+ chart2/source/tools/MutexContainer \
+ chart2/source/tools/NameContainer \
+ chart2/source/tools/NumberFormatterWrapper \
+ chart2/source/tools/ObjectIdentifier \
+ chart2/source/tools/OPropertySet \
+ chart2/source/tools/PotentialRegressionCurveCalculator \
+ chart2/source/tools/PropertyHelper \
+ chart2/source/tools/RangeHighlighter \
+ chart2/source/tools/ReferenceSizeProvider \
+ chart2/source/tools/RegressionCurveCalculator \
+ chart2/source/tools/RegressionCurveHelper \
+ chart2/source/tools/RegressionCurveModel \
+ chart2/source/tools/RegressionEquation \
+ chart2/source/tools/RelativePositionHelper \
+ chart2/source/tools/RelativeSizeHelper \
+ chart2/source/tools/ResId \
+ chart2/source/tools/ResourceManager \
+ chart2/source/tools/Scaling \
+ chart2/source/tools/SceneProperties \
+ chart2/source/tools/_serviceregistration_tools \
+ chart2/source/tools/StatisticsHelper \
+ chart2/source/tools/ThreeDHelper \
+ chart2/source/tools/TitleHelper \
+ chart2/source/tools/TrueGuard \
+ chart2/source/tools/UncachedDataSequence \
+ chart2/source/tools/UserDefinedProperties \
+ chart2/source/tools/WeakListenerAdapter \
+ chart2/source/tools/WrappedDefaultProperty \
+ chart2/source/tools/WrappedDirectStateProperty \
+ chart2/source/tools/WrappedIgnoreProperty \
+ chart2/source/tools/WrappedProperty \
+ chart2/source/tools/WrappedPropertySet \
+ chart2/source/tools/XMLRangeHelper \
+))
+
+
+
+# vim: set noet sw=4 ts=4:
diff --git a/chart2/Library_chartmodel.mk b/chart2/Library_chartmodel.mk
deleted file mode 100644
index b4213242df97..000000000000
--- a/chart2/Library_chartmodel.mk
+++ /dev/null
@@ -1,115 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License or as specified alternatively below. You may obtain a copy of
-# the License at http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# Major Contributor(s):
-# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
-# (initial developer)
-#
-# All Rights Reserved.
-#
-# For minor contributions see the git repository.
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
-# instead of those above.
-
-$(eval $(call gb_Library_Library,chartmodel))
-
-$(eval $(call gb_Library_set_include,chartmodel,\
- $$(INCLUDE) \
- -I$(SRCDIR)/chart2/source/model/inc \
- -I$(SRCDIR)/chart2/source/inc \
-))
-
-$(eval $(call gb_Library_use_sdk_api,chartmodel))
-
-# TODO: is this still necessary?
-# (from chart2/source/model/template/makefile.mk)
-# # i26518 the gcc-3.0.4 requires to enhance the template-depth
-# # this seems to be a compiler issue, so we recommend not to use 3.0.x anymore
-# .IF "$(COM)"=="GCC"
-# CFLAGS+=-ftemplate-depth-128
-# .ENDIF
-
-$(eval $(call gb_Library_use_libraries,chartmodel,\
- charttools \
- comphelper \
- cppu \
- cppuhelper \
- fwe \
- sal \
- svl \
- svt \
- ucbhelper \
- utl \
- vcl \
- $(gb_STDLIBS) \
-))
-
-$(eval $(call gb_Library_set_componentfile,chartmodel,chart2/source/model/chartmodel))
-
-$(eval $(call gb_Library_add_exception_objects,chartmodel,\
- chart2/source/model/filter/XMLFilter \
- chart2/source/model/main/Axis \
- chart2/source/model/main/BaseCoordinateSystem \
- chart2/source/model/main/CartesianCoordinateSystem \
- chart2/source/model/main/ChartModel \
- chart2/source/model/main/ChartModel_Persistence \
- chart2/source/model/main/DataPoint \
- chart2/source/model/main/DataPointProperties \
- chart2/source/model/main/DataSeries \
- chart2/source/model/main/DataSeriesProperties \
- chart2/source/model/main/Diagram \
- chart2/source/model/main/FormattedString \
- chart2/source/model/main/GridProperties \
- chart2/source/model/main/Legend \
- chart2/source/model/main/PageBackground \
- chart2/source/model/main/PolarCoordinateSystem \
- chart2/source/model/main/_serviceregistration_model \
- chart2/source/model/main/StockBar \
- chart2/source/model/main/Title \
- chart2/source/model/main/UndoManager \
- chart2/source/model/main/Wall \
- chart2/source/model/template/AreaChartType \
- chart2/source/model/template/AreaChartTypeTemplate \
- chart2/source/model/template/BarChartType \
- chart2/source/model/template/BarChartTypeTemplate \
- chart2/source/model/template/BubbleChartType \
- chart2/source/model/template/BubbleChartTypeTemplate \
- chart2/source/model/template/BubbleDataInterpreter \
- chart2/source/model/template/CandleStickChartType \
- chart2/source/model/template/ChartType \
- chart2/source/model/template/ChartTypeManager \
- chart2/source/model/template/ChartTypeTemplate \
- chart2/source/model/template/ColumnChartType \
- chart2/source/model/template/ColumnLineChartTypeTemplate \
- chart2/source/model/template/ColumnLineDataInterpreter \
- chart2/source/model/template/DataInterpreter \
- chart2/source/model/template/FilledNetChartType \
- chart2/source/model/template/LineChartType \
- chart2/source/model/template/LineChartTypeTemplate \
- chart2/source/model/template/NetChartType \
- chart2/source/model/template/NetChartTypeTemplate \
- chart2/source/model/template/PieChartType \
- chart2/source/model/template/PieChartTypeTemplate \
- chart2/source/model/template/ScatterChartType \
- chart2/source/model/template/ScatterChartTypeTemplate \
- chart2/source/model/template/_serviceregistration_charttypes \
- chart2/source/model/template/StockChartTypeTemplate \
- chart2/source/model/template/StockDataInterpreter \
- chart2/source/model/template/XYDataInterpreter \
-))
-
-# vim: set noet sw=4 ts=4:
diff --git a/chart2/Library_charttools.mk b/chart2/Library_charttools.mk
deleted file mode 100644
index 2e4eb6b6336f..000000000000
--- a/chart2/Library_charttools.mk
+++ /dev/null
@@ -1,127 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License or as specified alternatively below. You may obtain a copy of
-# the License at http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# Major Contributor(s):
-# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
-# (initial developer)
-#
-# All Rights Reserved.
-#
-# For minor contributions see the git repository.
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
-# instead of those above.
-
-$(eval $(call gb_Library_Library,charttools))
-
-$(eval $(call gb_Library_set_include,charttools,\
- $$(INCLUDE) \
- -I$(SRCDIR)/chart2/source/inc \
-))
-
-$(eval $(call gb_Library_add_defs,charttools,\
- -DOOO_DLLIMPLEMENTATION_CHARTTOOLS \
-))
-
-$(eval $(call gb_Library_use_sdk_api,charttools))
-
-$(eval $(call gb_Library_use_libraries,charttools,\
- basegfx \
- comphelper \
- cppu \
- cppuhelper \
- i18nisolang1 \
- sal \
- svl \
- tl \
- utl \
- vcl \
- $(gb_STDLIBS) \
-))
-
-$(eval $(call gb_Library_set_componentfile,charttools,chart2/source/tools/charttools))
-
-$(eval $(call gb_Library_add_exception_objects,charttools,\
- chart2/source/tools/AxisHelper \
- chart2/source/tools/BaseGFXHelper \
- chart2/source/tools/CachedDataSequence \
- chart2/source/tools/CharacterProperties \
- chart2/source/tools/ChartDebugTrace \
- chart2/source/tools/ChartModelHelper \
- chart2/source/tools/ChartTypeHelper \
- chart2/source/tools/ChartViewHelper \
- chart2/source/tools/ColorPerPointHelper \
- chart2/source/tools/CommonConverters \
- chart2/source/tools/ConfigColorScheme \
- chart2/source/tools/ControllerLockGuard \
- chart2/source/tools/DataSeriesHelper \
- chart2/source/tools/DataSource \
- chart2/source/tools/DataSourceHelper \
- chart2/source/tools/DiagramHelper \
- chart2/source/tools/ErrorBar \
- chart2/source/tools/ExplicitCategoriesProvider \
- chart2/source/tools/ExponentialRegressionCurveCalculator \
- chart2/source/tools/FillProperties \
- chart2/source/tools/FormattedStringHelper \
- chart2/source/tools/ImplOPropertySet \
- chart2/source/tools/InternalData \
- chart2/source/tools/InternalDataProvider \
- chart2/source/tools/LabeledDataSequence \
- chart2/source/tools/LegendHelper \
- chart2/source/tools/LifeTime \
- chart2/source/tools/LinearRegressionCurveCalculator \
- chart2/source/tools/LineProperties \
- chart2/source/tools/LogarithmicRegressionCurveCalculator \
- chart2/source/tools/MeanValueRegressionCurveCalculator \
- chart2/source/tools/MediaDescriptorHelper \
- chart2/source/tools/ModifyListenerCallBack \
- chart2/source/tools/ModifyListenerHelper \
- chart2/source/tools/MutexContainer \
- chart2/source/tools/NameContainer \
- chart2/source/tools/NumberFormatterWrapper \
- chart2/source/tools/ObjectIdentifier \
- chart2/source/tools/OPropertySet \
- chart2/source/tools/PotentialRegressionCurveCalculator \
- chart2/source/tools/PropertyHelper \
- chart2/source/tools/RangeHighlighter \
- chart2/source/tools/ReferenceSizeProvider \
- chart2/source/tools/RegressionCurveCalculator \
- chart2/source/tools/RegressionCurveHelper \
- chart2/source/tools/RegressionCurveModel \
- chart2/source/tools/RegressionEquation \
- chart2/source/tools/RelativePositionHelper \
- chart2/source/tools/RelativeSizeHelper \
- chart2/source/tools/ResId \
- chart2/source/tools/ResourceManager \
- chart2/source/tools/Scaling \
- chart2/source/tools/SceneProperties \
- chart2/source/tools/_serviceregistration_tools \
- chart2/source/tools/StatisticsHelper \
- chart2/source/tools/ThreeDHelper \
- chart2/source/tools/TitleHelper \
- chart2/source/tools/TrueGuard \
- chart2/source/tools/UncachedDataSequence \
- chart2/source/tools/UserDefinedProperties \
- chart2/source/tools/WeakListenerAdapter \
- chart2/source/tools/WrappedDefaultProperty \
- chart2/source/tools/WrappedDirectStateProperty \
- chart2/source/tools/WrappedIgnoreProperty \
- chart2/source/tools/WrappedProperty \
- chart2/source/tools/WrappedPropertySet \
- chart2/source/tools/XMLRangeHelper \
-))
-
-# vim: set noet sw=4 ts=4:
diff --git a/chart2/Library_chartview.mk b/chart2/Library_chartview.mk
deleted file mode 100644
index 83ea331fc385..000000000000
--- a/chart2/Library_chartview.mk
+++ /dev/null
@@ -1,115 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License or as specified alternatively below. You may obtain a copy of
-# the License at http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# Major Contributor(s):
-# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
-# (initial developer)
-#
-# All Rights Reserved.
-#
-# For minor contributions see the git repository.
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
-# instead of those above.
-
-$(eval $(call gb_Library_Library,chartview))
-
-$(eval $(call gb_Library_set_include,chartview,\
- $$(INCLUDE) \
- -I$(SRCDIR)/chart2/source/view/inc \
- -I$(SRCDIR)/chart2/source/inc \
-))
-
-$(eval $(call gb_Library_add_defs,chartview,\
- -DOOO_DLLIMPLEMENTATION_CHARTVIEW \
-))
-
-$(eval $(call gb_Library_use_sdk_api,chartview))
-
-$(eval $(call gb_Library_use_libraries,chartview,\
- basegfx \
- charttools \
- comphelper \
- cppu \
- cppuhelper \
- editeng \
- sal \
- sfx \
- svl \
- svt \
- svxcore \
- tl \
- utl \
- vcl \
- drawinglayer \
- $(gb_STDLIBS) \
-))
-
-$(eval $(call gb_Library_set_componentfile,chartview,chart2/source/view/chartview))
-
-$(eval $(call gb_Library_add_exception_objects,chartview,\
- chart2/source/view/axes/DateHelper \
- chart2/source/view/axes/DateScaling \
- chart2/source/view/axes/MinimumAndMaximumSupplier \
- chart2/source/view/axes/ScaleAutomatism \
- chart2/source/view/axes/Tickmarks \
- chart2/source/view/axes/Tickmarks_Dates \
- chart2/source/view/axes/Tickmarks_Equidistant \
- chart2/source/view/axes/VAxisBase \
- chart2/source/view/axes/VAxisOrGridBase \
- chart2/source/view/axes/VAxisProperties \
- chart2/source/view/axes/VCartesianAxis \
- chart2/source/view/axes/VCartesianCoordinateSystem \
- chart2/source/view/axes/VCartesianGrid \
- chart2/source/view/axes/VCoordinateSystem \
- chart2/source/view/axes/VPolarAngleAxis \
- chart2/source/view/axes/VPolarAxis \
- chart2/source/view/axes/VPolarCoordinateSystem \
- chart2/source/view/axes/VPolarGrid \
- chart2/source/view/axes/VPolarRadiusAxis \
- chart2/source/view/charttypes/AreaChart \
- chart2/source/view/charttypes/BarChart \
- chart2/source/view/charttypes/BarPositionHelper \
- chart2/source/view/charttypes/BubbleChart \
- chart2/source/view/charttypes/CandleStickChart \
- chart2/source/view/charttypes/CategoryPositionHelper \
- chart2/source/view/charttypes/PieChart \
- chart2/source/view/charttypes/Splines \
- chart2/source/view/charttypes/VSeriesPlotter \
- chart2/source/view/diagram/VDiagram \
- chart2/source/view/main/ChartItemPool \
- chart2/source/view/main/ChartView \
- chart2/source/view/main/Clipping \
- chart2/source/view/main/DataPointSymbolSupplier \
- chart2/source/view/main/DrawModelWrapper \
- chart2/source/view/main/LabelPositionHelper \
- chart2/source/view/main/Linear3DTransformation \
- chart2/source/view/main/PlotterBase \
- chart2/source/view/main/PlottingPositionHelper \
- chart2/source/view/main/PolarLabelPositionHelper \
- chart2/source/view/main/PropertyMapper \
- chart2/source/view/main/_serviceregistration_view \
- chart2/source/view/main/ShapeFactory \
- chart2/source/view/main/Stripe \
- chart2/source/view/main/VDataSeries \
- chart2/source/view/main/VLegend \
- chart2/source/view/main/VLegendSymbolFactory \
- chart2/source/view/main/VLineProperties \
- chart2/source/view/main/VPolarTransformation \
- chart2/source/view/main/VTitle \
-))
-
-# vim: set noet sw=4 ts=4:
diff --git a/chart2/Module_chart2.mk b/chart2/Module_chart2.mk
index b8b2a4f6e0b9..19a7dbc866de 100644
--- a/chart2/Module_chart2.mk
+++ b/chart2/Module_chart2.mk
@@ -31,9 +31,7 @@ $(eval $(call gb_Module_Module,chart2))
$(eval $(call gb_Module_add_targets,chart2,\
AllLangResTarget_chartcontroller \
Library_chartcontroller \
- Library_chartmodel \
- Library_charttools \
- Library_chartview \
+ Library_chartcore \
Package_uiconfig \
))
diff --git a/ios/qa/sc/Makefile b/ios/qa/sc/Makefile
index cab1650e13bb..41742148e8ff 100644
--- a/ios/qa/sc/Makefile
+++ b/ios/qa/sc/Makefile
@@ -71,7 +71,7 @@ stuff:
cp $(OUTDIR)/bin/udkapi.rdb $(OUTDIR)/bin/types.rdb $(OUTDIR)/xml/ure/services.rdb $(APPDIR)
#
# a bunch of .component files
- for F in framework/util/fwk i18npool/util/i18npool sfx2/util/sfx ucb/source/core/ucb1 ucb/source/ucp/file/ucpfile1 unoxml/source/service/unoxml configmgr/source/configmgr basic/util/sb chart2/source/controller/chartcontroller chart2/source/tools/charttools chart2/source/model/chartmodel comphelper/util/comphelp eventattacher/source/evtatt fileaccess/source/fileacc filter/source/config/cache/filterconfig1 oox/util/oox package/source/xstor/xstor package/util/package2 sax/source/expatwrap/expwrap sax/source/fastparser/fastsax sc/util/sc sc/util/scfilt scaddins/source/analysis/analysis scaddins/source/datefunc/date sot/util/sot svl/util/svl toolkit/util/tk ucb/source/ucp/tdoc/ucptdoc1 unotools/util/utl unoxml/source/rdf/unordf; do \
+ for F in framework/util/fwk i18npool/util/i18npool sfx2/util/sfx ucb/source/core/ucb1 ucb/source/ucp/file/ucpfile1 unoxml/source/service/unoxml configmgr/source/configmgr basic/util/sb chart2/source/controller/chartcontroller chart2/source/tools/chartcore comphelper/util/comphelp eventattacher/source/evtatt fileaccess/source/fileacc filter/source/config/cache/filterconfig1 oox/util/oox package/source/xstor/xstor package/util/package2 sax/source/expatwrap/expwrap sax/source/fastparser/fastsax sc/util/sc sc/util/scfilt scaddins/source/analysis/analysis scaddins/source/datefunc/date sot/util/sot svl/util/svl toolkit/util/tk ucb/source/ucp/tdoc/ucptdoc1 unotools/util/utl unoxml/source/rdf/unordf; do \
mkdir -p $(APPDIR)/ComponentTarget/`dirname $$F`; \
cp $(WORKDIR)/ComponentTarget/$$F.component $(APPDIR)/ComponentTarget/$$F.component; \
done
diff --git a/scp2/source/ooo/file_library_ooo.scp b/scp2/source/ooo/file_library_ooo.scp
index 059412075602..8d4967cedd11 100644
--- a/scp2/source/ooo/file_library_ooo.scp
+++ b/scp2/source/ooo/file_library_ooo.scp
@@ -107,9 +107,7 @@ File gid_File_Lib_Ldapbe2
End
STD_LIB_FILE(gid_File_Lib_Chartcontroller, chartcontroller)
-STD_LIB_FILE(gid_File_Lib_Chartmodel, chartmodel)
-STD_LIB_FILE(gid_File_Lib_Charttools, charttools)
-STD_LIB_FILE(gid_File_Lib_Chartview, chartview)
+STD_LIB_FILE(gid_File_Lib_Chartcore, chartcore)
#if defined _MSC_VER
diff --git a/scp2/source/ooo/module_hidden_ooo.scp b/scp2/source/ooo/module_hidden_ooo.scp
index 8c6487189466..c0b3495000ee 100644
--- a/scp2/source/ooo/module_hidden_ooo.scp
+++ b/scp2/source/ooo/module_hidden_ooo.scp
@@ -198,10 +198,8 @@ Module gid_Module_Root_Files_4
gid_File_Filter_Itg,
gid_File_Filter_Iti,
gid_File_Lib_Bib,
- gid_File_Lib_Chartmodel,
- gid_File_Lib_Chartview,
+ gid_File_Lib_Chartcore,
gid_File_Lib_Chartcontroller,
- gid_File_Lib_Charttools,
gid_File_Lib_Ctl,
gid_File_Lib_Cui,
gid_File_Lib_Sdbt,