diff options
25 files changed, 434 insertions, 210 deletions
diff --git a/chart2/inc/pch/precompiled_chartcontroller.hxx b/chart2/inc/pch/precompiled_chartcontroller.hxx index 7ce733cfa448..05d81c652a5c 100644 --- a/chart2/inc/pch/precompiled_chartcontroller.hxx +++ b/chart2/inc/pch/precompiled_chartcontroller.hxx @@ -110,6 +110,7 @@ #include <com/sun/star/drawing/LineJoint.hpp> #include <com/sun/star/drawing/LineStyle.hpp> #include <com/sun/star/drawing/ProjectionMode.hpp> +#include <com/sun/star/drawing/ShapeCollection.hpp> #include <com/sun/star/drawing/TextHorizontalAdjust.hpp> #include <com/sun/star/drawing/TextVerticalAdjust.hpp> #include <com/sun/star/drawing/XDrawPagesSupplier.hpp> @@ -312,8 +313,10 @@ #include <vcl/graph.hxx> #include <vcl/help.hxx> #include <vcl/image.hxx> +#include <vcl/layout.hxx> #include <vcl/msgbox.hxx> #include <vcl/outdev.hxx> +#include <vcl/settings.hxx> #include <vcl/svapp.hxx> #include <vcl/taskpanelist.hxx> #include <vcl/toolbox.hxx> diff --git a/chart2/inc/pch/precompiled_chartcore.hxx b/chart2/inc/pch/precompiled_chartcore.hxx index 031a9aa06ef4..2fcdbb0c8e8c 100644 --- a/chart2/inc/pch/precompiled_chartcore.hxx +++ b/chart2/inc/pch/precompiled_chartcore.hxx @@ -15,6 +15,7 @@ */ #include "com/sun/star/uno/RuntimeException.hpp" +#include <GL/glew.h> #include <algorithm> #include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b3dhommatrix.hxx> @@ -30,6 +31,7 @@ #include <basegfx/vector/b2ivector.hxx> #include <boost/bind.hpp> #include <boost/ptr_container/ptr_map.hpp> +#include <boost/scoped_array.hpp> #include <boost/scoped_ptr.hpp> #include <boost/shared_ptr.hpp> #include <cmath> @@ -45,6 +47,8 @@ #include <com/sun/star/awt/PosSize.hpp> #include <com/sun/star/awt/Size.hpp> #include <com/sun/star/awt/XWindow.hpp> +#include <com/sun/star/beans/NamedValue.hpp> +#include <com/sun/star/beans/Property.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp> #include <com/sun/star/beans/XFastPropertySet.hpp> #include <com/sun/star/beans/XMultiPropertySet.hpp> @@ -78,9 +82,11 @@ #include <com/sun/star/chart2/XAnyDescriptionAccess.hpp> #include <com/sun/star/chart2/XAxis.hpp> #include <com/sun/star/chart2/XChartDocument.hpp> +#include <com/sun/star/chart2/XChartType.hpp> #include <com/sun/star/chart2/XChartTypeContainer.hpp> #include <com/sun/star/chart2/XChartTypeTemplate.hpp> #include <com/sun/star/chart2/XColorScheme.hpp> +#include <com/sun/star/chart2/XCoordinateSystem.hpp> #include <com/sun/star/chart2/XCoordinateSystemContainer.hpp> #include <com/sun/star/chart2/XDataSeries.hpp> #include <com/sun/star/chart2/XDataSeriesContainer.hpp> @@ -88,6 +94,7 @@ #include <com/sun/star/chart2/XFormattedString.hpp> #include <com/sun/star/chart2/XLegend.hpp> #include <com/sun/star/chart2/XRegressionCurveContainer.hpp> +#include <com/sun/star/chart2/XTimeBased.hpp> #include <com/sun/star/chart2/XTitle.hpp> #include <com/sun/star/chart2/XTitled.hpp> #include <com/sun/star/chart2/data/LabelOrigin.hpp> @@ -189,7 +196,7 @@ #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/util/Color.hpp> -#include <com/sun/star/util/DateTime.hpp> +#include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/NumberFormat.hpp> #include <com/sun/star/util/NumberFormatter.hpp> #include <com/sun/star/util/XCloneable.hpp> @@ -220,6 +227,7 @@ #include <cppuhelper/implementationentry.hxx> #include <cppuhelper/interfacecontainer.hxx> #include <cppuhelper/queryinterface.hxx> +#include <cppuhelper/supportsservice.hxx> #include <cstdarg> #include <drawinglayer/XShapeDumper.hxx> #include <editeng/brushitem.hxx> @@ -229,16 +237,20 @@ #include <editeng/unoprnms.hxx> #include <framework/undomanagerhelper.hxx> #include <functional> +#include <glm/glm.hpp> +#include <glm/gtx/transform.hpp> #include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/mslangid.hxx> #include <iterator> #include <limits> #include <map> -#include <memory> #include <o3tl/compat_functional.hxx> #include <officecfg/Office/Common.hxx> +#include <osl/conditn.hxx> #include <osl/diagnose.h> +#include <osl/module.hxx> #include <osl/mutex.hxx> +#include <osl/time.h> #include <rtl/instance.hxx> #include <rtl/math.hxx> #include <rtl/strbuf.hxx> @@ -282,6 +294,7 @@ #include <tools/color.hxx> #include <tools/debug.hxx> #include <tools/resmgr.hxx> +#include <tools/solar.h> #include <ucbhelper/content.hxx> #include <unotools/charclass.hxx> #include <unotools/configitem.hxx> @@ -294,6 +307,7 @@ #include <valarray> #include <vcl/cvtgrf.hxx> #include <vcl/outdev.hxx> +#include <vcl/settings.hxx> #include <vcl/svapp.hxx> #include <vcl/virdev.hxx> #include <vector> diff --git a/cui/inc/pch/precompiled_cui.hxx b/cui/inc/pch/precompiled_cui.hxx index 940d8dc9a6e6..a813581bf7e0 100644 --- a/cui/inc/pch/precompiled_cui.hxx +++ b/cui/inc/pch/precompiled_cui.hxx @@ -59,8 +59,10 @@ #include <basic/sbstar.hxx> #include <basic/sbx.hxx> #include <basic/sbxmeth.hxx> +#include <bitset> #include <boost/make_shared.hpp> #include <boost/ref.hpp> +#include <boost/scoped_array.hpp> #include <boost/scoped_ptr.hpp> #include <boost/shared_ptr.hpp> #include <cassert> @@ -87,6 +89,7 @@ #include <com/sun/star/container/XContentEnumerationAccess.hpp> #include <com/sun/star/container/XEnumeration.hpp> #include <com/sun/star/container/XEnumerationAccess.hpp> +#include <com/sun/star/container/XHierarchicalName.hpp> #include <com/sun/star/container/XHierarchicalNameAccess.hpp> #include <com/sun/star/container/XIndexAccess.hpp> #include <com/sun/star/container/XNameAccess.hpp> @@ -111,9 +114,7 @@ #include <com/sun/star/frame/Desktop.hpp> #include <com/sun/star/frame/DispatchInformation.hpp> #include <com/sun/star/frame/FrameSearchFlag.hpp> -#include <com/sun/star/frame/GlobalEventBroadcaster.hpp> #include <com/sun/star/frame/ModuleManager.hpp> -#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XController.hpp> #include <com/sun/star/frame/XDesktop.hpp> @@ -126,6 +127,8 @@ #include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/frame/XModuleManager.hpp> #include <com/sun/star/frame/XStorable.hpp> +#include <com/sun/star/frame/theGlobalEventBroadcaster.hpp> +#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/geometry/RealRectangle2D.hpp> #include <com/sun/star/graphic/GraphicProvider.hpp> #include <com/sun/star/i18n/CollatorOptions.hpp> @@ -202,7 +205,6 @@ #include <com/sun/star/text/XNumberingTypeInfo.hpp> #include <com/sun/star/ucb/CommandAbortedException.hpp> #include <com/sun/star/ucb/SimpleFileAccess.hpp> -#include <com/sun/star/ucb/UniversalContentBroker.hpp> #include <com/sun/star/ucb/XContentAccess.hpp> #include <com/sun/star/ucb/XContentProvider.hpp> #include <com/sun/star/ui/GlobalAcceleratorConfiguration.hpp> @@ -210,11 +212,8 @@ #include <com/sun/star/ui/ImageType.hpp> #include <com/sun/star/ui/ItemStyle.hpp> #include <com/sun/star/ui/ItemType.hpp> -#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> -#include <com/sun/star/ui/theUICategoryDescription.hpp> #include <com/sun/star/ui/UIConfigurationManager.hpp> #include <com/sun/star/ui/UIElementType.hpp> -#include <com/sun/star/ui/theWindowStateConfiguration.hpp> #include <com/sun/star/ui/XModuleUIConfigurationManager.hpp> #include <com/sun/star/ui/XUIConfiguration.hpp> #include <com/sun/star/ui/XUIConfigurationListener.hpp> @@ -233,6 +232,9 @@ #include <com/sun/star/ui/dialogs/XFilePicker.hpp> #include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp> #include <com/sun/star/ui/dialogs/XFilterManager.hpp> +#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> +#include <com/sun/star/ui/theUICategoryDescription.hpp> +#include <com/sun/star/ui/theWindowStateConfiguration.hpp> #include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Exception.hpp> @@ -242,12 +244,12 @@ #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/XComponentContext.hpp> -#include <com/sun/star/util/thePathSettings.hpp> #include <com/sun/star/util/URLTransformer.hpp> #include <com/sun/star/util/XChangesBatch.hpp> #include <com/sun/star/util/XFlushable.hpp> #include <com/sun/star/util/XURLTransformer.hpp> #include <com/sun/star/util/theMacroExpander.hpp> +#include <com/sun/star/util/thePathSettings.hpp> #include <comphelper/anytostring.hxx> #include <comphelper/broadcasthelper.hxx> #include <comphelper/classids.hxx> @@ -263,7 +265,6 @@ #include <comphelper/sequence.hxx> #include <comphelper/sequenceashashmap.hxx> #include <comphelper/sequenceasvector.hxx> -#include <comphelper/stl_types.hxx> #include <comphelper/string.hxx> #include <comphelper/types.hxx> #include <comphelper/uno3.hxx> @@ -275,6 +276,7 @@ #include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/implbase1.hxx> #include <cppuhelper/implementationentry.hxx> +#include <cppuhelper/supportsservice.hxx> #include <cstddef> #include <editeng/acorrcfg.hxx> #include <editeng/adjustitem.hxx> @@ -334,6 +336,8 @@ #include <i18nlangtag/lang.h> #include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/mslangid.hxx> +#include <i18nutil/unicode.hxx> +#include <iostream> #include <limits> #include <linguistic/lngprops.hxx> #include <linguistic/misc.hxx> @@ -415,6 +419,8 @@ #include <svl/eitem.hxx> #include <svl/filenotation.hxx> #include <svl/flagitem.hxx> +#include <svl/ilstitem.hxx> +#include <svl/int64item.hxx> #include <svl/intitem.hxx> #include <svl/itemiter.hxx> #include <svl/itempool.hxx> @@ -539,9 +545,7 @@ #include <svx/ucsubset.hxx> #include <svx/viewlayoutitem.hxx> #include <svx/xfillit.hxx> -#include <svx/xfillit0.hxx> #include <svx/xflbckit.hxx> -#include <svx/xflgrit.hxx> #include <svx/xfltrit.hxx> #include <svx/xlineit.hxx> #include <svx/xlineit0.hxx> @@ -555,6 +559,7 @@ #include <tools/date.hxx> #include <tools/debug.hxx> #include <tools/diagnose_ex.h> +#include <tools/mapunit.hxx> #include <tools/rc.h> #include <tools/rcid.h> #include <tools/resary.hxx> @@ -595,6 +600,7 @@ #include <unotools/ucbstreamhelper.hxx> #include <unotools/useroptions.hxx> #include <unotools/viewoptions.hxx> +#include <vcl/IconThemeInfo.hxx> #include <vcl/bitmap.hxx> #include <vcl/bmpacc.hxx> #include <vcl/builder.hxx> diff --git a/dbaccess/inc/pch/precompiled_dbu.hxx b/dbaccess/inc/pch/precompiled_dbu.hxx index 0b5b62b24854..30aafecd88d1 100644 --- a/dbaccess/inc/pch/precompiled_dbu.hxx +++ b/dbaccess/inc/pch/precompiled_dbu.hxx @@ -32,6 +32,7 @@ #include <boost/mem_fn.hpp> #include <boost/noncopyable.hpp> #include <boost/optional.hpp> +#include <boost/scoped_array.hpp> #include <boost/scoped_ptr.hpp> #include <boost/shared_ptr.hpp> #include <boost/unordered_map.hpp> @@ -112,7 +113,6 @@ #include <com/sun/star/frame/Frame.hpp> #include <com/sun/star/frame/FrameSearchFlag.hpp> #include <com/sun/star/frame/TaskCreator.hpp> -#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XController2.hpp> #include <com/sun/star/frame/XDispatchProvider.hpp> @@ -130,6 +130,7 @@ #include <com/sun/star/frame/XTitleChangeListener.hpp> #include <com/sun/star/frame/XUntitledNumbers.hpp> #include <com/sun/star/frame/status/Visibility.hpp> +#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/graphic/GraphicColorMode.hpp> #include <com/sun/star/graphic/XGraphic.hpp> #include <com/sun/star/i18n/Collator.hpp> @@ -254,7 +255,6 @@ #include <com/sun/star/ucb/XInteractionSupplyAuthentication2.hpp> #include <com/sun/star/ucb/XProgressHandler.hpp> #include <com/sun/star/ui/ImageType.hpp> -#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XContextMenuInterceptor.hpp> #include <com/sun/star/ui/XImageManager.hpp> #include <com/sun/star/ui/XUIConfigurationManager.hpp> @@ -265,8 +265,10 @@ #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp> #include <com/sun/star/ui/dialogs/XFilePicker.hpp> #include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp> +#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/TypeClass.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XNamingService.hpp> #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/DateTime.hpp> @@ -288,7 +290,6 @@ #include <com/sun/star/util/XRefreshable.hpp> #include <com/sun/star/util/XURLTransformer.hpp> #include <com/sun/star/view/XSelectionSupplier.hpp> -#include <comphelper/basicio.hxx> #include <comphelper/classids.hxx> #include <comphelper/containermultiplexer.hxx> #include <comphelper/enumhelper.hxx> @@ -355,6 +356,7 @@ #include <rtl/tencinfo.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> +#include <sal/config.h> #include <set> #include <sfx2/QuerySaveDocument.hxx> #include <sfx2/app.hxx> @@ -468,6 +470,7 @@ #include <vcl/graph.hxx> #include <vcl/help.hxx> #include <vcl/image.hxx> +#include <vcl/layout.hxx> #include <vcl/lineinfo.hxx> #include <vcl/lstbox.hxx> #include <vcl/menu.hxx> @@ -475,6 +478,7 @@ #include <vcl/msgbox.hxx> #include <vcl/outdev.hxx> #include <vcl/scrbar.hxx> +#include <vcl/settings.hxx> #include <vcl/split.hxx> #include <vcl/stdtext.hxx> #include <vcl/svapp.hxx> diff --git a/drawinglayer/inc/pch/precompiled_drawinglayer.hxx b/drawinglayer/inc/pch/precompiled_drawinglayer.hxx index 48752972d33b..9e5efa2763d9 100644 --- a/drawinglayer/inc/pch/precompiled_drawinglayer.hxx +++ b/drawinglayer/inc/pch/precompiled_drawinglayer.hxx @@ -17,6 +17,7 @@ #include "i18nlangtag/lang.h" #include "sal/config.h" #include "svl/ctloptions.hxx" +#include "vcl/settings.hxx" #include "vcl/svapp.hxx" #include <algorithm> #include <basegfx/color/bcolor.hxx> @@ -70,6 +71,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/registry/XRegistryKey.hpp> +#include <com/sun/star/table/BorderLineStyle.hpp> #include <com/sun/star/text/XText.hpp> #include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/RuntimeException.hpp> @@ -91,9 +93,11 @@ #include <rtl/strbuf.hxx> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> +#include <sal/config.h> #include <svtools/borderhelper.hxx> #include <svtools/grfmgr.hxx> #include <svtools/optionsdrawinglayer.hxx> +#include <svx/sdr/primitive2d/svx_primitivetypes2d.hxx> #include <toolkit/awt/vclxwindow.hxx> #include <toolkit/helper/formpdfexport.hxx> #include <toolkit/helper/vclunohelper.hxx> @@ -101,7 +105,6 @@ #include <tools/diagnose_ex.h> #include <tools/gen.hxx> #include <tools/stream.hxx> -#include <uno/environment.h> #include <vcl/animate.hxx> #include <vcl/bitmapex.hxx> #include <vcl/bmpacc.hxx> diff --git a/framework/inc/pch/precompiled_fwk.hxx b/framework/inc/pch/precompiled_fwk.hxx index ae4b767b27fe..8fcb909f5c01 100644 --- a/framework/inc/pch/precompiled_fwk.hxx +++ b/framework/inc/pch/precompiled_fwk.hxx @@ -16,6 +16,7 @@ #include "com/sun/star/beans/XFastPropertySet.hpp" #include "com/sun/star/beans/XPropertySet.hpp" +#include "com/sun/star/frame/XModuleManager2.hpp" #include "com/sun/star/uno/XComponentContext.hpp" #include "com/sun/star/util/XMacroExpander.hpp" #include "com/sun/star/util/theMacroExpander.hpp" @@ -26,6 +27,8 @@ #include "vcl/syswin.hxx" #include <algorithm> #include <boost/bind.hpp> +#include <boost/noncopyable.hpp> +#include <boost/unordered_map.hpp> #include <boost/utility.hpp> #include <com/sun/star/awt/Command.hpp> #include <com/sun/star/awt/ContainerWindowProvider.hpp> @@ -47,18 +50,17 @@ #include <com/sun/star/awt/WindowDescriptor.hpp> #include <com/sun/star/awt/XContainerWindowEventHandler.hpp> #include <com/sun/star/awt/XControl.hpp> -#include <com/sun/star/awt/XControlModel.hpp> -#include <com/sun/star/awt/XDataTransferProviderAccess.hpp> #include <com/sun/star/awt/XDevice.hpp> #include <com/sun/star/awt/XDockableWindow.hpp> #include <com/sun/star/awt/XDockableWindowListener.hpp> #include <com/sun/star/awt/XGraphics2.hpp> #include <com/sun/star/awt/XLayoutConstrains.hpp> #include <com/sun/star/awt/XMenuBar.hpp> +#include <com/sun/star/awt/XPopupMenu.hpp> +#include <com/sun/star/awt/XSimpleTabController.hpp> #include <com/sun/star/awt/XSystemDependentMenuPeer.hpp> #include <com/sun/star/awt/XSystemDependentWindowPeer.hpp> #include <com/sun/star/awt/XTopWindow.hpp> -#include <com/sun/star/awt/XVclWindowPeer.hpp> #include <com/sun/star/awt/XWindow.hpp> #include <com/sun/star/awt/XWindow2.hpp> #include <com/sun/star/awt/XWindowListener.hpp> @@ -66,7 +68,6 @@ #include <com/sun/star/beans/NamedValue.hpp> #include <com/sun/star/beans/Property.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp> -#include <com/sun/star/beans/PropertyState.hpp> #include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/beans/UnknownPropertyException.hpp> #include <com/sun/star/beans/XMaterialHolder.hpp> @@ -78,6 +79,7 @@ #include <com/sun/star/container/ElementExistException.hpp> #include <com/sun/star/container/NoSuchElementException.hpp> #include <com/sun/star/container/XContainer.hpp> +#include <com/sun/star/container/XContainerListener.hpp> #include <com/sun/star/container/XContainerQuery.hpp> #include <com/sun/star/container/XEnumeration.hpp> #include <com/sun/star/container/XHierarchicalNameAccess.hpp> @@ -97,43 +99,43 @@ #include <com/sun/star/document/XDocumentLanguages.hpp> #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp> #include <com/sun/star/document/XDocumentRecovery.hpp> +#include <com/sun/star/document/XEventBroadcaster.hpp> +#include <com/sun/star/document/XEventListener.hpp> #include <com/sun/star/document/XInteractionFilterOptions.hpp> #include <com/sun/star/document/XInteractionFilterSelect.hpp> #include <com/sun/star/document/XTypeDetection.hpp> #include <com/sun/star/embed/ElementModes.hpp> #include <com/sun/star/embed/FileSystemStorageFactory.hpp> #include <com/sun/star/embed/VerbAttributes.hpp> +#include <com/sun/star/embed/VerbDescriptor.hpp> #include <com/sun/star/embed/XPackageStructureCreator.hpp> #include <com/sun/star/embed/XTransactedObject.hpp> #include <com/sun/star/frame/AppDispatchProvider.hpp> -#include <com/sun/star/frame/theAutoRecovery.hpp> #include <com/sun/star/frame/CommandGroup.hpp> #include <com/sun/star/frame/ContentHandlerFactory.hpp> #include <com/sun/star/frame/Desktop.hpp> #include <com/sun/star/frame/DispatchHelper.hpp> +#include <com/sun/star/frame/DispatchResultEvent.hpp> #include <com/sun/star/frame/DispatchResultState.hpp> +#include <com/sun/star/frame/FeatureStateEvent.hpp> #include <com/sun/star/frame/Frame.hpp> #include <com/sun/star/frame/FrameAction.hpp> #include <com/sun/star/frame/FrameLoaderFactory.hpp> #include <com/sun/star/frame/FrameSearchFlag.hpp> -#include <com/sun/star/frame/GlobalEventBroadcaster.hpp> #include <com/sun/star/frame/LayoutManager.hpp> #include <com/sun/star/frame/LayoutManagerEvents.hpp> #include <com/sun/star/frame/ModuleManager.hpp> #include <com/sun/star/frame/OfficeFrameLoader.hpp> -#include <com/sun/star/frame/thePopupMenuControllerFactory.hpp> #include <com/sun/star/frame/StartModule.hpp> -#include <com/sun/star/frame/theStatusbarControllerFactory.hpp> #include <com/sun/star/frame/TaskCreator.hpp> -#include <com/sun/star/frame/theToolbarControllerFactory.hpp> -#include <com/sun/star/frame/theUICommandDescription.hpp> -#include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XControlNotificationListener.hpp> #include <com/sun/star/frame/XController.hpp> #include <com/sun/star/frame/XDesktop.hpp> #include <com/sun/star/frame/XDispatch.hpp> #include <com/sun/star/frame/XDispatchProvider.hpp> +#include <com/sun/star/frame/XDispatchResultListener.hpp> #include <com/sun/star/frame/XFrame.hpp> +#include <com/sun/star/frame/XFrame2.hpp> #include <com/sun/star/frame/XFrameLoader.hpp> #include <com/sun/star/frame/XFramesSupplier.hpp> #include <com/sun/star/frame/XInterceptorInfo.hpp> @@ -144,17 +146,28 @@ #include <com/sun/star/frame/XModel2.hpp> #include <com/sun/star/frame/XModule.hpp> #include <com/sun/star/frame/XModuleManager.hpp> +#include <com/sun/star/frame/XModuleManager2.hpp> #include <com/sun/star/frame/XNotifyingDispatch.hpp> #include <com/sun/star/frame/XPopupMenuController.hpp> +#include <com/sun/star/frame/XSessionManagerClient.hpp> +#include <com/sun/star/frame/XSessionManagerListener2.hpp> +#include <com/sun/star/frame/XStatusListener.hpp> #include <com/sun/star/frame/XStorable.hpp> #include <com/sun/star/frame/XSynchronousFrameLoader.hpp> #include <com/sun/star/frame/XTerminateListener2.hpp> #include <com/sun/star/frame/XTitle.hpp> #include <com/sun/star/frame/XTitleChangeBroadcaster.hpp> #include <com/sun/star/frame/XToolbarController.hpp> +#include <com/sun/star/frame/XUIControllerFactory.hpp> #include <com/sun/star/frame/status/ItemState.hpp> #include <com/sun/star/frame/status/ItemStatus.hpp> #include <com/sun/star/frame/status/Visibility.hpp> +#include <com/sun/star/frame/theAutoRecovery.hpp> +#include <com/sun/star/frame/theGlobalEventBroadcaster.hpp> +#include <com/sun/star/frame/thePopupMenuControllerFactory.hpp> +#include <com/sun/star/frame/theStatusbarControllerFactory.hpp> +#include <com/sun/star/frame/theToolbarControllerFactory.hpp> +#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/graphic/GraphicType.hpp> #include <com/sun/star/graphic/XGraphic.hpp> #include <com/sun/star/i18n/ScriptType.hpp> @@ -165,21 +178,23 @@ #include <com/sun/star/io/XStream.hpp> #include <com/sun/star/io/XTruncate.hpp> #include <com/sun/star/lang/DisposedException.hpp> +#include <com/sun/star/lang/EventObject.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/lang/SystemDependent.hpp> #include <com/sun/star/lang/WrappedTargetException.hpp> +#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XEventListener.hpp> #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XMultiComponentFactory.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> +#include <com/sun/star/lang/XSingleComponentFactory.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp> -#include <com/sun/star/linguistic2/XLanguageGuessing.hpp> -#include <com/sun/star/style/XStyleFamiliesSupplier.hpp> +#include <com/sun/star/lang/XTypeProvider.hpp> +#include <com/sun/star/loader/CannotActivateFactoryException.hpp> #include <com/sun/star/task/ErrorCodeRequest.hpp> #include <com/sun/star/task/InteractionHandler.hpp> -#include <com/sun/star/task/theJobExecutor.hpp> #include <com/sun/star/task/StatusIndicatorFactory.hpp> #include <com/sun/star/task/XAsyncJob.hpp> #include <com/sun/star/task/XInteractionAbort.hpp> @@ -189,7 +204,8 @@ #include <com/sun/star/task/XJobExecutor.hpp> #include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/task/XStatusIndicatorFactory.hpp> -#include <com/sun/star/task/XStatusIndicatorSupplier.hpp> +#include <com/sun/star/task/theJobExecutor.hpp> +#include <com/sun/star/ucb/CommandFailedException.hpp> #include <com/sun/star/ucb/InteractiveAugmentedIOException.hpp> #include <com/sun/star/ucb/InteractiveIOException.hpp> #include <com/sun/star/ucb/NameClash.hpp> @@ -204,18 +220,26 @@ #include <com/sun/star/ui/ItemType.hpp> #include <com/sun/star/ui/ModuleAcceleratorConfiguration.hpp> #include <com/sun/star/ui/ModuleUIConfigurationManager.hpp> -#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> -#include <com/sun/star/ui/theUIElementFactoryManager.hpp> #include <com/sun/star/ui/UIElementType.hpp> -#include <com/sun/star/ui/theWindowStateConfiguration.hpp> +#include <com/sun/star/ui/XAcceleratorConfiguration.hpp> +#include <com/sun/star/ui/XContextChangeEventMultiplexer.hpp> +#include <com/sun/star/ui/XModuleUIConfigurationManager2.hpp> #include <com/sun/star/ui/XModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XStatusbarItem.hdl> #include <com/sun/star/ui/XUIConfiguration.hpp> +#include <com/sun/star/ui/XUIConfigurationManager.hpp> +#include <com/sun/star/ui/XUIConfigurationManager2.hpp> #include <com/sun/star/ui/XUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XUIConfigurationPersistence.hpp> +#include <com/sun/star/ui/XUIConfigurationStorage.hpp> #include <com/sun/star/ui/XUIElement.hpp> +#include <com/sun/star/ui/XUIElementFactory.hpp> +#include <com/sun/star/ui/XUIElementFactoryManager.hpp> #include <com/sun/star/ui/XUIElementSettings.hpp> #include <com/sun/star/ui/XUIFunctionListener.hpp> +#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> +#include <com/sun/star/ui/theUIElementFactoryManager.hpp> +#include <com/sun/star/ui/theWindowStateConfiguration.hpp> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Exception.hpp> #include <com/sun/star/uno/RuntimeException.hpp> @@ -225,25 +249,28 @@ #include <com/sun/star/uri/XUriReference.hpp> #include <com/sun/star/uri/XUriReferenceFactory.hpp> #include <com/sun/star/util/Color.hpp> -#include <com/sun/star/util/thePathSettings.hpp> #include <com/sun/star/util/PathSubstitution.hpp> #include <com/sun/star/util/URL.hpp> #include <com/sun/star/util/URLTransformer.hpp> #include <com/sun/star/util/XChangesBatch.hpp> +#include <com/sun/star/util/XChangesListener.hpp> #include <com/sun/star/util/XChangesNotifier.hpp> #include <com/sun/star/util/XCloseBroadcaster.hpp> #include <com/sun/star/util/XCloseable.hpp> #include <com/sun/star/util/XMacroExpander.hpp> #include <com/sun/star/util/XModifiable.hpp> #include <com/sun/star/util/XModifyBroadcaster.hpp> +#include <com/sun/star/util/XModifyListener.hpp> +#include <com/sun/star/util/XPathSettings.hpp> +#include <com/sun/star/util/XStringSubstitution.hpp> #include <com/sun/star/util/XStringWidth.hpp> #include <com/sun/star/util/XURLTransformer.hpp> +#include <com/sun/star/util/thePathSettings.hpp> #include <com/sun/star/xml/sax/InputSource.hpp> #include <com/sun/star/xml/sax/Parser.hpp> #include <com/sun/star/xml/sax/Writer.hpp> #include <com/sun/star/xml/sax/XAttributeList.hpp> #include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp> -#include <com/sun/star/xml/sax/XParser.hpp> #include <comphelper/attributelist.hxx> #include <comphelper/configuration.hxx> #include <comphelper/configurationhelper.hxx> @@ -260,12 +287,22 @@ #include <config_features.h> #include <config_folders.h> #include <config_orcus.h> +#include <cppuhelper/basemutex.hxx> +#include <cppuhelper/compbase2.hxx> +#include <cppuhelper/compbase3.hxx> +#include <cppuhelper/compbase4.hxx> +#include <cppuhelper/compbase5.hxx> #include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/factory.hxx> #include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/implbase4.hxx> +#include <cppuhelper/interfacecontainer.hxx> +#include <cppuhelper/propshlp.hxx> #include <cppuhelper/proptypehlp.hxx> #include <cppuhelper/queryinterface.hxx> +#include <cppuhelper/supportsservice.hxx> #include <cppuhelper/typeprovider.hxx> #include <cppuhelper/weak.hxx> #include <functional> @@ -275,24 +312,27 @@ #include <officecfg/Office/Common.hxx> #include <officecfg/Office/Paths.hxx> #include <officecfg/Office/TabBrowse.hxx> +#include <officecfg/Setup.hxx> +#include <osl/conditn.hxx> #include <osl/diagnose.h> #include <osl/file.hxx> #include <osl/mutex.hxx> #include <osl/process.h> #include <osl/security.hxx> #include <osl/socket.hxx> -#include <osl/thread.h> #include <osl/time.h> #include <rtl/bootstrap.hxx> #include <rtl/instance.hxx> #include <rtl/logfile.h> +#include <rtl/ref.hxx> #include <rtl/strbuf.hxx> #include <rtl/string.h> #include <rtl/string.hxx> #include <rtl/uri.hxx> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> -#include <sal/macros.h> +#include <sal/config.h> +#include <sal/types.h> #include <set> #include <stdio.h> #include <string.h> @@ -309,6 +349,7 @@ #include <svtools/menuoptions.hxx> #include <svtools/miscopt.hxx> #include <svtools/openfiledroptargetlistener.hxx> +#include <svtools/popupmenucontrollerbase.hxx> #include <svtools/sfxecode.hxx> #include <svtools/statusbarcontroller.hxx> #include <svtools/toolboxcontroller.hxx> @@ -320,8 +361,10 @@ #include <tools/diagnose_ex.h> #include <tools/errinf.hxx> #include <tools/gen.hxx> +#include <tools/link.hxx> #include <tools/rcid.h> #include <tools/resmgr.hxx> +#include <tools/solar.h> #include <tools/stream.hxx> #include <tools/urlobj.hxx> #include <tools/wintypes.hxx> @@ -346,6 +389,7 @@ #include <vcl/cmdevt.hxx> #include <vcl/combobox.hxx> #include <vcl/dockingarea.hxx> +#include <vcl/evntpost.hxx> #include <vcl/graph.hxx> #include <vcl/graphicfilter.hxx> #include <vcl/i18nhelp.hxx> @@ -355,10 +399,12 @@ #include <vcl/msgbox.hxx> #include <vcl/pngread.hxx> #include <vcl/pngwrite.hxx> +#include <vcl/settings.hxx> #include <vcl/status.hxx> #include <vcl/svapp.hxx> #include <vcl/syswin.hxx> #include <vcl/taskpanelist.hxx> +#include <vcl/timer.hxx> #include <vcl/toolbox.hxx> #include <vcl/wall.hxx> #include <vcl/window.hxx> diff --git a/oox/inc/pch/precompiled_oox.hxx b/oox/inc/pch/precompiled_oox.hxx index d2dae89d3bec..a03003b6ea00 100644 --- a/oox/inc/pch/precompiled_oox.hxx +++ b/oox/inc/pch/precompiled_oox.hxx @@ -20,6 +20,7 @@ #include "cppuhelper/exc_hlp.hxx" #include "rtl/ustrbuf.hxx" #include "sal/log.hxx" +#include "sax/fastparser.hxx" #include <algorithm> #include <assert.h> #include <basegfx/matrix/b2dhommatrix.hxx> @@ -29,7 +30,9 @@ #include <boost/algorithm/string.hpp> #include <boost/bind.hpp> #include <boost/optional.hpp> +#include <boost/scoped_ptr.hpp> #include <boost/unordered_map.hpp> +#include <cassert> #include <com/sun/star/animations/AnimationCalcMode.hpp> #include <com/sun/star/animations/AnimationColorSpace.hpp> #include <com/sun/star/animations/AnimationEndSync.hpp> @@ -310,6 +313,8 @@ #include <com/sun/star/text/XTextRange.hpp> #include <com/sun/star/ucb/SimpleFileAccess.hpp> #include <com/sun/star/uno/Any.hxx> +#include <com/sun/star/uno/RuntimeException.hpp> +#include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uri/UriReferenceFactory.hpp> #include <com/sun/star/util/MeasureUnit.hpp> @@ -318,6 +323,7 @@ #include <com/sun/star/xml/AttributeData.hpp> #include <com/sun/star/xml/dom/DocumentBuilder.hpp> #include <com/sun/star/xml/dom/XDocument.hpp> +#include <com/sun/star/xml/sax/FastParser.hpp> #include <com/sun/star/xml/sax/FastToken.hpp> #include <com/sun/star/xml/sax/InputSource.hpp> #include <com/sun/star/xml/sax/XFastContextHandler.hpp> @@ -330,7 +336,6 @@ #include <comphelper/processfactory.hxx> #include <comphelper/seqstream.hxx> #include <comphelper/sequenceashashmap.hxx> -#include <comphelper/stl_types.hxx> #include <comphelper/storagehelper.hxx> #include <comphelper/string.hxx> #include <cppuhelper/implbase1.hxx> @@ -339,6 +344,7 @@ #include <cppuhelper/supportsservice.hxx> #include <cstdio> #include <editeng/escapementitem.hxx> +#include <editeng/outlobj.hxx> #include <editeng/svxenum.hxx> #include <editeng/unoprnms.hxx> #include <filter/msfilter/escherex.hxx> @@ -367,6 +373,8 @@ #include <rtl/ustrbuf.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> +#include <sal/config.h> +#include <sax/fastattribs.hxx> #include <sax/fshelper.hxx> #include <sax/tools/converter.hxx> #include <set> @@ -383,7 +391,7 @@ #include <svx/svdtrans.hxx> #include <svx/unoapi.hxx> #include <svx/unopage.hxx> -#include <time.h> +#include <svx/unoshape.hxx> #include <tools/gen.hxx> #include <tools/globname.hxx> #include <tools/mapunit.hxx> @@ -399,6 +407,7 @@ #include <vcl/graph.hxx> #include <vcl/graphicfilter.hxx> #include <vcl/outdev.hxx> +#include <vcl/settings.hxx> #include <vcl/svapp.hxx> #include <vcl/wmf.hxx> #include <vector> diff --git a/sal/inc/pch/precompiled_sal.hxx b/sal/inc/pch/precompiled_sal.hxx index 39195885ed70..f26f2030b52d 100644 --- a/sal/inc/pch/precompiled_sal.hxx +++ b/sal/inc/pch/precompiled_sal.hxx @@ -51,6 +51,7 @@ #include "rtl/ustring.hxx" #include "rtl/uuid.h" #include <algorithm> +#include <boost/noncopyable.hpp> #include <boost/unordered_map.hpp> #include <cassert> #include <config_features.h> diff --git a/sc/inc/pch/precompiled_sc.hxx b/sc/inc/pch/precompiled_sc.hxx index 87744d779c0a..8e32152a07ee 100644 --- a/sc/inc/pch/precompiled_sc.hxx +++ b/sc/inc/pch/precompiled_sc.hxx @@ -65,7 +65,6 @@ #include "rtl/bootstrap.hxx" #include "rtl/math.hxx" #include "rtl/strbuf.hxx" -#include "rtl/ustrbuf.hxx" #include "rtl/ustring.hxx" #include "sal/types.h" #include "sfx2/app.hxx" @@ -86,13 +85,13 @@ #include "svl/zforlist.hxx" #include "svl/zformat.hxx" #include "svtools/fmtfield.hxx" -#include "svtools/optionsdrawinglayer.hxx" #include "svtools/svlbitm.hxx" #include "svtools/treelistbox.hxx" #include "svtools/treelistentry.hxx" #include "svtools/viewdataentry.hxx" #include "svx/dataaccessdescriptor.hxx" #include "svx/sdr/overlay/overlaymanager.hxx" +#include "svx/unoapi.hxx" #include "tools/color.hxx" #include "tools/fract.hxx" #include "tools/gen.hxx" @@ -133,6 +132,7 @@ #include <basic/sbxobj.hxx> #include <boost/bind.hpp> #include <boost/foreach.hpp> +#include <boost/noncopyable.hpp> #include <boost/ptr_container/ptr_vector.hpp> #include <boost/random.hpp> #include <boost/random/bernoulli_distribution.hpp> @@ -144,10 +144,12 @@ #include <boost/random/normal_distribution.hpp> #include <boost/random/uniform_int_distribution.hpp> #include <boost/random/uniform_real_distribution.hpp> +#include <boost/scoped_array.hpp> #include <boost/scoped_ptr.hpp> #include <boost/shared_ptr.hpp> #include <boost/unordered_map.hpp> #include <boost/unordered_set.hpp> +#include <cassert> #include <climits> #include <com/sun/star/accessibility/AccessibleEventId.hpp> #include <com/sun/star/accessibility/AccessibleEventObject.hpp> @@ -162,6 +164,7 @@ #include <com/sun/star/accessibility/XAccessibleContext.hpp> #include <com/sun/star/accessibility/XAccessibleStateSet.hpp> #include <com/sun/star/accessibility/XAccessibleTable.hpp> +#include <com/sun/star/accessibility/XAccessibleText.hpp> #include <com/sun/star/awt/CharSet.hpp> #include <com/sun/star/awt/FontDescriptor.hpp> #include <com/sun/star/awt/FontFamily.hpp> @@ -180,7 +183,6 @@ #include <com/sun/star/awt/XBitmap.hpp> #include <com/sun/star/awt/XControlModel.hpp> #include <com/sun/star/awt/XFont.hpp> -#include <com/sun/star/beans/Introspection.hpp> #include <com/sun/star/beans/MethodConcept.hpp> #include <com/sun/star/beans/NamedValue.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp> @@ -193,6 +195,7 @@ #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertySetInfo.hpp> #include <com/sun/star/beans/XPropertyState.hpp> +#include <com/sun/star/beans/theIntrospection.hpp> #include <com/sun/star/chart/ChartDataRowSource.hpp> #include <com/sun/star/chart/XChartDocument.hpp> #include <com/sun/star/chart2/XChartDocument.hpp> @@ -224,6 +227,7 @@ #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp> #include <com/sun/star/document/XEmbeddedObjectSupplier.hpp> #include <com/sun/star/document/XStorageBasedDocument.hpp> +#include <com/sun/star/drawing/ShapeCollection.hpp> #include <com/sun/star/drawing/XDrawPageSupplier.hpp> #include <com/sun/star/drawing/XDrawPagesSupplier.hpp> #include <com/sun/star/drawing/XShape.hpp> @@ -276,6 +280,7 @@ #include <com/sun/star/lang/Locale.hpp> #include <com/sun/star/lang/NotInitializedException.hpp> #include <com/sun/star/lang/ServiceNotRegisteredException.hpp> +#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> @@ -390,6 +395,8 @@ #include <com/sun/star/sheet/XNamedRanges.hpp> #include <com/sun/star/sheet/XPrintAreas.hpp> #include <com/sun/star/sheet/XSelectedSheetsSupplier.hpp> +#include <com/sun/star/sheet/XSheetAnnotation.hpp> +#include <com/sun/star/sheet/XSheetAnnotationAnchor.hpp> #include <com/sun/star/sheet/XSheetAnnotationsSupplier.hpp> #include <com/sun/star/sheet/XSheetCellRange.hpp> #include <com/sun/star/sheet/XSheetCondition.hpp> @@ -457,13 +464,14 @@ #include <com/sun/star/ucb/XContent.hpp> #include <com/sun/star/ucb/XContentAccess.hpp> #include <com/sun/star/ucb/XSimpleFileAccess3.hpp> -#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XAcceleratorConfiguration.hpp> +#include <com/sun/star/ui/XUIElement.hpp> #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp> #include <com/sun/star/ui/dialogs/FilePicker.hpp> #include <com/sun/star/ui/dialogs/TemplateDescription.hpp> #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp> #include <com/sun/star/ui/dialogs/XSLTFilterDialog.hpp> +#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Exception.hpp> #include <com/sun/star/uno/Reference.h> @@ -506,21 +514,23 @@ #include <comphelper/propertysetinfo.hxx> #include <comphelper/sequence.hxx> #include <comphelper/servicehelper.hxx> -#include <comphelper/stl_types.hxx> #include <comphelper/storagehelper.hxx> #include <comphelper/string.hxx> #include <comphelper/types.hxx> #include <comphelper/uno3.hxx> #include <config_features.h> #include <config_mpl.h> +#include <config_options.h> #include <config_orcus.h> #include <config_telepathy.h> #include <cppuhelper/bootstrap.hxx> #include <cppuhelper/component_context.hxx> #include <cppuhelper/factory.hxx> #include <cppuhelper/implbase2.hxx> +#include <cppuhelper/supportsservice.hxx> #include <cstddef> #include <cstdio> +#include <cstdlib> #include <cstring> #include <ctype.h> #include <drawinglayer/geometry/viewinformation2d.hxx> @@ -596,11 +606,14 @@ #include <formula/IFunctionDescription.hxx> #include <formula/errorcodes.hxx> #include <formula/formulahelper.hxx> +#include <formula/grammar.hxx> #include <formula/token.hxx> +#include <formula/vectortoken.hxx> #include <functional> #include <i18nlangtag/lang.h> #include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/mslangid.hxx> +#include <i18nutil/unicode.hxx> #include <iostream> #include <limits.h> #include <limits> @@ -615,12 +628,15 @@ #include <numeric> #include <officecfg/Office/Calc.hxx> #include <officecfg/Office/Common.hxx> +#include <osl/conditn.hxx> #include <osl/diagnose.h> #include <osl/file.hxx> #include <osl/module.hxx> #include <osl/mutex.hxx> #include <osl/security.hxx> #include <osl/thread.h> +#include <osl/time.h> +#include <queue> #include <rsc/rscsfx.hxx> #include <rtl/crc.h> #include <rtl/instance.hxx> @@ -631,8 +647,11 @@ #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> #include <sal/alloca.h> +#include <sal/config.h> +#include <sal/log.hxx> #include <sal/macros.h> #include <sal/types.h> +#include <salhelper/thread.hxx> #include <sax/tools/converter.hxx> #include <set> #include <sfx2/DocumentMetadataAccess.hxx> @@ -690,6 +709,7 @@ #include <stdlib.h> #include <string.h> #include <string> +#include <svl/IndexedStyleSheets.hxx> #include <svl/PasswordHelper.hxx> #include <svl/aeitem.hxx> #include <svl/asiancfg.hxx> @@ -703,6 +723,7 @@ #include <svl/globalnameitem.hxx> #include <svl/ilstitem.hxx> #include <svl/inethist.hxx> +#include <svl/int64item.hxx> #include <svl/intitem.hxx> #include <svl/isethint.hxx> #include <svl/itemiter.hxx> @@ -718,6 +739,7 @@ #include <svl/ptitem.hxx> #include <svl/rectitem.hxx> #include <svl/sharecontrolfile.hxx> +#include <svl/sharedstringpool.hxx> #include <svl/slstitm.hxx> #include <svl/smplhint.hxx> #include <svl/srchitem.hxx> @@ -737,6 +759,7 @@ #include <svtools/embedhlp.hxx> #include <svtools/embedtransfer.hxx> #include <svtools/imapobj.hxx> +#include <svtools/inettbc.hxx> #include <svtools/insdlg.hxx> #include <svtools/langtab.hxx> #include <svtools/miscopt.hxx> @@ -745,6 +768,7 @@ #include <svtools/simptabl.hxx> #include <svtools/soerr.hxx> #include <svtools/stdctrl.hxx> +#include <svtools/svlbitm.hxx> #include <svtools/svtabbx.hxx> #include <svtools/transfer.hxx> #include <svtools/treelistbox.hxx> @@ -752,12 +776,14 @@ #include <svtools/unoevent.hxx> #include <svtools/unoimap.hxx> #include <svtools/xwindowitem.hxx> +#include <svx/AccessibleControlShape.hxx> #include <svx/AccessibleShape.hxx> #include <svx/AccessibleShapeInfo.hxx> #include <svx/AccessibleShapeTreeInfo.hxx> #include <svx/AccessibleTextHelper.hxx> #include <svx/AffineMatrixItem.hxx> #include <svx/ShapeTypeHandler.hxx> +#include <svx/SvxShapeTypes.hxx> #include <svx/algitem.hxx> #include <svx/charthelper.hxx> #include <svx/chrtitem.hxx> @@ -777,6 +803,7 @@ #include <svx/fmglob.hxx> #include <svx/fmmodel.hxx> #include <svx/fmobjfac.hxx> +#include <svx/fmpage.hxx> #include <svx/fmshell.hxx> #include <svx/fmview.hxx> #include <svx/fntctl.hxx> @@ -934,6 +961,7 @@ #include <tools/resid.hxx> #include <tools/rtti.hxx> #include <tools/shl.hxx> +#include <tools/solar.h> #include <tools/stream.hxx> #include <tools/tenccvt.hxx> #include <tools/urlobj.hxx> @@ -981,6 +1009,7 @@ #include <vcl/i18nhelp.hxx> #include <vcl/image.hxx> #include <vcl/keycodes.hxx> +#include <vcl/layout.hxx> #include <vcl/lineinfo.hxx> #include <vcl/lstbox.hxx> #include <vcl/metric.hxx> diff --git a/sc/inc/pch/precompiled_scfilt.hxx b/sc/inc/pch/precompiled_scfilt.hxx index d78923f53ea3..aaad32c2b621 100644 --- a/sc/inc/pch/precompiled_scfilt.hxx +++ b/sc/inc/pch/precompiled_scfilt.hxx @@ -18,6 +18,7 @@ #include "cppuhelper/implementationentry.hxx" #include "editeng/editstat.hxx" #include "formula/errorcodes.hxx" +#include "officecfg/Office/Common.hxx" #include "oox/core/filterbase.hxx" #include "oox/core/relations.hxx" #include "oox/core/xmlfilterbase.hxx" @@ -44,7 +45,6 @@ #include "oox/token/tokens.hxx" #include "oox/vml/vmlshape.hxx" #include "oox/vml/vmlshapecontainer.hxx" -#include "rtl/ref.hxx" #include "rtl/strbuf.hxx" #include "sal/config.h" #include "sal/types.h" @@ -71,6 +71,7 @@ #include <boost/scoped_array.hpp> #include <boost/scoped_ptr.hpp> #include <boost/shared_ptr.hpp> +#include <cassert> #include <com/sun/star/awt/DeviceInfo.hpp> #include <com/sun/star/awt/FontDescriptor.hpp> #include <com/sun/star/awt/FontFamily.hpp> @@ -299,6 +300,7 @@ #include <com/sun/star/style/VerticalAlignment.hpp> #include <com/sun/star/style/XStyle.hpp> #include <com/sun/star/style/XStyleFamiliesSupplier.hpp> +#include <com/sun/star/table/BorderLineStyle.hpp> #include <com/sun/star/table/CellAddress.hpp> #include <com/sun/star/table/CellContentType.hpp> #include <com/sun/star/table/CellJustifyMethod.hpp> @@ -310,6 +312,7 @@ #include <com/sun/star/table/XCell2.hpp> #include <com/sun/star/table/XCellRange.hpp> #include <com/sun/star/table/XColumnRowRange.hpp> +#include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/text/FilenameDisplayFormat.hpp> #include <com/sun/star/text/WritingMode2.hpp> #include <com/sun/star/text/XText.hpp> @@ -317,9 +320,9 @@ #include <com/sun/star/text/XTextCursor.hpp> #include <com/sun/star/text/XTextRange.hpp> #include <com/sun/star/ui/ItemType.hpp> -#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XImageManager.hpp> #include <com/sun/star/ui/XUIConfigurationPersistence.hpp> +#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/util/Date.hpp> @@ -339,6 +342,7 @@ #include <config_orcus.h> #include <cppuhelper/component_context.hxx> #include <cppuhelper/implbase1.hxx> +#include <cppuhelper/supportsservice.hxx> #include <cstring> #include <ctype.h> #include <editeng/adjustitem.hxx> @@ -397,6 +401,7 @@ #include <officecfg/Setup.hxx> #include <officecfg/System.hxx> #include <oox/core/contexthandler.hxx> +#include <oox/core/fastparser.hxx> #include <oox/core/filterbase.hxx> #include <oox/core/xmlfilterbase.hxx> #include <oox/export/chartexport.hxx> @@ -413,10 +418,12 @@ #include <oox/ole/vbaproject.hxx> #include <oox/token/properties.hxx> #include <oox/token/tokens.hxx> +#include <osl/conditn.hxx> #include <osl/diagnose.h> #include <osl/endian.h> #include <osl/mutex.hxx> #include <osl/thread.h> +#include <queue> #include <rtl/math.hxx> #include <rtl/random.h> #include <rtl/strbuf.hxx> @@ -430,6 +437,7 @@ #include <sal/log.hxx> #include <sal/macros.h> #include <sal/mathconf.h> +#include <salhelper/thread.hxx> #include <sax/fshelper.hxx> #include <sax/tools/converter.hxx> #include <set> @@ -456,6 +464,7 @@ #include <svl/itemset.hxx> #include <svl/languageoptions.hxx> #include <svl/poolitem.hxx> +#include <svl/sharedstringpool.hxx> #include <svl/stritem.hxx> #include <svl/style.hxx> #include <svl/urihelper.hxx> @@ -538,7 +547,9 @@ #include <vcl/graph.hxx> #include <vcl/graphicfilter.hxx> #include <vcl/outdev.hxx> +#include <vcl/settings.hxx> #include <vcl/svapp.hxx> +#include <vcl/timer.hxx> #include <vcl/virdev.hxx> #include <vcl/wmf.hxx> #include <vector> diff --git a/sc/inc/pch/precompiled_scopencl.hxx b/sc/inc/pch/precompiled_scopencl.hxx index 0ec393e410ca..23d754ff50f0 100644 --- a/sc/inc/pch/precompiled_scopencl.hxx +++ b/sc/inc/pch/precompiled_scopencl.hxx @@ -21,10 +21,11 @@ #include <boost/scoped_ptr.hpp> #include <cmath> #include <config_folders.h> +#include <float.h> #include <iostream> #include <list> #include <map> -#include <memory> +#include <math.h> #include <osl/file.hxx> #include <rtl/bootstrap.hxx> #include <rtl/digest.h> @@ -34,5 +35,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> +#include <vector> /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/inc/pch/precompiled_vbaobj.hxx b/sc/inc/pch/precompiled_vbaobj.hxx index af05020f2c3a..679b85db1a11 100644 --- a/sc/inc/pch/precompiled_vbaobj.hxx +++ b/sc/inc/pch/precompiled_vbaobj.hxx @@ -26,6 +26,7 @@ #include <basic/sbuno.hxx> #include <basic/sbx.hxx> #include <basic/sbxobj.hxx> +#include <boost/scoped_ptr.hpp> #include <boost/unordered_map.hpp> #include <com/sun/star/awt/FontSlant.hpp> #include <com/sun/star/awt/FontStrikeout.hpp> @@ -182,7 +183,7 @@ #include <com/sun/star/uri/XUriReferenceFactory.hpp> #include <com/sun/star/util/CellProtection.hpp> #include <com/sun/star/util/NumberFormat.hpp> -#include <com/sun/star/util/thePathSettings.hpp> +#include <com/sun/star/util/PathSettings.hpp> #include <com/sun/star/util/TriState.hpp> #include <com/sun/star/util/XChangesListener.hpp> #include <com/sun/star/util/XChangesNotifier.hpp> diff --git a/sd/inc/pch/precompiled_sd.hxx b/sd/inc/pch/precompiled_sd.hxx index f9365d73fe2f..7defc5f4a2c9 100644 --- a/sd/inc/pch/precompiled_sd.hxx +++ b/sd/inc/pch/precompiled_sd.hxx @@ -45,6 +45,7 @@ #include <avmedia/mediaplayer.hxx> #include <avmedia/mediatoolbox.hxx> #include <avmedia/mediawindow.hxx> +#include <avmedia/modeltools.hxx> #include <basegfx/color/bcolor.hxx> #include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx> @@ -70,6 +71,7 @@ #include <boost/foreach.hpp> #include <boost/function.hpp> #include <boost/limits.hpp> +#include <boost/make_shared.hpp> #include <boost/optional.hpp> #include <boost/ptr_container/ptr_vector.hpp> #include <boost/scoped_array.hpp> @@ -165,6 +167,7 @@ #include <com/sun/star/drawing/GraphicExportFilter.hpp> #include <com/sun/star/drawing/GraphicFilterRequest.hpp> #include <com/sun/star/drawing/LineStyle.hpp> +#include <com/sun/star/drawing/ShapeCollection.hpp> #include <com/sun/star/drawing/XDrawPage.hpp> #include <com/sun/star/drawing/XDrawPages.hpp> #include <com/sun/star/drawing/XDrawPagesSupplier.hpp> @@ -203,14 +206,12 @@ #include <com/sun/star/embed/XTransactedObject.hpp> #include <com/sun/star/embed/XVisualObject.hpp> #include <com/sun/star/form/FormButtonType.hpp> -#include <com/sun/star/frame/theAutoRecovery.hpp> #include <com/sun/star/frame/Desktop.hpp> #include <com/sun/star/frame/DispatchResultState.hpp> #include <com/sun/star/frame/DocumentTemplates.hpp> #include <com/sun/star/frame/FrameAction.hpp> #include <com/sun/star/frame/FrameActionEvent.hpp> #include <com/sun/star/frame/ModuleManager.hpp> -#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/frame/UnknownModuleException.hpp> #include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XController.hpp> @@ -224,6 +225,8 @@ #include <com/sun/star/frame/XStatusListener.hpp> #include <com/sun/star/frame/XStorable.hpp> #include <com/sun/star/frame/status/FontHeight.hpp> +#include <com/sun/star/frame/theAutoRecovery.hpp> +#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/gallery/GalleryItemType.hpp> #include <com/sun/star/geometry/RealPoint2D.hpp> #include <com/sun/star/graphic/GraphicProvider.hpp> @@ -361,9 +364,11 @@ #include <comphelper/sequence.hxx> #include <comphelper/servicehelper.hxx> #include <comphelper/serviceinfohelper.hxx> -#include <comphelper/stl_types.hxx> #include <comphelper/storagehelper.hxx> #include <comphelper/string.hxx> +#include <config_features.h> +#include <config_libraries.h> +#include <config_options.h> #include <cppcanvas/basegfxfactory.hxx> #include <cppcanvas/vclfactory.hxx> #include <cppuhelper/basemutex.hxx> @@ -384,6 +389,7 @@ #include <cppuhelper/weak.hxx> #include <cstddef> #include <cstdio> +#include <cstdlib> #include <deque> #include <drawinglayer/geometry/viewinformation2d.hxx> #include <drawinglayer/primitive2d/groupprimitive2d.hxx> @@ -399,6 +405,7 @@ #include <editeng/brushitem.hxx> #include <editeng/bulletitem.hxx> #include <editeng/charreliefitem.hxx> +#include <editeng/cmapitem.hxx> #include <editeng/colritem.hxx> #include <editeng/contouritem.hxx> #include <editeng/crossedoutitem.hxx> @@ -456,6 +463,7 @@ #include <filter/msfilter/svxmsbas.hxx> #include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/mslangid.hxx> +#include <i18nutil/unicode.hxx> #include <iterator> #include <limits.h> #include <linguistic/lngprops.hxx> @@ -543,6 +551,7 @@ #include <stdio.h> #include <string.h> #include <string> +#include <svl/IndexedStyleSheets.hxx> #include <svl/aeitem.hxx> #include <svl/brdcst.hxx> #include <svl/cjkoptions.hxx> @@ -589,11 +598,13 @@ #include <svtools/miscopt.hxx> #include <svtools/sfxecode.hxx> #include <svtools/soerr.hxx> +#include <svtools/svlbitm.hxx> #include <svtools/svmedit.hxx> #include <svtools/svtresid.hxx> #include <svtools/tabbar.hxx> #include <svtools/toolbarmenu.hxx> #include <svtools/transfer.hxx> +#include <svtools/treelistentry.hxx> #include <svtools/unoevent.hxx> #include <svtools/unoimap.hxx> #include <svtools/valueset.hxx> @@ -743,7 +754,6 @@ #include <svx/sxmsuitm.hxx> #include <svx/tabline.hxx> #include <svx/tbcontrl.hxx> -#include <svx/tbxcolor.hxx> #include <svx/tbxcustomshapes.hxx> #include <svx/unoapi.hxx> #include <svx/unofill.hxx> @@ -827,7 +837,6 @@ #include <tools/urlobj.hxx> #include <tools/wintypes.hxx> #include <tools/wldcrd.hxx> -#include <uno/lbnames.h> #include <unotools/accessiblestatesethelper.hxx> #include <unotools/charclass.hxx> #include <unotools/confignode.hxx> @@ -899,7 +908,6 @@ #include <vcl/tabpage.hxx> #include <vcl/taskpanelist.hxx> #include <vcl/toolbox.hxx> -#include <vcl/unohelp.hxx> #include <vcl/vclenum.hxx> #include <vcl/virdev.hxx> #include <vcl/waitobj.hxx> diff --git a/sfx2/inc/pch/precompiled_sfx.hxx b/sfx2/inc/pch/precompiled_sfx.hxx index 298bde31dd42..6d6c60adedce 100644 --- a/sfx2/inc/pch/precompiled_sfx.hxx +++ b/sfx2/inc/pch/precompiled_sfx.hxx @@ -14,83 +14,8 @@ also fixes all possible problems, so it's usually better to use it). */ -#include <com/sun/star/beans/PropertyAttribute.hpp> -#include <com/sun/star/beans/PropertyState.hpp> -#include <com/sun/star/beans/PropertyValue.hpp> -#include <com/sun/star/beans/XPropertySet.hpp> -#include <com/sun/star/beans/XPropertySetInfo.hpp> -#include <com/sun/star/configuration/theDefaultProvider.hpp> -#include <com/sun/star/document/XDocumentProperties.hpp> -#include <com/sun/star/document/XExporter.hpp> -#include <com/sun/star/document/XFilter.hpp> -#include <com/sun/star/document/XImporter.hpp> -#include <com/sun/star/embed/ElementModes.hpp> -#include <com/sun/star/embed/XStorage.hpp> -#include <com/sun/star/embed/XTransactedObject.hpp> -#include <com/sun/star/io/XActiveDataControl.hpp> -#include <com/sun/star/io/XActiveDataSource.hpp> -#include <com/sun/star/io/XStream.hpp> -#include <com/sun/star/lang/DisposedException.hpp> -#include <com/sun/star/lang/EventObject.hpp> -#include <com/sun/star/lang/IllegalArgumentException.hpp> -#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> -#include <com/sun/star/lang/XInitialization.hpp> -#include <com/sun/star/lang/XMultiServiceFactory.hpp> -#include <com/sun/star/lang/XServiceInfo.hpp> -#include <com/sun/star/system/SystemShellExecute.hpp> -#include <com/sun/star/system/SystemShellExecuteException.hpp> -#include <com/sun/star/system/SystemShellExecuteFlags.hpp> -#include <com/sun/star/task/ErrorCodeIOException.hpp> -#include <com/sun/star/ui/dialogs/TemplateDescription.hpp> -#include <com/sun/star/uno/Any.hxx> -#include <com/sun/star/uno/Exception.hpp> -#include <com/sun/star/uno/Reference.hxx> -#include <com/sun/star/uno/RuntimeException.hpp> -#include <com/sun/star/uno/Sequence.hxx> -#include <com/sun/star/uno/XInterface.hpp> -#include <com/sun/star/util/Date.hpp> -#include <com/sun/star/util/DateTimeWithTimezone.hpp> -#include <com/sun/star/util/DateWithTimezone.hpp> -#include <com/sun/star/util/Duration.hpp> -#include <com/sun/star/util/Time.hpp> -#include <com/sun/star/util/XChangesBatch.hpp> -#include <com/sun/star/util/XCloneable.hpp> -#include <com/sun/star/util/XModifiable.hpp> -#include <com/sun/star/view/XRenderable.hpp> -#include <com/sun/star/xml/dom/DocumentBuilder.hpp> -#include <com/sun/star/xml/dom/NodeType.hpp> -#include <com/sun/star/xml/dom/XDocument.hpp> -#include <com/sun/star/xml/dom/XElement.hpp> -#include <com/sun/star/xml/dom/XSAXDocumentBuilder.hpp> -#include <com/sun/star/xml/sax/Parser.hpp> -#include <com/sun/star/xml/sax/Writer.hpp> -#include <com/sun/star/xml/sax/XSAXSerializable.hpp> -#include <com/sun/star/xml/xpath/XPathAPI.hpp> -#include <comphelper/processfactory.hxx> -#include <comphelper/sequenceasvector.hxx> -#include <comphelper/storagehelper.hxx> -#include <cppuhelper/basemutex.hxx> -#include <cppuhelper/compbase6.hxx> -#include <cppuhelper/interfacecontainer.hxx> -#include <i18nlangtag/languagetag.hxx> -#include <officecfg/Office/Common.hxx> -#include <osl/diagnose.h> -#include <osl/mutex.hxx> -#include <rtl/ustrbuf.hxx> -#include <rtl/ustring.h> -#include <rtl/ustring.hxx> -#include <sal/config.h> -#include <sal/types.h> -#include <sax/tools/converter.hxx> -#include <sot/storage.hxx> -#include <svl/urihelper.hxx> -#include <svtools/htmlkywd.hxx> -#include <svtools/treelistentry.hxx> -#include <toolkit/awt/vclxdevice.hxx> -#include <tools/datetime.hxx> -#include <tools/debug.hxx> -#include <vcl/msgbox.hxx> -#include <vcl/svapp.hxx> +#include "tools/resmgr.hxx" +#include "unotools/charclass.hxx" #include <algorithm> #include <assert.h> #include <basegfx/color/bcolortools.hxx> @@ -138,9 +63,9 @@ #include <com/sun/star/awt/PosSize.hpp> #include <com/sun/star/awt/Size.hpp> #include <com/sun/star/awt/Toolkit.hpp> -#include <com/sun/star/awt/XButton.hpp> #include <com/sun/star/awt/XControl.hpp> #include <com/sun/star/awt/XDataTransferProviderAccess.hpp> +#include <com/sun/star/awt/XKeyListener.hpp> #include <com/sun/star/awt/XPopupMenu.hpp> #include <com/sun/star/awt/XTopWindow.hpp> #include <com/sun/star/awt/XWindow.hpp> @@ -150,6 +75,7 @@ #include <com/sun/star/beans/Property.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp> #include <com/sun/star/beans/PropertyBag.hpp> +#include <com/sun/star/beans/PropertyState.hpp> #include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/beans/StringPair.hpp> #include <com/sun/star/beans/XPropertyAccess.hpp> @@ -157,17 +83,13 @@ #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertySetInfo.hpp> #include <com/sun/star/configuration/theDefaultProvider.hpp> -#include <com/sun/star/container/ContainerEvent.hpp> #include <com/sun/star/container/XChild.hpp> -#include <com/sun/star/container/XContainer.hpp> -#include <com/sun/star/container/XContainerListener.hpp> #include <com/sun/star/container/XContainerQuery.hpp> #include <com/sun/star/container/XEnumeration.hpp> #include <com/sun/star/container/XIndexAccess.hpp> #include <com/sun/star/container/XIndexContainer.hpp> #include <com/sun/star/container/XIndexReplace.hpp> #include <com/sun/star/container/XNameAccess.hpp> -#include <com/sun/star/container/XNameContainer.hpp> #include <com/sun/star/container/XNameReplace.hpp> #include <com/sun/star/container/XNamed.hpp> #include <com/sun/star/container/XSet.hpp> @@ -183,18 +105,20 @@ #include <com/sun/star/document/IndexedPropertyValues.hpp> #include <com/sun/star/document/LockFileIgnoreRequest.hpp> #include <com/sun/star/document/LockedDocumentRequest.hpp> -#include <com/sun/star/document/LockedOnSavingRequest.hpp> #include <com/sun/star/document/MacroExecMode.hpp> #include <com/sun/star/document/OwnLockOnDocumentRequest.hpp> #include <com/sun/star/document/UpdateDocMode.hpp> #include <com/sun/star/document/XActionLockable.hpp> #include <com/sun/star/document/XCmisDocument.hpp> #include <com/sun/star/document/XCompatWriterDocProperties.hpp> +#include <com/sun/star/document/XDocumentEventListener.hpp> #include <com/sun/star/document/XDocumentProperties.hpp> #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp> #include <com/sun/star/document/XDocumentRevisionListPersistence.hpp> #include <com/sun/star/document/XDocumentSubStorageSupplier.hpp> #include <com/sun/star/document/XEmbeddedScripts.hpp> +#include <com/sun/star/document/XEventBroadcaster.hpp> +#include <com/sun/star/document/XEventListener.hpp> #include <com/sun/star/document/XEventsSupplier.hpp> #include <com/sun/star/document/XExporter.hpp> #include <com/sun/star/document/XFilter.hpp> @@ -222,11 +146,13 @@ #include <com/sun/star/embed/XEmbedObjectCreator.hpp> #include <com/sun/star/embed/XEmbedPersist.hpp> #include <com/sun/star/embed/XEmbeddedClient.hpp> +#include <com/sun/star/embed/XEmbeddedObject.hpp> #include <com/sun/star/embed/XEncryptionProtectedStorage.hpp> #include <com/sun/star/embed/XInplaceClient.hpp> #include <com/sun/star/embed/XInplaceObject.hpp> #include <com/sun/star/embed/XLinkageSupport.hpp> #include <com/sun/star/embed/XOptimizedStorage.hpp> +#include <com/sun/star/embed/XPackageStructureCreator.hpp> #include <com/sun/star/embed/XStateChangeListener.hpp> #include <com/sun/star/embed/XStorage.hpp> #include <com/sun/star/embed/XTransactedObject.hpp> @@ -249,13 +175,11 @@ #include <com/sun/star/frame/FrameAction.hpp> #include <com/sun/star/frame/FrameActionEvent.hpp> #include <com/sun/star/frame/FrameSearchFlag.hpp> -#include <com/sun/star/frame/GlobalEventBroadcaster.hpp> #include <com/sun/star/frame/IllegalArgumentIOException.hpp> #include <com/sun/star/frame/LayoutManagerEvents.hpp> #include <com/sun/star/frame/ModuleManager.hpp> -#include <com/sun/star/frame/theToolbarControllerFactory.hpp> -#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/frame/UntitledNumbersConst.hpp> +#include <com/sun/star/frame/XAppDispatchProvider.hpp> #include <com/sun/star/frame/XBorderResizeListener.hpp> #include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XController.hpp> @@ -275,6 +199,7 @@ #include <com/sun/star/frame/XFrameLoader.hpp> #include <com/sun/star/frame/XFrames.hpp> #include <com/sun/star/frame/XFramesSupplier.hpp> +#include <com/sun/star/frame/XGlobalEventBroadcaster.hpp> #include <com/sun/star/frame/XLayoutManager.hpp> #include <com/sun/star/frame/XLayoutManagerEventBroadcaster.hpp> #include <com/sun/star/frame/XLoadEventListener.hpp> @@ -288,6 +213,7 @@ #include <com/sun/star/frame/XStorable.hpp> #include <com/sun/star/frame/XStorable2.hpp> #include <com/sun/star/frame/XSubToolbarController.hpp> +#include <com/sun/star/frame/XSynchronousFrameLoader.hpp> #include <com/sun/star/frame/XTerminateListener.hpp> #include <com/sun/star/frame/XTitle.hpp> #include <com/sun/star/frame/XToolbarController.hpp> @@ -297,6 +223,9 @@ #include <com/sun/star/frame/status/ItemStatus.hpp> #include <com/sun/star/frame/status/Template.hpp> #include <com/sun/star/frame/status/Visibility.hpp> +#include <com/sun/star/frame/theGlobalEventBroadcaster.hpp> +#include <com/sun/star/frame/theToolbarControllerFactory.hpp> +#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/graphic/GraphicProvider.hpp> #include <com/sun/star/graphic/Primitive2DTools.hpp> #include <com/sun/star/graphic/XGraphic.hpp> @@ -305,6 +234,7 @@ #include <com/sun/star/i18n/XBreakIterator.hpp> #include <com/sun/star/io/IOException.hpp> #include <com/sun/star/io/TempFile.hpp> +#include <com/sun/star/io/XActiveDataControl.hpp> #include <com/sun/star/io/XActiveDataSource.hpp> #include <com/sun/star/io/XInputStream.hpp> #include <com/sun/star/io/XOutputStream.hpp> @@ -316,6 +246,7 @@ #include <com/sun/star/lang/DisposedException.hpp> #include <com/sun/star/lang/EventObject.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> +#include <com/sun/star/lang/Locale.hpp> #include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XEventListener.hpp> @@ -336,6 +267,7 @@ #include <com/sun/star/packages/zip/ZipIOException.hpp> #include <com/sun/star/plugin/PluginManager.hpp> #include <com/sun/star/plugin/PluginMode.hpp> +#include <com/sun/star/plugin/XPlugin.hpp> #include <com/sun/star/plugin/XPluginManager.hpp> #include <com/sun/star/rdf/FileFormat.hpp> #include <com/sun/star/rdf/Literal.hpp> @@ -345,7 +277,6 @@ #include <com/sun/star/rdf/URIs.hpp> #include <com/sun/star/registry/InvalidRegistryException.hpp> #include <com/sun/star/registry/MergeConflictException.hpp> -#include <com/sun/star/registry/RegistryValueType.hpp> #include <com/sun/star/registry/XSimpleRegistry.hpp> #include <com/sun/star/rendering/XIntegerReadOnlyBitmap.hpp> #include <com/sun/star/rendering/XSpriteCanvas.hpp> @@ -392,7 +323,6 @@ #include <com/sun/star/task/FutureDocumentVersionProductUpdateRequest.hpp> #include <com/sun/star/task/InteractionClassification.hpp> #include <com/sun/star/task/InteractionHandler.hpp> -#include <com/sun/star/task/theJobExecutor.hpp> #include <com/sun/star/task/StatusIndicatorFactory.hpp> #include <com/sun/star/task/XInteractionAskLater.hpp> #include <com/sun/star/task/XInteractionHandler.hpp> @@ -401,6 +331,7 @@ #include <com/sun/star/task/XJobExecutor.hpp> #include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/task/XStatusIndicatorFactory.hpp> +#include <com/sun/star/task/theJobExecutor.hpp> #include <com/sun/star/text/ModuleDispatcher.hpp> #include <com/sun/star/text/XText.hpp> #include <com/sun/star/text/XTextCursor.hpp> @@ -441,12 +372,8 @@ #include <com/sun/star/ui/ContextChangeEventObject.hpp> #include <com/sun/star/ui/GlobalAcceleratorConfiguration.hpp> #include <com/sun/star/ui/ImageType.hpp> -#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/UIConfigurationManager.hpp> -#include <com/sun/star/ui/theUIElementFactoryManager.hpp> #include <com/sun/star/ui/UIElementType.hpp> -#include <com/sun/star/ui/theWindowContentFactoryManager.hpp> -#include <com/sun/star/ui/theWindowStateConfiguration.hpp> #include <com/sun/star/ui/XDockingAreaAcceptor.hpp> #include <com/sun/star/ui/XImageManager.hpp> #include <com/sun/star/ui/XToolPanel.hpp> @@ -475,6 +402,10 @@ #include <com/sun/star/ui/dialogs/XFilePreview.hpp> #include <com/sun/star/ui/dialogs/XFilterGroupManager.hpp> #include <com/sun/star/ui/dialogs/XFilterManager.hpp> +#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> +#include <com/sun/star/ui/theUIElementFactoryManager.hpp> +#include <com/sun/star/ui/theWindowContentFactoryManager.hpp> +#include <com/sun/star/ui/theWindowStateConfiguration.hpp> #include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Exception.hpp> @@ -483,7 +414,9 @@ #include <com/sun/star/uno/RuntimeException.hpp> #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.hxx> +#include <com/sun/star/uno/Type.hxx> #include <com/sun/star/uno/XComponentContext.hpp> +#include <com/sun/star/uno/XInterface.hpp> #include <com/sun/star/uri/UriReferenceFactory.hpp> #include <com/sun/star/uri/XUriReference.hpp> #include <com/sun/star/uri/XVndSunStarPkgUrlReferenceFactory.hpp> @@ -494,8 +427,10 @@ #include <com/sun/star/util/DateTimeWithTimezone.hpp> #include <com/sun/star/util/DateWithTimezone.hpp> #include <com/sun/star/util/Duration.hpp> +#include <com/sun/star/util/Time.hpp> #include <com/sun/star/util/URL.hpp> #include <com/sun/star/util/URLTransformer.hpp> +#include <com/sun/star/util/XChangesBatch.hpp> #include <com/sun/star/util/XCloneable.hpp> #include <com/sun/star/util/XCloseBroadcaster.hpp> #include <com/sun/star/util/XCloseListener.hpp> @@ -509,18 +444,27 @@ #include <com/sun/star/util/XURLTransformer.hpp> #include <com/sun/star/util/theMacroExpander.hpp> #include <com/sun/star/util/theOfficeInstallationDirectories.hpp> +#include <com/sun/star/util/thePathSettings.hpp> #include <com/sun/star/view/DuplexMode.hpp> #include <com/sun/star/view/PaperFormat.hpp> #include <com/sun/star/view/PaperOrientation.hpp> #include <com/sun/star/view/XPrintJob.hpp> #include <com/sun/star/view/XPrintJobListener.hpp> +#include <com/sun/star/view/XRenderable.hpp> #include <com/sun/star/view/XSelectionSupplier.hpp> #include <com/sun/star/view/XViewSettingsSupplier.hpp> #include <com/sun/star/xml/crypto/CipherID.hpp> #include <com/sun/star/xml/crypto/DigestID.hpp> +#include <com/sun/star/xml/dom/DocumentBuilder.hpp> +#include <com/sun/star/xml/dom/NodeType.hpp> +#include <com/sun/star/xml/dom/XDocument.hpp> +#include <com/sun/star/xml/dom/XElement.hpp> +#include <com/sun/star/xml/dom/XSAXDocumentBuilder.hpp> #include <com/sun/star/xml/sax/Parser.hpp> #include <com/sun/star/xml/sax/Writer.hpp> #include <com/sun/star/xml/sax/XDocumentHandler.hpp> +#include <com/sun/star/xml/sax/XSAXSerializable.hpp> +#include <com/sun/star/xml/xpath/XPathAPI.hpp> #include <comphelper/anytostring.hxx> #include <comphelper/attributelist.hxx> #include <comphelper/classids.hxx> @@ -550,13 +494,16 @@ #include <comphelper/types.hxx> #include <config_features.h> #include <config_folders.h> +#include <config_options.h> #include <cppuhelper/basemutex.hxx> #include <cppuhelper/compbase1.hxx> +#include <cppuhelper/compbase6.hxx> #include <cppuhelper/exc_hlp.hxx> -#include <cppuhelper/factory.hxx> #include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase5.hxx> +#include <cppuhelper/implbase6.hxx> #include <cppuhelper/interfacecontainer.h> #include <cppuhelper/interfacecontainer.hxx> #include <cppuhelper/supportsservice.hxx> @@ -591,6 +538,7 @@ #include <framework/undomanagerhelper.hxx> #include <functional> #include <i18nlangtag/languagetag.hxx> +#include <i18nutil/paper.hxx> #include <iomanip> #include <libxml/tree.h> #include <limits.h> @@ -604,6 +552,7 @@ #include <officecfg/Office/ProtocolHandler.hxx> #include <officecfg/Setup.hxx> #include <org/freedesktop/PackageKit/SyncDbusSessionHelper.hpp> +#include <osl/diagnose.h> #include <osl/file.hxx> #include <osl/module.hxx> #include <osl/mutex.hxx> @@ -627,9 +576,11 @@ #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> #include <rtl/ustring.hxx> +#include <sal/config.h> #include <sal/log.hxx> #include <sal/macros.h> #include <sal/types.h> +#include <sax/tools/converter.hxx> #include <set> #include <sot/exchange.hxx> #include <sot/factory.hxx> @@ -658,6 +609,7 @@ #include <svl/isethint.hxx> #include <svl/itemiter.hxx> #include <svl/itempool.hxx> +#include <svl/itemprop.hxx> #include <svl/itemset.hxx> #include <svl/lckbitem.hxx> #include <svl/lngmisc.hxx> @@ -708,6 +660,7 @@ #include <svtools/menuoptions.hxx> #include <svtools/miscopt.hxx> #include <svtools/openfiledroptargetlistener.hxx> +#include <svtools/optionsdrawinglayer.hxx> #include <svtools/printoptions.hxx> #include <svtools/prnsetup.hxx> #include <svtools/restartdialog.hxx> @@ -722,8 +675,10 @@ #include <svtools/toolpanel/tablayouter.hxx> #include <svtools/toolpanel/toolpaneldeck.hxx> #include <svtools/transfer.hxx> +#include <svtools/treelistentry.hxx> #include <svtools/xwindowitem.hxx> #include <time.h> +#include <toolkit/awt/vclxdevice.hxx> #include <toolkit/awt/vclxmenu.hxx> #include <toolkit/awt/vclxwindow.hxx> #include <toolkit/helper/convert.hxx> @@ -819,11 +774,11 @@ #include <vcl/menu.hxx> #include <vcl/metric.hxx> #include <vcl/mnemonic.hxx> -#include <vcl/morebtn.hxx> #include <vcl/msgbox.hxx> #include <vcl/oldprintadaptor.hxx> #include <vcl/outdev.hxx> #include <vcl/pngread.hxx> +#include <vcl/pngwrite.hxx> #include <vcl/pointr.hxx> #include <vcl/salctype.hxx> #include <vcl/scrbar.hxx> diff --git a/slideshow/inc/pch/precompiled_slideshow.hxx b/slideshow/inc/pch/precompiled_slideshow.hxx index d755e3ddc4ec..8df8bc72d026 100644 --- a/slideshow/inc/pch/precompiled_slideshow.hxx +++ b/slideshow/inc/pch/precompiled_slideshow.hxx @@ -18,7 +18,6 @@ #include "com/sun/star/uno/Reference.hxx" #include "rtl/ref.hxx" #include <algorithm> -#include <animations/animationnodehelper.hxx> #include <avmedia/mediawindow.hxx> #include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx> @@ -135,6 +134,7 @@ #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceName.hpp> +#include <com/sun/star/lang/XTypeProvider.hpp> #include <com/sun/star/loader/CannotActivateFactoryException.hpp> #include <com/sun/star/media/XManager.hpp> #include <com/sun/star/media/XPlayer.hpp> @@ -148,6 +148,7 @@ #include <com/sun/star/presentation/XSlideShow.hpp> #include <com/sun/star/presentation/XSlideShowListener.hpp> #include <com/sun/star/presentation/XSlideShowView.hpp> +#include <com/sun/star/registry/XRegistryKey.hpp> #include <com/sun/star/rendering/IntegerBitmapLayout.hpp> #include <com/sun/star/rendering/PanoseLetterForm.hpp> #include <com/sun/star/rendering/XBitmap.hpp> @@ -193,7 +194,6 @@ #include <osl/diagnose.h> #include <osl/diagnose.hxx> #include <queue> -#include <rtl/instance.hxx> #include <rtl/math.hxx> #include <rtl/ref.hxx> #include <rtl/ustrbuf.hxx> @@ -217,6 +217,7 @@ #include <vcl/graph.hxx> #include <vcl/metaact.hxx> #include <vcl/metric.hxx> +#include <vcl/settings.hxx> #include <vcl/svapp.hxx> #include <vcl/syschild.hxx> #include <vcl/virdev.hxx> diff --git a/starmath/inc/pch/precompiled_sm.hxx b/starmath/inc/pch/precompiled_sm.hxx index 0924f77d873a..14c59bbda29b 100644 --- a/starmath/inc/pch/precompiled_sm.hxx +++ b/starmath/inc/pch/precompiled_sm.hxx @@ -69,6 +69,8 @@ #include <comphelper/servicehelper.hxx> #include <comphelper/storagehelper.hxx> #include <comphelper/string.hxx> +#include <config_options.h> +#include <cppuhelper/supportsservice.hxx> #include <editeng/editdata.hxx> #include <editeng/editeng.hxx> #include <editeng/editobj.hxx> diff --git a/svtools/inc/pch/precompiled_svt.hxx b/svtools/inc/pch/precompiled_svt.hxx index d5177e45a9a0..53d3240b6833 100644 --- a/svtools/inc/pch/precompiled_svt.hxx +++ b/svtools/inc/pch/precompiled_svt.hxx @@ -16,7 +16,6 @@ #include "com/sun/star/beans/XPropertySet.hpp" #include "com/sun/star/document/XDocumentProperties.hpp" -#include "com/sun/star/lang/XMultiComponentFactory.hpp" #include "com/sun/star/script/Converter.hpp" #include "com/sun/star/script/XTypeConverter.hpp" #include "com/sun/star/task/OfficeRestartManager.hpp" @@ -26,9 +25,7 @@ #include "com/sun/star/uno/Type.hxx" #include "com/sun/star/uno/XComponentContext.hpp" #include "comphelper/processfactory.hxx" -#include "comphelper/servicedecl.hxx" #include "comphelper/string.hxx" -#include "cppuhelper/implementationentry.hxx" #include "osl/diagnose.h" #include "rtl/ustring.hxx" #include "sal/config.h" @@ -59,6 +56,7 @@ #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> #include <basegfx/range/b2drange.hxx> +#include <boost/noncopyable.hpp> #include <boost/optional.hpp> #include <boost/ptr_container/ptr_set.hpp> #include <boost/ptr_container/ptr_vector.hpp> @@ -70,11 +68,13 @@ #include <cassert> #include <com/sun/star/accessibility/AccessibleEventId.hpp> #include <com/sun/star/accessibility/AccessibleEventObject.hpp> +#include <com/sun/star/accessibility/AccessibleRelationType.hpp> #include <com/sun/star/accessibility/AccessibleRole.hpp> #include <com/sun/star/accessibility/AccessibleStateType.hpp> #include <com/sun/star/accessibility/AccessibleTableModelChange.hpp> #include <com/sun/star/accessibility/AccessibleTableModelChangeType.hpp> #include <com/sun/star/accessibility/XAccessible.hpp> +#include <com/sun/star/accessibility/XAccessibleContext.hpp> #include <com/sun/star/awt/FontDescriptor.hpp> #include <com/sun/star/awt/KeyModifier.hpp> #include <com/sun/star/awt/LineEndFormat.hpp> @@ -85,7 +85,9 @@ #include <com/sun/star/awt/XControl.hpp> #include <com/sun/star/awt/XDevice.hpp> #include <com/sun/star/awt/XTopWindow.hpp> +#include <com/sun/star/awt/XVclWindowPeer.hpp> #include <com/sun/star/awt/XWindow.hpp> +#include <com/sun/star/awt/XWindowPeer.hpp> #include <com/sun/star/awt/grid/GridInvalidDataException.hpp> #include <com/sun/star/awt/grid/GridInvalidModelException.hpp> #include <com/sun/star/awt/grid/XGridColumn.hpp> @@ -95,6 +97,7 @@ #include <com/sun/star/beans/NamedValue.hpp> #include <com/sun/star/beans/Property.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp> +#include <com/sun/star/beans/PropertyChangeEvent.hpp> #include <com/sun/star/beans/PropertyState.hpp> #include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/beans/PropertyValues.hpp> @@ -102,7 +105,13 @@ #include <com/sun/star/beans/XPropertyAccess.hpp> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertySetInfo.hpp> +#include <com/sun/star/chart2/XChartDocument.hpp> +#include <com/sun/star/chart2/XChartType.hpp> +#include <com/sun/star/chart2/XChartTypeContainer.hpp> +#include <com/sun/star/chart2/XCoordinateSystem.hpp> +#include <com/sun/star/chart2/XCoordinateSystemContainer.hpp> #include <com/sun/star/chart2/XDefaultSizeTransmitter.hpp> +#include <com/sun/star/chart2/XDiagram.hpp> #include <com/sun/star/configuration/theDefaultProvider.hpp> #include <com/sun/star/container/XChild.hpp> #include <com/sun/star/container/XIndexAccess.hpp> @@ -120,6 +129,7 @@ #include <com/sun/star/document/DocumentProperties.hpp> #include <com/sun/star/document/XDocumentProperties.hpp> #include <com/sun/star/document/XEventsSupplier.hpp> +#include <com/sun/star/document/XExporter.hpp> #include <com/sun/star/document/XTypeDetection.hpp> #include <com/sun/star/document/XViewDataSupplier.hpp> #include <com/sun/star/drawing/GraphicExportFilter.hpp> @@ -132,6 +142,8 @@ #include <com/sun/star/embed/XComponentSupplier.hpp> #include <com/sun/star/embed/XEmbedPersist.hpp> #include <com/sun/star/embed/XEmbeddedObject.hpp> +#include <com/sun/star/embed/XHatchWindowController.hpp> +#include <com/sun/star/embed/XHatchWindowFactory.hpp> #include <com/sun/star/embed/XStateChangeListener.hpp> #include <com/sun/star/embed/XVisualObject.hpp> #include <com/sun/star/form/binding/XBindableValue.hpp> @@ -142,17 +154,18 @@ #include <com/sun/star/frame/DocumentTemplates.hpp> #include <com/sun/star/frame/Frame.hpp> #include <com/sun/star/frame/ModuleManager.hpp> -#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XController.hpp> #include <com/sun/star/frame/XDispatch.hpp> #include <com/sun/star/frame/XDispatchProvider.hpp> #include <com/sun/star/frame/XDocumentTemplates.hpp> +#include <com/sun/star/frame/XFrame.hpp> #include <com/sun/star/frame/XLayoutManager.hpp> #include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/frame/XStatusListener.hpp> #include <com/sun/star/frame/status/ItemState.hpp> #include <com/sun/star/frame/status/ItemStatus.hpp> +#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/geometry/AffineMatrix2D.hpp> #include <com/sun/star/graphic/GraphicProvider.hpp> #include <com/sun/star/graphic/GraphicType.hpp> @@ -176,11 +189,11 @@ #include <com/sun/star/lang/Locale.hpp> #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XInitialization.hpp> +#include <com/sun/star/lang/XMultiComponentFactory.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp> -#include <com/sun/star/registry/XRegistryKey.hpp> #include <com/sun/star/script/XTypeConverter.hpp> #include <com/sun/star/sdb/CommandType.hpp> #include <com/sun/star/sdb/DatabaseContext.hpp> @@ -197,6 +210,7 @@ #include <com/sun/star/sheet/XCellRangeReferrer.hpp> #include <com/sun/star/system/SystemShellExecute.hpp> #include <com/sun/star/system/SystemShellExecuteFlags.hpp> +#include <com/sun/star/table/BorderLineStyle.hpp> #include <com/sun/star/table/CellAddress.hpp> #include <com/sun/star/table/CellRangeAddress.hpp> #include <com/sun/star/task/InteractionHandler.hpp> @@ -221,16 +235,18 @@ #include <com/sun/star/ucb/XSortedDynamicResultSetFactory.hpp> #include <com/sun/star/ui/GlobalAcceleratorConfiguration.hpp> #include <com/sun/star/ui/ImageType.hpp> -#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XUIConfigurationManager.hpp> #include <com/sun/star/ui/XUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/dialogs/AddressBookSourcePilot.hpp> +#include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp> #include <com/sun/star/ui/dialogs/FilePicker.hpp> #include <com/sun/star/ui/dialogs/TemplateDescription.hpp> #include <com/sun/star/ui/dialogs/WizardButton.hpp> #include <com/sun/star/ui/dialogs/WizardTravelType.hpp> #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp> +#include <com/sun/star/ui/dialogs/XWizard.hpp> #include <com/sun/star/ui/dialogs/XWizardController.hpp> +#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Reference.hxx> @@ -250,6 +266,8 @@ #include <com/sun/star/util/Time.hpp> #include <com/sun/star/util/URL.hpp> #include <com/sun/star/util/URLTransformer.hpp> +#include <com/sun/star/util/XCloseBroadcaster.hpp> +#include <com/sun/star/util/XCloseable.hpp> #include <com/sun/star/util/XModifiable.hpp> #include <com/sun/star/util/XModifyListener.hpp> #include <com/sun/star/util/XNumberFormatTypes.hpp> @@ -259,6 +277,7 @@ #include <com/sun/star/view/SelectionType.hpp> #include <com/sun/star/view/XPrintable.hpp> #include <com/sun/star/view/XSelectionSupplier.hpp> +#include <comphelper/accessibleeventnotifier.hxx> #include <comphelper/accimplaccess.hxx> #include <comphelper/classids.hxx> #include <comphelper/configurationhelper.hxx> @@ -272,24 +291,27 @@ #include <comphelper/propertysetinfo.hxx> #include <comphelper/seqstream.hxx> #include <comphelper/sequence.hxx> -#include <comphelper/servicedecl.hxx> #include <comphelper/servicehelper.hxx> -#include <comphelper/stl_types.hxx> #include <comphelper/storagehelper.hxx> #include <comphelper/string.hxx> #include <comphelper/types.hxx> #include <config_folders.h> +#include <config_oauth2.h> #include <cppuhelper/factory.hxx> #include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase2.hxx> #include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase4.hxx> +#include <cppuhelper/implbase5.hxx> +#include <cppuhelper/implementationentry.hxx> +#include <cppuhelper/interfacecontainer.h> #include <cppuhelper/supportsservice.hxx> #include <cppuhelper/typeprovider.hxx> #include <cppuhelper/weak.hxx> #include <cppuhelper/weakagg.hxx> #include <cppuhelper/weakref.hxx> #include <cstdio> +#include <cstdlib> #include <ctype.h> #include <functional> #include <i18nlangtag/lang.h> @@ -313,6 +335,7 @@ #include <osl/module.hxx> #include <osl/mutex.hxx> #include <osl/thread.h> +#include <osl/thread.hxx> #include <rtl/bootstrap.hxx> #include <rtl/crc.h> #include <rtl/instance.hxx> @@ -325,6 +348,8 @@ #include <rtl/uri.hxx> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> +#include <rtl/uuid.h> +#include <sal/config.h> #include <sal/macros.h> #include <sal/types.h> #include <salhelper/simplereferenceobject.hxx> @@ -336,12 +361,14 @@ #include <sot/formats.hxx> #include <sot/stg.hxx> #include <sot/storage.hxx> +#include <sstream> #include <stack> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <svl/eitem.hxx> +#include <svl/filenotation.hxx> #include <svl/inettype.hxx> #include <svl/itempool.hxx> #include <svl/itemprop.hxx> @@ -355,9 +382,12 @@ #include <svl/zforlist.hxx> #include <svl/zformat.hxx> #include <toolkit/awt/vclxaccessiblecomponent.hxx> +#include <toolkit/awt/vclxfont.hxx> #include <toolkit/awt/vclxmenu.hxx> #include <toolkit/awt/vclxwindow.hxx> +#include <toolkit/awt/vclxwindows.hxx> #include <toolkit/helper/convert.hxx> +#include <toolkit/helper/externallock.hxx> #include <toolkit/helper/property.hxx> #include <toolkit/helper/vclunohelper.hxx> #include <tools/color.hxx> @@ -367,6 +397,7 @@ #include <tools/debug.hxx> #include <tools/diagnose_ex.h> #include <tools/errcode.hxx> +#include <tools/fldunit.hxx> #include <tools/gen.hxx> #include <tools/globname.hxx> #include <tools/helpers.hxx> @@ -388,11 +419,13 @@ #include <ucbhelper/commandenvironment.hxx> #include <ucbhelper/content.hxx> #include <uno/mapping.hxx> +#include <unotools/accessiblerelationsethelper.hxx> #include <unotools/accessiblestatesethelper.hxx> #include <unotools/calendarwrapper.hxx> #include <unotools/charclass.hxx> #include <unotools/configitem.hxx> #include <unotools/configmgr.hxx> +#include <unotools/confignode.hxx> #include <unotools/configpaths.hxx> #include <unotools/dynamicmenuoptions.hxx> #include <unotools/extendedsecurityoptions.hxx> @@ -421,6 +454,7 @@ #include <vcl/cursor.hxx> #include <vcl/cvtgrf.hxx> #include <vcl/decoview.hxx> +#include <vcl/dialog.hxx> #include <vcl/dibtools.hxx> #include <vcl/dockwin.hxx> #include <vcl/edit.hxx> @@ -440,6 +474,7 @@ #include <vcl/i18nhelp.hxx> #include <vcl/image.hxx> #include <vcl/imagerepository.hxx> +#include <vcl/layout.hxx> #include <vcl/lazydelete.hxx> #include <vcl/lineinfo.hxx> #include <vcl/mapmod.hxx> @@ -467,6 +502,7 @@ #include <vcl/svapp.hxx> #include <vcl/tabpage.hxx> #include <vcl/taskpanelist.hxx> +#include <vcl/texteng.hxx> #include <vcl/textview.hxx> #include <vcl/timer.hxx> #include <vcl/toolbox.hxx> diff --git a/svx/inc/pch/precompiled_svx.hxx b/svx/inc/pch/precompiled_svx.hxx index 647b55fff5a5..a2390421e7fe 100644 --- a/svx/inc/pch/precompiled_svx.hxx +++ b/svx/inc/pch/precompiled_svx.hxx @@ -31,7 +31,6 @@ #include "com/sun/star/uno/RuntimeException.hpp" #include "com/sun/star/uno/Sequence.hxx" #include "comphelper/processfactory.hxx" -#include "cppuhelper/factory.hxx" #include "editeng/AccessibleEditableTextPara.hxx" #include "editeng/AccessibleParaManager.hxx" #include "editeng/editdata.hxx" @@ -45,18 +44,13 @@ #include "editeng/unolingu.hxx" #include "editeng/unopracc.hxx" #include "editeng/xmlcnitm.hxx" -#include "osl/diagnose.h" #include "rtl/ustrbuf.hxx" #include "rtl/ustring.h" #include "rtl/ustring.hxx" #include "sal/config.h" -#include "sal/types.h" -#include "sfx2/imagemgr.hxx" -#include "sfx2/module.hxx" #include "sfx2/sidebar/CommandInfoProvider.hxx" #include "svtools/treelistentry.hxx" #include "svtools/viewdataentry.hxx" -#include "uno/lbnames.h" #include "vcl/builder.hxx" #include "vcl/svapp.hxx" #include <algorithm> @@ -69,8 +63,10 @@ #include <basegfx/tools/zoomtools.hxx> #include <basic/sbxvar.hxx> #include <boost/bind.hpp> +#include <boost/noncopyable.hpp> #include <boost/scoped_ptr.hpp> #include <boost/shared_ptr.hpp> +#include <cassert> #include <climits> #include <cmath> #include <com/sun/star/accessibility/AccessibleEventId.hpp> @@ -78,10 +74,13 @@ #include <com/sun/star/accessibility/AccessibleRelationType.hpp> #include <com/sun/star/accessibility/AccessibleRole.hpp> #include <com/sun/star/accessibility/AccessibleStateType.hpp> +#include <com/sun/star/accessibility/AccessibleTextType.hpp> #include <com/sun/star/accessibility/XAccessible.hpp> #include <com/sun/star/accessibility/XAccessibleComponent.hpp> #include <com/sun/star/accessibility/XAccessibleContext.hpp> +#include <com/sun/star/accessibility/XAccessibleGetAccFlowTo.hpp> #include <com/sun/star/awt/FocusChangeReason.hpp> +#include <com/sun/star/awt/FontDescriptor.hpp> #include <com/sun/star/awt/Key.hpp> #include <com/sun/star/awt/KeyEvent.hpp> #include <com/sun/star/awt/KeyModifier.hpp> @@ -112,13 +111,14 @@ #include <com/sun/star/drawing/Direction3D.hpp> #include <com/sun/star/drawing/EnhancedCustomShapeParameterPair.hpp> #include <com/sun/star/drawing/FillStyle.hpp> +#include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp> #include <com/sun/star/drawing/Position3D.hpp> #include <com/sun/star/drawing/ShadeMode.hpp> #include <com/sun/star/drawing/XControlShape.hpp> +#include <com/sun/star/drawing/XCustomShapeEngine.hpp> #include <com/sun/star/drawing/XShapeDescriptor.hpp> #include <com/sun/star/drawing/XShapes.hpp> #include <com/sun/star/form/FormComponentType.hpp> -#include <com/sun/star/frame/theAutoRecovery.hpp> #include <com/sun/star/frame/Desktop.hpp> #include <com/sun/star/frame/ModuleManager.hpp> #include <com/sun/star/frame/XController.hpp> @@ -127,9 +127,11 @@ #include <com/sun/star/frame/XFramesSupplier.hpp> #include <com/sun/star/frame/XLayoutManager.hpp> #include <com/sun/star/frame/XStatusListener.hpp> +#include <com/sun/star/frame/XSynchronousDispatch.hpp> #include <com/sun/star/frame/status/FontHeight.hpp> #include <com/sun/star/frame/status/LeftRightMargin.hpp> #include <com/sun/star/frame/status/UpperLowerMargin.hpp> +#include <com/sun/star/frame/theAutoRecovery.hpp> #include <com/sun/star/gallery/GalleryItemType.hpp> #include <com/sun/star/gallery/XGalleryTheme.hpp> #include <com/sun/star/i18n/BreakIterator.hpp> @@ -152,7 +154,6 @@ #include <com/sun/star/plugin/PluginManager.hpp> #include <com/sun/star/plugin/XPluginManager.hpp> #include <com/sun/star/reflection/ProxyFactory.hpp> -#include <com/sun/star/registry/XRegistryKey.hpp> #include <com/sun/star/smarttags/SmartTagRecognizerMode.hpp> #include <com/sun/star/smarttags/XRangeBasedSmartTagRecognizer.hpp> #include <com/sun/star/smarttags/XSmartTagAction.hpp> @@ -194,6 +195,7 @@ #include <com/sun/star/ui/XContextChangeEventMultiplexer.hpp> #include <com/sun/star/ui/XSidebar.hpp> #include <com/sun/star/ui/XUIElement.hpp> +#include <com/sun/star/ui/XUIElementFactory.hpp> #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp> #include <com/sun/star/ui/dialogs/FolderPicker.hpp> #include <com/sun/star/ui/dialogs/TemplateDescription.hpp> @@ -201,8 +203,10 @@ #include <com/sun/star/uno/Exception.hpp> #include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/RuntimeException.hpp> #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.hxx> +#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/util/SortField.hpp> #include <com/sun/star/util/SortFieldType.hpp> #include <com/sun/star/util/URL.hpp> @@ -218,10 +222,10 @@ #include <comphelper/accessiblewrapper.hxx> #include <comphelper/namedvaluecollection.hxx> #include <comphelper/processfactory.hxx> +#include <comphelper/property.hxx> #include <comphelper/propertysetinfo.hxx> #include <comphelper/sequenceashashmap.hxx> #include <comphelper/servicehelper.hxx> -#include <comphelper/stl_types.hxx> #include <comphelper/string.hxx> #include <comphelper/types.hxx> #include <comphelper/uno3.hxx> @@ -231,8 +235,10 @@ #include <cppuhelper/compbase6.hxx> #include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase7.hxx> #include <cppuhelper/interfacecontainer.h> +#include <cppuhelper/interfacecontainer.hxx> #include <cppuhelper/supportsservice.hxx> #include <cppuhelper/typeprovider.hxx> #include <cppuhelper/weakref.hxx> @@ -283,6 +289,7 @@ #include <framework/imageproducer.hxx> #include <framework/sfxhelperfunctions.hxx> #include <i18nlangtag/mslangid.hxx> +#include <i18nutil/unicode.hxx> #include <limits.h> #include <limits> #include <list> @@ -307,6 +314,8 @@ #include <rtl/textenc.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> +#include <rtl/uuid.h> +#include <sal/config.h> #include <sal/macros.h> #include <sal/types.h> #include <set> @@ -332,7 +341,6 @@ #include <sfx2/sidebar/ControllerFactory.hxx> #include <sfx2/sidebar/EnumContext.hxx> #include <sfx2/sidebar/SidebarPanelBase.hxx> -#include <sfx2/sidebar/SidebarToolBox.hxx> #include <sfx2/sidebar/Theme.hxx> #include <sfx2/sidebar/Tools.hxx> #include <sfx2/signaturestate.hxx> @@ -392,8 +400,10 @@ #include <svtools/stdmenu.hxx> #include <svtools/svlbitm.hxx> #include <svtools/toolbarmenu.hxx> +#include <svtools/toolboxcontroller.hxx> #include <svtools/unitconv.hxx> #include <svtools/valueset.hxx> +#include <toolkit/awt/vclxwindow.hxx> #include <toolkit/helper/convert.hxx> #include <toolkit/helper/externallock.hxx> #include <toolkit/helper/vclunohelper.hxx> @@ -403,6 +413,7 @@ #include <tools/errinf.hxx> #include <tools/gen.hxx> #include <tools/helpers.hxx> +#include <tools/mapunit.hxx> #include <tools/poly.hxx> #include <tools/rc.hxx> #include <tools/rcid.h> @@ -416,7 +427,6 @@ #include <unotools/accessiblerelationsethelper.hxx> #include <unotools/accessiblestatesethelper.hxx> #include <unotools/charclass.hxx> -#include <unotools/fontoptions.hxx> #include <unotools/localedatawrapper.hxx> #include <unotools/localfilehelper.hxx> #include <unotools/moduleoptions.hxx> @@ -458,6 +468,7 @@ #include <vcl/settings.hxx> #include <vcl/status.hxx> #include <vcl/svapp.hxx> +#include <vcl/textdata.hxx> #include <vcl/timer.hxx> #include <vcl/toolbox.hxx> #include <vcl/unohelp.hxx> diff --git a/svx/inc/pch/precompiled_svxcore.hxx b/svx/inc/pch/precompiled_svxcore.hxx index 8e6bd2053819..636e2c93283a 100644 --- a/svx/inc/pch/precompiled_svxcore.hxx +++ b/svx/inc/pch/precompiled_svxcore.hxx @@ -38,7 +38,6 @@ #include "osl/diagnose.h" #include "sal/config.h" #include "sal/types.h" -#include "uno/lbnames.h" #include "xmloff/DashStyle.hxx" #include "xmloff/GradientStyle.hxx" #include "xmloff/HatchStyle.hxx" @@ -84,6 +83,7 @@ #include <basegfx/vector/b3dvector.hxx> #include <basic/sbxvar.hxx> #include <boost/bind.hpp> +#include <boost/noncopyable.hpp> #include <boost/ptr_container/ptr_vector.hpp> #include <boost/scoped_ptr.hpp> #include <boost/shared_ptr.hpp> @@ -206,6 +206,7 @@ #include <com/sun/star/graphic/XGraphic.hpp> #include <com/sun/star/graphic/XGraphicProvider.hpp> #include <com/sun/star/graphic/XGraphicRenderer.hpp> +#include <com/sun/star/graphic/XPrimitiveFactory2D.hpp> #include <com/sun/star/i18n/BreakIterator.hpp> #include <com/sun/star/i18n/CharacterIteratorMode.hpp> #include <com/sun/star/i18n/ScriptType.hpp> @@ -251,6 +252,7 @@ #include <com/sun/star/task/XInteractionHandler.hpp> #include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/text/GraphicCrop.hpp> +#include <com/sun/star/text/RelOrientation.hpp> #include <com/sun/star/text/WritingMode.hpp> #include <com/sun/star/text/textfield/Type.hpp> #include <com/sun/star/ucb/NameClash.hpp> @@ -263,6 +265,7 @@ #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.hxx> +#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XInterface.hpp> #include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/MeasureUnit.hpp> @@ -289,7 +292,6 @@ #include <comphelper/sequence.hxx> #include <comphelper/servicehelper.hxx> #include <comphelper/serviceinfohelper.hxx> -#include <comphelper/stl_types.hxx> #include <comphelper/storagehelper.hxx> #include <comphelper/string.hxx> #include <comphelper/types.hxx> @@ -304,6 +306,7 @@ #include <cppuhelper/typeprovider.hxx> #include <cppuhelper/weak.hxx> #include <cstdio> +#include <cstdlib> #include <drawinglayer/animation/animationtiming.hxx> #include <drawinglayer/attribute/fillgradientattribute.hxx> #include <drawinglayer/attribute/fillgraphicattribute.hxx> @@ -346,6 +349,7 @@ #include <drawinglayer/primitive2d/metafileprimitive2d.hxx> #include <drawinglayer/primitive2d/modifiedcolorprimitive2d.hxx> #include <drawinglayer/primitive2d/objectinfoprimitive2d.hxx> +#include <drawinglayer/primitive2d/openglprimitive2d.hxx> #include <drawinglayer/primitive2d/pagepreviewprimitive2d.hxx> #include <drawinglayer/primitive2d/polygonprimitive2d.hxx> #include <drawinglayer/primitive2d/polypolygonprimitive2d.hxx> @@ -388,6 +392,7 @@ #include <editeng/bulletitem.hxx> #include <editeng/charreliefitem.hxx> #include <editeng/charscaleitem.hxx> +#include <editeng/cmapitem.hxx> #include <editeng/colritem.hxx> #include <editeng/contouritem.hxx> #include <editeng/crossedoutitem.hxx> @@ -436,12 +441,12 @@ #include <i18nlangtag/lang.h> #include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/mslangid.hxx> +#include <i18nutil/unicode.hxx> #include <limits> #include <linguistic/misc.hxx> #include <map> #include <math.h> #include <memory> -#include <officecfg/Office/Common.hxx> #include <osl/diagnose.h> #include <osl/endian.h> #include <osl/file.hxx> @@ -556,6 +561,7 @@ #include <tools/globname.hxx> #include <tools/helpers.hxx> #include <tools/line.hxx> +#include <tools/mapunit.hxx> #include <tools/poly.hxx> #include <tools/rcid.h> #include <tools/resmgr.hxx> diff --git a/sw/inc/pch/precompiled_msword.hxx b/sw/inc/pch/precompiled_msword.hxx index aac38b412615..e4174bbcf3cd 100644 --- a/sw/inc/pch/precompiled_msword.hxx +++ b/sw/inc/pch/precompiled_msword.hxx @@ -75,26 +75,26 @@ #include <com/sun/star/lang/XSingleComponentFactory.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/script/vba/XVBACompatibility.hpp> +#include <com/sun/star/text/GraphicCrop.hpp> #include <com/sun/star/text/TextContentAnchorType.hpp> #include <com/sun/star/text/VertOrientation.hpp> #include <com/sun/star/text/XTextRange.hpp> #include <com/sun/star/ucb/SimpleFileAccess.hpp> #include <com/sun/star/ucb/XCommandEnvironment.hpp> #include <com/sun/star/ui/ItemType.hpp> -#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XImageManager.hpp> #include <com/sun/star/ui/XUIConfigurationPersistence.hpp> +#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/uno/Sequence.h> #include <com/sun/star/util/XCloseable.hpp> -#include <com/sun/star/xml/dom/XAttr.hpp> #include <com/sun/star/xml/dom/XDocument.hpp> -#include <com/sun/star/xml/dom/XNamedNodeMap.hpp> -#include <com/sun/star/xml/dom/XNode.hpp> #include <com/sun/star/xml/sax/Writer.hpp> #include <com/sun/star/xml/sax/XSAXSerializable.hpp> #include <comphelper/docpasswordrequest.hxx> +#include <comphelper/embeddedobjectcontainer.hxx> #include <comphelper/extract.hxx> #include <comphelper/processfactory.hxx> +#include <comphelper/seqstream.hxx> #include <comphelper/sequenceashashmap.hxx> #include <comphelper/storagehelper.hxx> #include <comphelper/string.hxx> @@ -102,7 +102,6 @@ #include <cppuhelper/implementationentry.hxx> #include <cstdio> #include <cstring> -#include <filter/msfilter/sprmids.hxx> #include <editeng/adjustitem.hxx> #include <editeng/autokernitem.hxx> #include <editeng/blinkitem.hxx> @@ -162,8 +161,8 @@ #include <filter/msfilter/msdffimp.hxx> #include <filter/msfilter/msoleexp.hxx> #include <filter/msfilter/rtfutil.hxx> +#include <filter/msfilter/sprmids.hxx> #include <filter/msfilter/svxmsbas.hxx> -#include <filter/msfilter/util.hxx> #include <fstream> #include <functional> #include <i18nlangtag/lang.h> @@ -177,12 +176,14 @@ #include <oox/drawingml/drawingmltypes.hxx> #include <oox/export/chartexport.hxx> #include <oox/export/drawingml.hxx> +#include <oox/export/shapes.hxx> #include <oox/export/utils.hxx> #include <oox/export/vmlexport.hxx> #include <oox/mathml/export.hxx> #include <oox/ole/olehelper.hxx> #include <oox/ole/olestorage.hxx> #include <oox/ole/vbaproject.hxx> +#include <oox/token/properties.hxx> #include <oox/token/tokens.hxx> #include <osl/diagnose.h> #include <osl/endian.h> @@ -247,6 +248,7 @@ #include <svx/sxctitm.hxx> #include <svx/unoapi.hxx> #include <svx/unoshape.hxx> +#include <svx/xenum.hxx> #include <svx/xfillit.hxx> #include <svx/xfillit0.hxx> #include <svx/xflclit.hxx> @@ -254,6 +256,7 @@ #include <svx/xfltrit.hxx> #include <svx/xlineit.hxx> #include <toolkit/helper/vclunohelper.hxx> +#include <tools/datetimeutils.hxx> #include <tools/solar.h> #include <tools/stream.hxx> #include <tools/tenccvt.hxx> @@ -280,6 +283,7 @@ #include <vcl/graphicfilter.hxx> #include <vcl/outdev.hxx> #include <vcl/salbtype.hxx> +#include <vcl/settings.hxx> #include <vcl/svapp.hxx> #include <vcl/vclenum.hxx> #include <vcl/virdev.hxx> diff --git a/sw/inc/pch/precompiled_sw.hxx b/sw/inc/pch/precompiled_sw.hxx index a90133efa182..e02c0266dd1d 100644 --- a/sw/inc/pch/precompiled_sw.hxx +++ b/sw/inc/pch/precompiled_sw.hxx @@ -41,6 +41,8 @@ #include <basegfx/numeric/ftools.hxx> #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> +#include <basegfx/polygon/b2dpolypolygon.hxx> +#include <basegfx/polygon/b2dpolypolygoncutter.hxx> #include <basegfx/range/b2drange.hxx> #include <basegfx/range/b2drectangle.hxx> #include <basegfx/tools/zoomtools.hxx> @@ -55,6 +57,7 @@ #include <basic/sbxvar.hxx> #include <boost/bind.hpp> #include <boost/foreach.hpp> +#include <boost/noncopyable.hpp> #include <boost/optional.hpp> #include <boost/ptr_container/ptr_set.hpp> #include <boost/scoped_array.hpp> @@ -62,6 +65,7 @@ #include <boost/shared_ptr.hpp> #include <boost/unordered_map.hpp> #include <boost/unordered_set.hpp> +#include <cassert> #include <cctype> #include <cfloat> #include <climits> @@ -80,9 +84,13 @@ #include <com/sun/star/accessibility/XAccessibleSelection.hpp> #include <com/sun/star/accessibility/XAccessibleStateSet.hpp> #include <com/sun/star/accessibility/XAccessibleText.hpp> +#include <com/sun/star/awt/FontSlant.hpp> +#include <com/sun/star/awt/FontStrikeout.hpp> +#include <com/sun/star/awt/FontWeight.hpp> #include <com/sun/star/awt/Gradient.hpp> #include <com/sun/star/awt/ImageStatus.hpp> #include <com/sun/star/awt/PosSize.hpp> +#include <com/sun/star/awt/Size.hpp> #include <com/sun/star/awt/Toolkit.hpp> #include <com/sun/star/awt/XBitmap.hpp> #include <com/sun/star/awt/XImageConsumer.hpp> @@ -93,6 +101,7 @@ #include <com/sun/star/beans/PropertyAttribute.hpp> #include <com/sun/star/beans/PropertyState.hpp> #include <com/sun/star/beans/PropertyValue.hpp> +#include <com/sun/star/beans/PropertyValues.hpp> #include <com/sun/star/beans/SetPropertyTolerantFailed.hpp> #include <com/sun/star/beans/TolerantPropertySetResultType.hpp> #include <com/sun/star/beans/UnknownPropertyException.hpp> @@ -142,14 +151,21 @@ #include <com/sun/star/document/XEventsSupplier.hpp> #include <com/sun/star/document/XExporter.hpp> #include <com/sun/star/document/XFilter.hpp> +#include <com/sun/star/document/XLinkTargetSupplier.hpp> #include <com/sun/star/document/XStorageBasedDocument.hpp> #include <com/sun/star/document/XUndoManagerSupplier.hpp> +#include <com/sun/star/drawing/BitmapMode.hpp> #include <com/sun/star/drawing/ColorMode.hpp> #include <com/sun/star/drawing/FillStyle.hpp> +#include <com/sun/star/drawing/Hatch.hpp> #include <com/sun/star/drawing/HomogenMatrix3.hpp> +#include <com/sun/star/drawing/LineStyle.hpp> #include <com/sun/star/drawing/ModuleDispatcher.hpp> #include <com/sun/star/drawing/PointSequence.hpp> #include <com/sun/star/drawing/PointSequenceSequence.hpp> +#include <com/sun/star/drawing/RectanglePoint.hpp> +#include <com/sun/star/drawing/ShapeCollection.hpp> +#include <com/sun/star/drawing/TextVerticalAdjust.hpp> #include <com/sun/star/drawing/XControlShape.hpp> #include <com/sun/star/drawing/XDrawPage.hpp> #include <com/sun/star/drawing/XDrawPageSupplier.hpp> @@ -185,9 +201,9 @@ #include <com/sun/star/frame/DispatchHelper.hpp> #include <com/sun/star/frame/DispatchResultState.hpp> #include <com/sun/star/frame/FrameSearchFlag.hpp> -#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XController.hpp> +#include <com/sun/star/frame/XDesktop.hpp> #include <com/sun/star/frame/XDispatch.hpp> #include <com/sun/star/frame/XDispatchProvider.hpp> #include <com/sun/star/frame/XFrame.hpp> @@ -198,7 +214,9 @@ #include <com/sun/star/frame/XModuleManager.hpp> #include <com/sun/star/frame/XStorable.hpp> #include <com/sun/star/frame/XTitle.hpp> +#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/gallery/GalleryItemType.hpp> +#include <com/sun/star/graphic/XGraphic.hpp> #include <com/sun/star/graphic/XGraphicProvider.hpp> #include <com/sun/star/i18n/Boundary.hpp> #include <com/sun/star/i18n/BreakIterator.hpp> @@ -293,11 +311,13 @@ #include <com/sun/star/style/PageStyleLayout.hpp> #include <com/sun/star/style/ParagraphAdjust.hpp> #include <com/sun/star/style/ParagraphStyleCategory.hpp> +#include <com/sun/star/style/TabStop.hpp> #include <com/sun/star/style/VerticalAlignment.hpp> #include <com/sun/star/style/XStyle.hpp> #include <com/sun/star/style/XStyleFamiliesSupplier.hpp> #include <com/sun/star/system/SystemShellExecute.hpp> #include <com/sun/star/system/SystemShellExecuteFlags.hpp> +#include <com/sun/star/table/BorderLine.hpp> #include <com/sun/star/table/BorderLine2.hpp> #include <com/sun/star/table/BorderLineStyle.hpp> #include <com/sun/star/table/CellContentType.hpp> @@ -306,6 +326,7 @@ #include <com/sun/star/table/TableBorder2.hpp> #include <com/sun/star/table/TableBorderDistances.hpp> #include <com/sun/star/table/TableSortField.hpp> +#include <com/sun/star/table/XCell.hpp> #include <com/sun/star/table/XCellRange.hpp> #include <com/sun/star/task/XInteractionHandler.hpp> #include <com/sun/star/task/XStatusIndicatorFactory.hpp> @@ -350,6 +371,7 @@ #include <com/sun/star/text/XDefaultNumberingProvider.hpp> #include <com/sun/star/text/XDependentTextField.hpp> #include <com/sun/star/text/XDocumentIndex.hpp> +#include <com/sun/star/text/XDocumentIndexMark.hpp> #include <com/sun/star/text/XDocumentIndexesSupplier.hpp> #include <com/sun/star/text/XEndnotesSettingsSupplier.hpp> #include <com/sun/star/text/XEndnotesSupplier.hpp> @@ -363,10 +385,12 @@ #include <com/sun/star/text/XNumberingTypeInfo.hpp> #include <com/sun/star/text/XText.hpp> #include <com/sun/star/text/XTextColumns.hpp> +#include <com/sun/star/text/XTextContent.hpp> #include <com/sun/star/text/XTextDocument.hpp> #include <com/sun/star/text/XTextEmbeddedObjectsSupplier.hpp> #include <com/sun/star/text/XTextField.hpp> #include <com/sun/star/text/XTextFieldsSupplier.hpp> +#include <com/sun/star/text/XTextFrame.hpp> #include <com/sun/star/text/XTextFramesSupplier.hpp> #include <com/sun/star/text/XTextGraphicObjectsSupplier.hpp> #include <com/sun/star/text/XTextRange.hpp> @@ -382,6 +406,7 @@ #include <com/sun/star/ucb/UniversalContentBroker.hpp> #include <com/sun/star/ucb/XCommandEnvironment.hpp> #include <com/sun/star/ucb/XContentIdentifier.hpp> +#include <com/sun/star/ui/XUIElementFactory.hpp> #include <com/sun/star/ui/dialogs/CommonFilePickerElementIds.hpp> #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp> #include <com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.hpp> @@ -453,7 +478,6 @@ #include <comphelper/sequenceashashmap.hxx> #include <comphelper/sequenceasvector.hxx> #include <comphelper/servicehelper.hxx> -#include <comphelper/stl_types.hxx> #include <comphelper/storagehelper.hxx> #include <comphelper/string.hxx> #include <comphelper/types.hxx> @@ -461,7 +485,11 @@ #include <config_features.h> #include <config_folders.h> #include <config_graphite.h> +#include <config_libraries.h> +#include <config_options.h> +#include <cppuhelper/basemutex.hxx> #include <cppuhelper/bootstrap.hxx> +#include <cppuhelper/compbase1.hxx> #include <cppuhelper/component_context.hxx> #include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/factory.hxx> @@ -473,18 +501,19 @@ #include <cppuhelper/weak.hxx> #include <cppuhelper/weakref.hxx> #include <cstdarg> -#include <cstdio> #include <cstdlib> #include <ctype.h> #include <deque> #include <drawinglayer/attribute/fillgradientattribute.hxx> +#include <drawinglayer/attribute/fillhatchattribute.hxx> #include <drawinglayer/attribute/fontattribute.hxx> +#include <drawinglayer/attribute/sdrfillgraphicattribute.hxx> #include <drawinglayer/primitive2d/baseprimitive2d.hxx> -#include <drawinglayer/primitive2d/bitmapprimitive2d.hxx> #include <drawinglayer/primitive2d/borderlineprimitive2d.hxx> #include <drawinglayer/primitive2d/discretebitmapprimitive2d.hxx> #include <drawinglayer/primitive2d/discreteshadowprimitive2d.hxx> #include <drawinglayer/primitive2d/fillgradientprimitive2d.hxx> +#include <drawinglayer/primitive2d/graphicprimitive2d.hxx> #include <drawinglayer/primitive2d/modifiedcolorprimitive2d.hxx> #include <drawinglayer/primitive2d/objectinfoprimitive2d.hxx> #include <drawinglayer/primitive2d/polygonprimitive2d.hxx> @@ -495,6 +524,7 @@ #include <drawinglayer/primitive2d/textlayoutdevice.hxx> #include <drawinglayer/primitive2d/textprimitive2d.hxx> #include <drawinglayer/primitive2d/transformprimitive2d.hxx> +#include <drawinglayer/primitive2d/unifiedtransparenceprimitive2d.hxx> #include <drawinglayer/processor2d/baseprocessor2d.hxx> #include <drawinglayer/processor2d/objectinfoextractor2d.hxx> #include <drawinglayer/processor2d/processor2dtools.hxx> @@ -581,7 +611,9 @@ #include <editeng/unoedsrc.hxx> #include <editeng/unofdesc.hxx> #include <editeng/unoforou.hxx> +#include <editeng/unoipset.hxx> #include <editeng/unolingu.hxx> +#include <editeng/unoprnms.hxx> #include <editeng/unoviwou.hxx> #include <editeng/wghtitem.hxx> #include <editeng/widwitem.hxx> @@ -633,6 +665,7 @@ #include <rtl/uri.hxx> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> +#include <sal/config.h> #include <sal/log.hxx> #include <sal/macros.h> #include <sal/types.h> @@ -677,6 +710,7 @@ #include <sfx2/objface.hxx> #include <sfx2/objitem.hxx> #include <sfx2/objsh.hxx> +#include <sfx2/opengrf.hxx> #include <sfx2/passwd.hxx> #include <sfx2/printer.hxx> #include <sfx2/prnmon.hxx> @@ -753,6 +787,7 @@ #include <svl/whiter.hxx> #include <svl/zforlist.hxx> #include <svl/zformat.hxx> +#include <svtools/HtmlWriter.hxx> #include <svtools/accessibilityoptions.hxx> #include <svtools/borderhelper.hxx> #include <svtools/colorcfg.hxx> @@ -790,6 +825,7 @@ #include <svx/ShapeTypeHandler.hxx> #include <svx/SmartTagCtl.hxx> #include <svx/SmartTagItem.hxx> +#include <svx/SvxShapeTypes.hxx> #include <svx/anchorid.hxx> #include <svx/charthelper.hxx> #include <svx/chrtitem.hxx> @@ -869,14 +905,18 @@ #include <svx/sdr/contact/viewobjectcontactredirector.hxx> #include <svx/sdr/overlay/overlaymanager.hxx> #include <svx/sdr/overlay/overlayselection.hxx> +#include <svx/sdr/primitive2d/sdrattributecreator.hxx> +#include <svx/sdr/primitive2d/sdrdecompositiontools.hxx> #include <svx/sdr/properties/defaultproperties.hxx> #include <svx/sdrobjectfilter.hxx> #include <svx/sdrpaintwindow.hxx> #include <svx/sdrundomanager.hxx> +#include <svx/sdsxyitm.hxx> #include <svx/sdtaaitm.hxx> #include <svx/sdtacitm.hxx> #include <svx/sdtaditm.hxx> #include <svx/sdtagitm.hxx> +#include <svx/sdtaitm.hxx> #include <svx/sdtakitm.hxx> #include <svx/selctrl.hxx> #include <svx/shapepropertynotifier.hxx> @@ -932,14 +972,24 @@ #include <svx/verttexttbxctrl.hxx> #include <svx/viewlayoutitem.hxx> #include <svx/xbtmpit.hxx> +#include <svx/xdef.hxx> #include <svx/xexch.hxx> #include <svx/xfillit.hxx> #include <svx/xfillit0.hxx> #include <svx/xflasit.hxx> +#include <svx/xflbckit.hxx> +#include <svx/xflbmpit.hxx> +#include <svx/xflbmsli.hxx> +#include <svx/xflbmsxy.hxx> +#include <svx/xflbmtit.hxx> +#include <svx/xflboxy.hxx> +#include <svx/xflbstit.hxx> +#include <svx/xflbtoxy.hxx> #include <svx/xflclit.hxx> #include <svx/xflftrit.hxx> #include <svx/xflgrit.hxx> #include <svx/xflhtit.hxx> +#include <svx/xfltrit.hxx> #include <svx/xftadit.hxx> #include <svx/xftdiit.hxx> #include <svx/xftmrit.hxx> @@ -949,6 +999,7 @@ #include <svx/xftshxy.hxx> #include <svx/xftstit.hxx> #include <svx/xgrad.hxx> +#include <svx/xgrscit.hxx> #include <svx/xlineit0.hxx> #include <svx/xlinjoit.hxx> #include <svx/xlncapit.hxx> @@ -962,6 +1013,7 @@ #include <svx/xmlgrhlp.hxx> #include <svx/xmlsecctrl.hxx> #include <svx/xoutbmp.hxx> +#include <svx/xsflclit.hxx> #include <svx/xtable.hxx> #include <svx/xtextit0.hxx> #include <svx/zoomsliderctrl.hxx> @@ -974,6 +1026,7 @@ #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> +#include <tools/datetimeutils.hxx> #include <tools/diagnose_ex.h> #include <tools/errinf.hxx> #include <tools/fldunit.hxx> @@ -1000,7 +1053,6 @@ #include <ucbhelper/contentidentifier.hxx> #include <unicode/ubidi.h> #include <unicode/uchar.h> -#include <uno/lbnames.h> #include <unotools/accessiblerelationsethelper.hxx> #include <unotools/accessiblestatesethelper.hxx> #include <unotools/charclass.hxx> @@ -1035,7 +1087,10 @@ #include <vbahelper/vbaaccesshelper.hxx> #include <vcl/GraphicNativeMetadata.hxx> #include <vcl/GraphicNativeTransform.hxx> +#include <vcl/alpha.hxx> #include <vcl/bitmap.hxx> +#include <vcl/bitmapex.hxx> +#include <vcl/bmpacc.hxx> #include <vcl/builder.hxx> #include <vcl/button.hxx> #include <vcl/cmdevt.hxx> @@ -1072,11 +1127,11 @@ #include <vcl/settings.hxx> #include <vcl/status.hxx> #include <vcl/svapp.hxx> +#include <vcl/sysdata.hxx> #include <vcl/textview.hxx> #include <vcl/timer.hxx> #include <vcl/toolbox.hxx> #include <vcl/txtattr.hxx> -#include <vcl/unohelp.hxx> #include <vcl/unohelp2.hxx> #include <vcl/vclenum.hxx> #include <vcl/virdev.hxx> diff --git a/sw/inc/pch/precompiled_vbaswobj.hxx b/sw/inc/pch/precompiled_vbaswobj.hxx index bbddb69c7f62..0a5cb7019a39 100644 --- a/sw/inc/pch/precompiled_vbaswobj.hxx +++ b/sw/inc/pch/precompiled_vbaswobj.hxx @@ -100,12 +100,12 @@ #include <com/sun/star/ucb/SimpleFileAccess.hpp> #include <com/sun/star/uri/XUriReference.hpp> #include <com/sun/star/uri/XUriReferenceFactory.hpp> -#include <com/sun/star/util/thePathSettings.hpp> #include <com/sun/star/util/XCloseable.hpp> #include <com/sun/star/util/XModifiable.hpp> #include <com/sun/star/util/XRefreshable.hpp> #include <com/sun/star/util/XStringSubstitution.hpp> #include <com/sun/star/util/XUpdatable.hpp> +#include <com/sun/star/util/thePathSettings.hpp> #include <com/sun/star/view/XLineCursor.hpp> #include <com/sun/star/view/XSelectionSupplier.hpp> #include <com/sun/star/view/XViewCursor.hpp> @@ -119,7 +119,6 @@ #include <cppuhelper/implbase3.hxx> #include <editeng/acorrcfg.hxx> #include <i18nlangtag/languagetag.hxx> -#include <memory> #include <ooo/vba/XControlProvider.hpp> #include <ooo/vba/office/MsoDocProperties.hpp> #include <ooo/vba/word/WdBookmarkSortBy.hpp> diff --git a/vcl/inc/pch/precompiled_vcl.hxx b/vcl/inc/pch/precompiled_vcl.hxx index dc11721fcab0..b4fce141d8a3 100644 --- a/vcl/inc/pch/precompiled_vcl.hxx +++ b/vcl/inc/pch/precompiled_vcl.hxx @@ -19,10 +19,10 @@ #include "basegfx/polygon/b2dpolygontools.hxx" #include "basegfx/polygon/b2dpolypolygon.hxx" #include "com/sun/star/accessibility/AccessibleRole.hpp" +#include "com/sun/star/accessibility/MSAAService.hpp" #include "com/sun/star/accessibility/XAccessible.hpp" #include "com/sun/star/awt/Size.hpp" #include "com/sun/star/awt/XDisplayConnection.hpp" -#include "com/sun/star/awt/XExtendedToolkit.hpp" #include "com/sun/star/awt/XToolkit.hpp" #include "com/sun/star/awt/XTopWindow.hpp" #include "com/sun/star/awt/XWindow.hpp" @@ -50,10 +50,6 @@ #include "com/sun/star/i18n/XBreakIterator.hpp" #include "com/sun/star/io/XInputStream.hpp" #include "com/sun/star/io/XSeekable.hpp" -#include "com/sun/star/java/JavaDisabledException.hpp" -#include "com/sun/star/java/JavaNotConfiguredException.hpp" -#include "com/sun/star/java/JavaVMCreationFailureException.hpp" -#include "com/sun/star/java/MissingJavaRuntimeException.hpp" #include "com/sun/star/lang/DisposedException.hpp" #include "com/sun/star/lang/Locale.hpp" #include "com/sun/star/lang/XComponent.hpp" @@ -86,6 +82,7 @@ #include "i18nlangtag/languagetag.hxx" #include "i18nlangtag/mslangid.hxx" #include "i18nutil/unicode.hxx" +#include "officecfg/Office/Common.hxx" #include "osl/diagnose.h" #include "osl/file.h" #include "osl/file.hxx" @@ -148,6 +145,7 @@ #include <basegfx/vector/b2isize.hxx> #include <boost/bind.hpp> #include <boost/foreach.hpp> +#include <boost/make_shared.hpp> #include <boost/optional.hpp> #include <boost/ptr_container/ptr_vector.hpp> #include <boost/scoped_array.hpp> @@ -191,12 +189,12 @@ #include <com/sun/star/datatransfer/dnd/XDragSource.hpp> #include <com/sun/star/datatransfer/dnd/XDropTarget.hpp> #include <com/sun/star/frame/ModuleManager.hpp> -#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/frame/XController.hpp> #include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/frame/XModuleManager2.hpp> #include <com/sun/star/frame/XSessionManagerClient.hpp> #include <com/sun/star/frame/XSessionManagerListener2.hpp> +#include <com/sun/star/frame/theUICommandDescription.hpp> #include <com/sun/star/geometry/IntegerPoint2D.hpp> #include <com/sun/star/geometry/IntegerRectangle2D.hpp> #include <com/sun/star/geometry/IntegerSize2D.hpp> @@ -233,6 +231,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XTypeProvider.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp> +#include <com/sun/star/packages/zip/ZipFileAccess.hpp> #include <com/sun/star/rendering/CanvasFactory.hpp> #include <com/sun/star/rendering/ColorComponentTag.hpp> #include <com/sun/star/rendering/ColorSpaceType.hpp> @@ -247,13 +246,14 @@ #include <com/sun/star/rendering/XIntegerReadOnlyBitmap.hpp> #include <com/sun/star/rendering/XPolyPolygon2D.hpp> #include <com/sun/star/svg/XSVGWriter.hpp> +#include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/ucb/CommandAbortedException.hpp> #include <com/sun/star/ui/ImageType.hpp> -#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XImageManager.hpp> #include <com/sun/star/ui/XModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XUIConfigurationManager.hpp> #include <com/sun/star/ui/XUIConfigurationManagerSupplier.hpp> +#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Exception.hpp> @@ -264,12 +264,12 @@ #include <com/sun/star/uno/XInterface.hpp> #include <com/sun/star/uno/XWeak.hpp> #include <com/sun/star/util/Endianness.hpp> -#include <com/sun/star/util/thePathSettings.hpp> #include <com/sun/star/util/SearchFlags.hpp> #include <com/sun/star/util/SearchOptions.hpp> #include <com/sun/star/util/URL.hpp> #include <com/sun/star/util/URLTransformer.hpp> #include <com/sun/star/util/XChangesBatch.hpp> +#include <com/sun/star/util/thePathSettings.hpp> #include <com/sun/star/xml/sax/Writer.hpp> #include <com/sun/star/xml/sax/XDocumentHandler.hpp> #include <comphelper/namedvaluecollection.hxx> @@ -277,16 +277,21 @@ #include <comphelper/scopeguard.hxx> #include <comphelper/seqstream.hxx> #include <comphelper/string.hxx> +#include <config_eot.h> #include <config_features.h> #include <config_folders.h> #include <config_graphite.h> +#include <config_libraries.h> +#include <cppuhelper/basemutex.hxx> #include <cppuhelper/compbase1.hxx> #include <cppuhelper/factory.hxx> #include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase3.hxx> #include <cppuhelper/supportsservice.hxx> +#include <cppuhelper/typeprovider.hxx> #include <cppuhelper/weak.hxx> #include <cstdio> +#include <cstdlib> #include <cstring> #include <ctype.h> #include <fcntl.h> @@ -320,6 +325,7 @@ #include <rsc/rsc-vcl-shared-types.hxx> #include <rtl/alloc.h> #include <rtl/bootstrap.hxx> +#include <rtl/character.hxx> #include <rtl/crc.h> #include <rtl/digest.h> #include <rtl/instance.hxx> @@ -336,11 +342,14 @@ #include <sal/config.h> #include <sal/log.hxx> #include <sal/macros.h> +#include <sal/types.h> #include <set> +#include <setjmp.h> #include <sot/exchange.hxx> #include <sot/factory.hxx> #include <sot/formats.hxx> #include <sot/object.hxx> +#include <stdexcept> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -355,6 +364,7 @@ #include <tools/config.hxx> #include <tools/debug.hxx> #include <tools/diagnose_ex.h> +#include <tools/fontenum.hxx> #include <tools/gen.hxx> #include <tools/helpers.hxx> #include <tools/line.hxx> @@ -385,7 +395,6 @@ #include <unotools/charclass.hxx> #include <unotools/configmgr.hxx> #include <unotools/confignode.hxx> -#include <unotools/fontcfg.hxx> #include <unotools/fontcvt.hxx> #include <unotools/fontdefs.hxx> #include <unotools/localedatawrapper.hxx> diff --git a/writerfilter/inc/pch/precompiled_writerfilter.hxx b/writerfilter/inc/pch/precompiled_writerfilter.hxx index e08d1beb2ec9..2fdd3f920931 100644 --- a/writerfilter/inc/pch/precompiled_writerfilter.hxx +++ b/writerfilter/inc/pch/precompiled_writerfilter.hxx @@ -18,7 +18,9 @@ #include <algorithm> #include <boost/optional.hpp> #include <boost/shared_ptr.hpp> +#include <boost/tuple/tuple.hpp> #include <boost/unordered_map.hpp> +#include <com/sun/star/awt/FontPitch.hpp> #include <com/sun/star/awt/FontRelief.hpp> #include <com/sun/star/awt/FontSlant.hpp> #include <com/sun/star/awt/FontStrikeout.hpp> @@ -104,6 +106,7 @@ #include <com/sun/star/table/XCellRange.hpp> #include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/text/ChapterFormat.hpp> +#include <com/sun/star/text/ControlCharacter.hpp> #include <com/sun/star/text/FilenameDisplayFormat.hpp> #include <com/sun/star/text/FootnoteNumbering.hpp> #include <com/sun/star/text/GraphicCrop.hpp> @@ -148,11 +151,13 @@ #include <com/sun/star/util/XRefreshable.hpp> #include <com/sun/star/view/XFormLayerAccess.hpp> #include <com/sun/star/xml/dom/DocumentBuilder.hpp> +#include <com/sun/star/xml/sax/FastShapeContextHandler.hpp> #include <com/sun/star/xml/sax/Parser.hpp> #include <com/sun/star/xml/sax/SAXException.hpp> #include <com/sun/star/xml/sax/XParser.hpp> #include <comphelper/classids.hxx> #include <comphelper/embeddedobjectcontainer.hxx> +#include <comphelper/sequenceashashmap.hxx> #include <comphelper/servicehelper.hxx> #include <comphelper/storagehelper.hxx> #include <comphelper/string.hxx> @@ -161,6 +166,7 @@ #include <cppuhelper/implementationentry.hxx> #include <cppuhelper/supportsservice.hxx> #include <editeng/borderline.hxx> +#include <editeng/unoprnms.hxx> #include <filter/msfilter/escherex.hxx> #include <filter/msfilter/util.hxx> #include <fstream> @@ -168,12 +174,12 @@ #include <i18nlangtag/languagetag.hxx> #include <i18nutil/paper.hxx> #include <iostream> -#include <iterator> #include <libxml/xmlstring.h> #include <map> #include <math.h> #include <officecfg/Office/Common.hxx> #include <oox/core/filterdetect.hxx> +#include <oox/drawingml/drawingmltypes.hxx> #include <oox/drawingml/shapepropertymap.hxx> #include <oox/helper/graphichelper.hxx> #include <oox/helper/modelobjecthelper.hxx> @@ -192,11 +198,12 @@ #include <osl/module.hxx> #include <osl/mutex.hxx> #include <rtl/instance.hxx> +#include <rtl/math.hxx> #include <rtl/strbuf.hxx> -#include <rtl/string.hxx> #include <rtl/tencinfo.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> +#include <sal/config.h> #include <sal/log.hxx> #include <sal/macros.h> #include <set> @@ -210,9 +217,12 @@ #include <svtools/grfmgr.hxx> #include <svx/svdtrans.hxx> #include <tools/color.hxx> +#include <tools/datetimeutils.hxx> #include <tools/globname.hxx> +#include <tools/mapunit.hxx> #include <tools/resmgr.hxx> #include <tools/stream.hxx> +#include <unotools/datetime.hxx> #include <unotools/fontdefs.hxx> #include <unotools/localfilehelper.hxx> #include <unotools/mediadescriptor.hxx> @@ -221,6 +231,7 @@ #include <vcl/embeddedfontshelper.hxx> #include <vcl/graph.hxx> #include <vcl/outdev.hxx> +#include <vcl/settings.hxx> #include <vcl/svapp.hxx> #include <vcl/wmf.hxx> #include <vector> diff --git a/xmloff/inc/pch/precompiled_xo.hxx b/xmloff/inc/pch/precompiled_xo.hxx index 0fe95ac9489b..77610a7e01b3 100644 --- a/xmloff/inc/pch/precompiled_xo.hxx +++ b/xmloff/inc/pch/precompiled_xo.hxx @@ -14,18 +14,11 @@ also fixes all possible problems, so it's usually better to use it). */ -#include <com/sun/star/beans/XPropertySet.hpp> -#include <com/sun/star/beans/XPropertySetInfo.hpp> -#include <com/sun/star/text/XLineNumberingProperties.hpp> -#include <comphelper/processfactory.hxx> -#include <cppuhelper/exc_hlp.hxx> -#include <sal/config.h> -#include <svl/urihelper.hxx> -#include <tools/debug.hxx> #include <algorithm> #include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx> #include <basegfx/matrix/b3dhommatrix.hxx> +#include <basegfx/numeric/ftools.hxx> #include <basegfx/point/b2dpoint.hxx> #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> @@ -40,6 +33,7 @@ #include <basegfx/vector/b3dvector.hxx> #include <boost/bind.hpp> #include <boost/iterator_adaptors.hpp> +#include <boost/noncopyable.hpp> #include <boost/ptr_container/ptr_set.hpp> #include <boost/ptr_container/ptr_vector.hpp> #include <boost/scoped_array.hpp> @@ -157,6 +151,7 @@ #include <com/sun/star/chart2/data/XDataSink.hpp> #include <com/sun/star/chart2/data/XDataSource.hpp> #include <com/sun/star/chart2/data/XDatabaseDataProvider.hpp> +#include <com/sun/star/chart2/data/XLabeledDataSequence2.hpp> #include <com/sun/star/chart2/data/XNumericalDataSequence.hpp> #include <com/sun/star/chart2/data/XRangeXMLConversion.hpp> #include <com/sun/star/chart2/data/XTextualDataSequence.hpp> @@ -297,7 +292,6 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceName.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp> -#include <com/sun/star/lang/XTypeProvider.hpp> #include <com/sun/star/linguistic2/XSupportedLocales.hpp> #include <com/sun/star/media/ZoomLevel.hpp> #include <com/sun/star/office/XAnnotationAccess.hpp> @@ -346,6 +340,7 @@ #include <com/sun/star/style/XStyle.hpp> #include <com/sun/star/style/XStyleFamiliesSupplier.hpp> #include <com/sun/star/table/BorderLine2.hpp> +#include <com/sun/star/table/BorderLineStyle.hpp> #include <com/sun/star/table/CellContentType.hpp> #include <com/sun/star/table/ShadowFormat.hpp> #include <com/sun/star/table/XCellRange.hpp> @@ -399,6 +394,7 @@ #include <com/sun/star/text/XFootnote.hpp> #include <com/sun/star/text/XFootnotesSupplier.hpp> #include <com/sun/star/text/XFormField.hpp> +#include <com/sun/star/text/XLineNumberingProperties.hpp> #include <com/sun/star/text/XNumberingRulesSupplier.hpp> #include <com/sun/star/text/XNumberingTypeInfo.hpp> #include <com/sun/star/text/XRelativeTextContentInsert.hpp> @@ -500,6 +496,7 @@ #include <comphelper/string.hxx> #include <comphelper/types.hxx> #include <comphelper/xmltools.hxx> +#include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/factory.hxx> #include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase3.hxx> @@ -512,7 +509,6 @@ #include <limits.h> #include <list> #include <map> -#include <memory> #include <numeric> #include <o3tl/sorted_vector.hxx> #include <officecfg/Office/Common.hxx> @@ -526,17 +522,20 @@ #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> #include <rtl/ustring.hxx> +#include <sal/config.h> #include <sal/log.hxx> #include <sal/macros.h> #include <sal/types.h> #include <sax/tools/converter.hxx> #include <set> +#include <stack> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <svl/itemset.hxx> #include <svl/nfsymbol.hxx> #include <svl/numuno.hxx> +#include <svl/urihelper.hxx> #include <svl/zforlist.hxx> #include <svl/zformat.hxx> #include <tools/color.hxx> @@ -551,9 +550,7 @@ #include <tools/helpers.hxx> #include <tools/time.hxx> #include <tools/urlobj.hxx> -#include <tools/wintypes.hxx> #include <typeinfo> -#include <uno/lbnames.h> #include <unotools/bootstrap.hxx> #include <unotools/calendarwrapper.hxx> #include <unotools/charclass.hxx> |