diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-05-20 12:45:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-05-20 14:59:02 +0200 |
commit | 3c41913181f8663f9f1970b13ee038386016d22e (patch) | |
tree | 6bebba4b8cdbb5d1f1d678757b944d882eaae177 /svx | |
parent | 17085c3072deaf6a44246d6d4be1d7022e0f09cd (diff) |
move some headers inside modules
Change-Id: I2baa9e9334850cf72e8ea1e96a2177a1c052e589
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115868
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
23 files changed, 450 insertions, 14 deletions
diff --git a/svx/inc/ParaLineSpacingPopup.hxx b/svx/inc/ParaLineSpacingPopup.hxx new file mode 100644 index 000000000000..0b042f44b171 --- /dev/null +++ b/svx/inc/ParaLineSpacingPopup.hxx @@ -0,0 +1,46 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ +#pragma once + +#include <svtools/popupwindowcontroller.hxx> + +namespace svx +{ +class SvxLineSpacingToolBoxControl final : public svt::PopupWindowController +{ +public: + explicit SvxLineSpacingToolBoxControl( + const css::uno::Reference<css::uno::XComponentContext>& rContext); + virtual ~SvxLineSpacingToolBoxControl() override; + + virtual void SAL_CALL execute(sal_Int16 KeyModifier) override; + + virtual VclPtr<vcl::Window> createVclPopupWindow(vcl::Window* pParent) override; + virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override; + + // XServiceInfo + virtual OUString SAL_CALL getImplementationName() override; + virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; + + // XInitialization + virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override; +}; +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/inc/TextCharacterSpacingPopup.hxx b/svx/inc/TextCharacterSpacingPopup.hxx new file mode 100644 index 000000000000..bb1092c820ac --- /dev/null +++ b/svx/inc/TextCharacterSpacingPopup.hxx @@ -0,0 +1,44 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ +#pragma once + +#include <svtools/popupwindowcontroller.hxx> + +namespace svx +{ +class TextCharacterSpacingPopup final : public svt::PopupWindowController +{ +public: + TextCharacterSpacingPopup(const css::uno::Reference<css::uno::XComponentContext>& rContext); + virtual ~TextCharacterSpacingPopup() override; + + virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override; + virtual VclPtr<vcl::Window> createVclPopupWindow(vcl::Window* pParent) override; + + // XServiceInfo + virtual OUString SAL_CALL getImplementationName() override; + virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; + + // XInitialization + virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override; +}; + +} // end of namespace svx + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/inc/TextUnderlinePopup.hxx b/svx/inc/TextUnderlinePopup.hxx new file mode 100644 index 000000000000..973f50c53170 --- /dev/null +++ b/svx/inc/TextUnderlinePopup.hxx @@ -0,0 +1,44 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ +#pragma once + +#include <svtools/popupwindowcontroller.hxx> + +namespace svx +{ +class TextUnderlinePopup final : public svt::PopupWindowController +{ +public: + TextUnderlinePopup(const css::uno::Reference<css::uno::XComponentContext>& rContext); + virtual ~TextUnderlinePopup() override; + + virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override; + virtual VclPtr<vcl::Window> createVclPopupWindow(vcl::Window* pParent) override; + + // XServiceInfo + virtual OUString SAL_CALL getImplementationName() override; + virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; + + // XInitialization + virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override; +}; + +} // end of namespace svx + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/inc/dstribut_enum.hxx b/svx/inc/dstribut_enum.hxx new file mode 100644 index 000000000000..98d962850702 --- /dev/null +++ b/svx/inc/dstribut_enum.hxx @@ -0,0 +1,39 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ +#pragma once + +enum class SvxDistributeHorizontal +{ + NONE = 0, + Left, + Center, + Distance, + Right +}; + +enum class SvxDistributeVertical +{ + NONE = 0, + Top, + Center, + Distance, + Bottom +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/inc/galleryobjectbinarystorage.hxx b/svx/inc/galleryobjectbinarystorage.hxx new file mode 100644 index 000000000000..85dd9e22836c --- /dev/null +++ b/svx/inc/galleryobjectbinarystorage.hxx @@ -0,0 +1,35 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#pragma once + +#include <tools/urlobj.hxx> +#include <svx/galleryobjectstorage.hxx> + +class GalleryObjectBinaryStorage : public GalleryObjectStorage +{ +private: + INetURLObject m_aURL; + +public: + void setURL(INetURLObject aURL); + const INetURLObject& getURL() const { return m_aURL; } +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/inc/galleryobjectxmlstorage.hxx b/svx/inc/galleryobjectxmlstorage.hxx new file mode 100644 index 000000000000..35a9384524f9 --- /dev/null +++ b/svx/inc/galleryobjectxmlstorage.hxx @@ -0,0 +1,35 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#pragma once + +#include <tools/urlobj.hxx> +#include <svx/galleryobjectstorage.hxx> + +class GalleryObjectXMLStorage : public GalleryObjectStorage +{ +private: + INetURLObject m_aURL; + +public: + void setURL(INetURLObject aURL); + const INetURLObject& getURL() const { return m_aURL; } +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/inc/layctrl.hxx b/svx/inc/layctrl.hxx new file mode 100644 index 000000000000..34ccc6e5469b --- /dev/null +++ b/svx/inc/layctrl.hxx @@ -0,0 +1,62 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ +#pragma once + +#include <svtools/popupwindowcontroller.hxx> + +class SvxTableToolBoxControl final : public svt::PopupWindowController +{ +public: + SvxTableToolBoxControl(const css::uno::Reference<css::uno::XComponentContext>& rContext); + virtual ~SvxTableToolBoxControl() override; + + virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override; + virtual VclPtr<vcl::Window> createVclPopupWindow(vcl::Window* pParent) override; + + // XServiceInfo + virtual OUString SAL_CALL getImplementationName() override; + virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; + + // XInitialization + virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override; + + void TableDialog(const css::uno::Sequence<css::beans::PropertyValue>& rArgs); + void CloseAndShowTableDialog(); +}; + +class SvxColumnsToolBoxControl final : public svt::PopupWindowController +{ +public: + SvxColumnsToolBoxControl(const css::uno::Reference<css::uno::XComponentContext>& rContext); + virtual ~SvxColumnsToolBoxControl() override; + + virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override; + virtual VclPtr<vcl::Window> createVclPopupWindow(vcl::Window* pParent) override; + + // XServiceInfo + virtual OUString SAL_CALL getImplementationName() override; + virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; + + // XInitialization + virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override; + + void InsertColumns(const css::uno::Sequence<css::beans::PropertyValue>& rArgs); +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/inc/lboxctrl.hxx b/svx/inc/lboxctrl.hxx new file mode 100644 index 000000000000..e09477d722ed --- /dev/null +++ b/svx/inc/lboxctrl.hxx @@ -0,0 +1,57 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#pragma once + +#include <rtl/ustring.hxx> +#include <vector> +#include <svtools/popupwindowcontroller.hxx> + +class ToolBox; +class SvxPopupWindowListBox; + +class SvxUndoRedoControl final : public svt::PopupWindowController +{ + std::vector<OUString> aUndoRedoList; + OUString aDefaultTooltip; + +public: + SvxUndoRedoControl(const css::uno::Reference<css::uno::XComponentContext>& rContext); + virtual ~SvxUndoRedoControl() override; + + virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override; + virtual VclPtr<vcl::Window> createVclPopupWindow(vcl::Window* pParent) override; + + // XServiceInfo + virtual OUString SAL_CALL getImplementationName() override; + virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; + + // XInitialization + virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override; + + virtual void SAL_CALL statusChanged(const css::frame::FeatureStateEvent& rEvent) override; + + void Do(sal_Int16 nCount); + + void SetText(const OUString& rText); + + void SetInfo(sal_Int32 nCount); +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/inc/verttexttbxctrl.hxx b/svx/inc/verttexttbxctrl.hxx new file mode 100644 index 000000000000..05b675f1e32d --- /dev/null +++ b/svx/inc/verttexttbxctrl.hxx @@ -0,0 +1,74 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ +#pragma once + +#include <com/sun/star/lang/XServiceInfo.hpp> + +#include <cppuhelper/implbase.hxx> +#include <svtools/toolboxcontroller.hxx> + +//HACK to avoid duplicate ImplInheritanceHelper symbols with MSVC: +class SAL_DLLPUBLIC_TEMPLATE SvxVertCTLTextTbxCtrl_Base + : public cppu::ImplInheritanceHelper<svt::ToolboxController, css::lang::XServiceInfo> +{ + using ImplInheritanceHelper::ImplInheritanceHelper; +}; + +/* + control to remove/insert cjk settings dependent vertical text toolbox item + */ +class SvxVertCTLTextTbxCtrl : public SvxVertCTLTextTbxCtrl_Base +{ + bool m_bVisible; + +public: + explicit SvxVertCTLTextTbxCtrl( + const css::uno::Reference<css::uno::XComponentContext>& rContext); + + virtual ~SvxVertCTLTextTbxCtrl() override; + + // XInitialization + virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override; + + // XServiceInfo + virtual OUString SAL_CALL getImplementationName() override = 0; + virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override; + virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; + + // XStatusListener + virtual void SAL_CALL statusChanged(const css::frame::FeatureStateEvent& rEvent) override; +}; + +class SvxCTLTextTbxCtrl final : public SvxVertCTLTextTbxCtrl +{ +public: + SvxCTLTextTbxCtrl(const css::uno::Reference<css::uno::XComponentContext>& rContext); + + virtual OUString SAL_CALL getImplementationName() override; +}; + +class SvxVertTextTbxCtrl final : public SvxVertCTLTextTbxCtrl +{ +public: + SvxVertTextTbxCtrl(const css::uno::Reference<css::uno::XComponentContext>& rContext); + + virtual OUString SAL_CALL getImplementationName() override; +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/source/gallery2/gallerybinaryengine.cxx b/svx/source/gallery2/gallerybinaryengine.cxx index c093d899d756..661b3dd03bed 100644 --- a/svx/source/gallery2/gallerybinaryengine.cxx +++ b/svx/source/gallery2/gallerybinaryengine.cxx @@ -23,7 +23,7 @@ #include <svx/gallerybinaryengine.hxx> #include <svx/galleryobjectcollection.hxx> #include <svx/gallery1.hxx> -#include <svx/galleryobjectbinarystorage.hxx> +#include <galleryobjectbinarystorage.hxx> #include <osl/thread.hxx> #include "codec.hxx" #include "gallerydrawmodel.hxx" diff --git a/svx/source/gallery2/galleryobjectbinarystorage.cxx b/svx/source/gallery2/galleryobjectbinarystorage.cxx index c18ed6441df1..14bdc8b0848c 100644 --- a/svx/source/gallery2/galleryobjectbinarystorage.cxx +++ b/svx/source/gallery2/galleryobjectbinarystorage.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <svx/galleryobjectbinarystorage.hxx> +#include <galleryobjectbinarystorage.hxx> #include <tools/urlobj.hxx> void GalleryObjectBinaryStorage::setURL(INetURLObject aURL) { m_aURL = aURL; } diff --git a/svx/source/gallery2/galleryobjectxmlstorage.cxx b/svx/source/gallery2/galleryobjectxmlstorage.cxx index cadd94c03439..f07b7b869075 100644 --- a/svx/source/gallery2/galleryobjectxmlstorage.cxx +++ b/svx/source/gallery2/galleryobjectxmlstorage.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <svx/galleryobjectxmlstorage.hxx> +#include <galleryobjectxmlstorage.hxx> #include <tools/urlobj.hxx> void GalleryObjectXMLStorage::setURL(INetURLObject aURL) { m_aURL = aURL; } diff --git a/svx/source/gallery2/galtheme.cxx b/svx/source/gallery2/galtheme.cxx index cf0e6c9c2d98..dff3696b8cd8 100644 --- a/svx/source/gallery2/galtheme.cxx +++ b/svx/source/gallery2/galtheme.cxx @@ -41,7 +41,7 @@ #include <svx/galtheme.hxx> #include <svx/svdpage.hxx> #include <svx/galleryobjectcollection.hxx> -#include <svx/galleryobjectbinarystorage.hxx> +#include <galleryobjectbinarystorage.hxx> #include <galobj.hxx> #include <svx/gallery1.hxx> #include "gallerydrawmodel.hxx" diff --git a/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx b/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx index 34ce9159d268..bbd0b74de631 100644 --- a/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx +++ b/svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx @@ -30,7 +30,7 @@ #include <svl/intitem.hxx> #include <svl/itempool.hxx> -#include <svx/ParaLineSpacingPopup.hxx> +#include <ParaLineSpacingPopup.hxx> #define DEFAULT_LINE_SPACING 200 #define FIX_DIST_DEF 283 diff --git a/svx/source/sidebar/paragraph/ParaLineSpacingPopup.cxx b/svx/source/sidebar/paragraph/ParaLineSpacingPopup.cxx index 97edf21f304b..d8e4278406ce 100644 --- a/svx/source/sidebar/paragraph/ParaLineSpacingPopup.cxx +++ b/svx/source/sidebar/paragraph/ParaLineSpacingPopup.cxx @@ -19,7 +19,7 @@ #include "ParaLineSpacingControl.hxx" -#include <svx/ParaLineSpacingPopup.hxx> +#include <ParaLineSpacingPopup.hxx> #include <vcl/toolbox.hxx> using namespace svx; diff --git a/svx/source/sidebar/text/TextCharacterSpacingControl.cxx b/svx/source/sidebar/text/TextCharacterSpacingControl.cxx index 58c25e76bef0..e3685146b6f5 100644 --- a/svx/source/sidebar/text/TextCharacterSpacingControl.cxx +++ b/svx/source/sidebar/text/TextCharacterSpacingControl.cxx @@ -24,7 +24,7 @@ #include <sfx2/app.hxx> #include <sfx2/dispatch.hxx> #include <sfx2/viewfrm.hxx> -#include <svx/TextCharacterSpacingPopup.hxx> +#include <TextCharacterSpacingPopup.hxx> #include <svl/itempool.hxx> #include <helpids.h> diff --git a/svx/source/sidebar/text/TextCharacterSpacingPopup.cxx b/svx/source/sidebar/text/TextCharacterSpacingPopup.cxx index 141238b10c92..a8eef9000c02 100644 --- a/svx/source/sidebar/text/TextCharacterSpacingPopup.cxx +++ b/svx/source/sidebar/text/TextCharacterSpacingPopup.cxx @@ -16,7 +16,7 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <svx/TextCharacterSpacingPopup.hxx> +#include <TextCharacterSpacingPopup.hxx> #include "TextCharacterSpacingControl.hxx" #include <vcl/toolbox.hxx> diff --git a/svx/source/sidebar/text/TextUnderlineControl.cxx b/svx/source/sidebar/text/TextUnderlineControl.cxx index 1ae19e653bc0..4ce94e0cfb29 100644 --- a/svx/source/sidebar/text/TextUnderlineControl.cxx +++ b/svx/source/sidebar/text/TextUnderlineControl.cxx @@ -20,7 +20,7 @@ #include <svx/svxids.hrc> #include <sfx2/dispatch.hxx> #include <sfx2/viewfrm.hxx> -#include <svx/TextUnderlinePopup.hxx> +#include <TextUnderlinePopup.hxx> #include <editeng/editids.hrc> #include <editeng/udlnitem.hxx> #include <helpids.h> diff --git a/svx/source/sidebar/text/TextUnderlinePopup.cxx b/svx/source/sidebar/text/TextUnderlinePopup.cxx index dd6929382093..75529f297baf 100644 --- a/svx/source/sidebar/text/TextUnderlinePopup.cxx +++ b/svx/source/sidebar/text/TextUnderlinePopup.cxx @@ -16,7 +16,7 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <svx/TextUnderlinePopup.hxx> +#include <TextUnderlinePopup.hxx> #include "TextUnderlineControl.hxx" #include <vcl/toolbox.hxx> diff --git a/svx/source/svdraw/svdedtv2.cxx b/svx/source/svdraw/svdedtv2.cxx index 481ffb8d690d..27df56d91d76 100644 --- a/svx/source/svdraw/svdedtv2.cxx +++ b/svx/source/svdraw/svdedtv2.cxx @@ -50,7 +50,7 @@ #include <vector> #include <vcl/graph.hxx> #include <svx/svxids.hrc> -#include <svx/dstribut_enum.hxx> +#include <dstribut_enum.hxx> #include <osl/diagnose.h> using namespace com::sun::star; diff --git a/svx/source/tbxctrls/layctrl.cxx b/svx/source/tbxctrls/layctrl.cxx index da696a2306c5..dcc567e0112e 100644 --- a/svx/source/tbxctrls/layctrl.cxx +++ b/svx/source/tbxctrls/layctrl.cxx @@ -24,7 +24,7 @@ #include <vcl/toolbox.hxx> #include <svx/strings.hrc> -#include <svx/layctrl.hxx> +#include <layctrl.hxx> #include <svx/dialmgr.hxx> #include <comphelper/processfactory.hxx> #include <svtools/colorcfg.hxx> diff --git a/svx/source/tbxctrls/lboxctrl.cxx b/svx/source/tbxctrls/lboxctrl.cxx index c8a6b77b74e3..9c31edf4e7a3 100644 --- a/svx/source/tbxctrls/lboxctrl.cxx +++ b/svx/source/tbxctrls/lboxctrl.cxx @@ -25,7 +25,7 @@ #include <sfx2/bindings.hxx> #include <svtools/toolbarmenu.hxx> #include <svx/dialmgr.hxx> -#include <svx/lboxctrl.hxx> +#include <lboxctrl.hxx> #include <tools/urlobj.hxx> #include <svx/strings.hrc> diff --git a/svx/source/tbxctrls/verttexttbxctrl.cxx b/svx/source/tbxctrls/verttexttbxctrl.cxx index 7d7d12006180..6be76a79f6c7 100644 --- a/svx/source/tbxctrls/verttexttbxctrl.cxx +++ b/svx/source/tbxctrls/verttexttbxctrl.cxx @@ -18,7 +18,7 @@ */ #include <cppuhelper/supportsservice.hxx> -#include <svx/verttexttbxctrl.hxx> +#include <verttexttbxctrl.hxx> #include <svl/languageoptions.hxx> #include <vcl/toolbox.hxx> #include <vcl/weld.hxx> |