From 267c6f2ac71f92999e969232431ba04678e7437e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 07:54:39 +0200 Subject: Adding upstream version 4:24.2.0. Signed-off-by: Daniel Baumann --- .../vcl/notebookbar/NotebookBarAddonsMerger.hxx | 62 ++++++++++++++++++ include/vcl/notebookbar/notebookbar.hxx | 75 ++++++++++++++++++++++ 2 files changed, 137 insertions(+) create mode 100644 include/vcl/notebookbar/NotebookBarAddonsMerger.hxx create mode 100644 include/vcl/notebookbar/notebookbar.hxx (limited to 'include/vcl/notebookbar') diff --git a/include/vcl/notebookbar/NotebookBarAddonsMerger.hxx b/include/vcl/notebookbar/NotebookBarAddonsMerger.hxx new file mode 100644 index 0000000000..30ab04be2b --- /dev/null +++ b/include/vcl/notebookbar/NotebookBarAddonsMerger.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 . + */ + +#ifndef INCLUDED_VCL_NOTEBOOKBARADDONSMERGER_HXX +#define INCLUDED_VCL_NOTEBOOKBARADDONSMERGER_HXX + +#include +#include +#include +#include +#include +#include +#include + +class Menu; + +struct NotebookBarAddonsItem +{ + std::vector aImageValues; + std::vector>> aAddonValues; +}; + +struct AddonNotebookBarItem +{ + OUString sCommandURL; + OUString sLabel; + OUString sTarget; + OUString sContext; + OUString sControlType; + sal_uInt16 nWidth; + OUString sStyle; +}; + +namespace NotebookBarAddonsMerger +{ +void MergeNotebookBarAddons(vcl::Window* pParent, const VclBuilder::customMakeWidget& pFunction, + const css::uno::Reference& rFrame, + const NotebookBarAddonsItem& aNotebookBarAddonsItem, + VclBuilder::stringmap& rVec); +void MergeNotebookBarMenuAddons(Menu* pPopupMenu, sal_Int16 nItemId, const OUString& sItemIdName, + NotebookBarAddonsItem& aNotebookBarAddonsItem); +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/notebookbar/notebookbar.hxx b/include/vcl/notebookbar/notebookbar.hxx new file mode 100644 index 0000000000..15186fce2c --- /dev/null +++ b/include/vcl/notebookbar/notebookbar.hxx @@ -0,0 +1,75 @@ +/* -*- 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/. + */ + +#pragma once + +#include +#include +#include +#include +#include +#include + +namespace com::sun::star::ui { class XContextChangeEventListener; } + +class NotebookBarContextChangeEventListener; +class NotebookbarContextControl; +class SystemWindow; +class SfxViewShell; + +/// This implements Widget Layout-based notebook-like menu bar. +class VCL_DLLPUBLIC NotebookBar final : public Control, public VclBuilderContainer +{ +friend class NotebookBarContextChangeEventListener; +public: + NotebookBar(Window* pParent, const OUString& rID, const OUString& rUIXMLDescription, + const css::uno::Reference& rFrame, + const NotebookBarAddonsItem& aNotebookBarAddonsItem); + virtual ~NotebookBar() override; + virtual void dispose() override; + + virtual bool PreNotify( NotifyEvent& rNEvt ) override; + virtual Size GetOptimalSize() const override; + virtual void setPosSizePixel(tools::Long nX, tools::Long nY, tools::Long nWidth, tools::Long nHeight, PosSizeFlags nFlags = PosSizeFlags::All) override; + virtual void Resize() override; + + void SetSystemWindow(SystemWindow* pSystemWindow); + + void StateChanged(const StateChangedType nStateChange ) override; + + void DataChanged(const DataChangedEvent& rDCEvt) override; + + void SetupListener(bool bListen); + + bool IsWelded() const { return m_bIsWelded; } + VclPtr& GetMainContainer() { return m_xVclContentArea; } + const OUString & GetUIFilePath() const { return m_sUIXMLDescription; } + void SetDisposeCallback(const Link rDisposeCallback, const SfxViewShell* pViewShell); + +private: + VclPtr m_pSystemWindow; + rtl::Reference m_pEventListener; + std::vector m_pContextContainers; + const SfxViewShell* m_pViewShell; + + VclPtr m_xVclContentArea; + bool m_bIsWelded; + OUString m_sUIXMLDescription; + Link m_rDisposeLink; + + AllSettings DefaultSettings; + AllSettings PersonaSettings; + + void UpdateBackground(); + + void UpdateDefaultSettings(); + void UpdatePersonaSettings(); +}; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3