update credits
[LibreOffice.git] / framework / inc / uielement / menubarmerger.hxx
blobde352898771baeb45cb405b14068918ee8870688
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef __FRAMEWORK_UIELEMENT_MENUBARMERGER_HXX_
21 #define __FRAMEWORK_UIELEMENT_MENUBARMERGER_HXX_
23 #include <com/sun/star/beans/PropertyValue.hpp>
25 #include <rtl/ustring.hxx>
26 #include <vcl/menu.hxx>
28 namespace framework
31 struct AddonMenuItem;
32 typedef ::std::vector< AddonMenuItem > AddonMenuContainer;
34 struct AddonMenuItem
36 OUString aTitle;
37 OUString aURL;
38 OUString aTarget;
39 OUString aImageId;
40 OUString aContext;
41 AddonMenuContainer aSubMenu;
44 enum RPResultInfo
46 RP_OK,
47 RP_POPUPMENU_NOT_FOUND,
48 RP_MENUITEM_NOT_FOUND,
49 RP_MENUITEM_INSTEAD_OF_POPUPMENU_FOUND
52 struct ReferencePathInfo
54 Menu* pPopupMenu;
55 sal_uInt16 nPos;
56 sal_Int32 nLevel;
57 RPResultInfo eResult;
60 class MenuBarMerger
62 public:
63 static bool IsCorrectContext( const OUString& aContext, const OUString& aModuleIdentifier );
65 static void RetrieveReferencePath( const OUString&,
66 std::vector< OUString >& aReferencePath );
67 static ReferencePathInfo FindReferencePath( const std::vector< OUString >& aReferencePath, Menu* pMenu );
68 static sal_uInt16 FindMenuItem( const OUString& rCmd,
69 Menu* pMenu );
70 static void GetMenuEntry( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rAddonMenuEntry,
71 AddonMenuItem& aAddonMenu );
72 static void GetSubMenu( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > >& rSubMenuEntries,
73 AddonMenuContainer& rSubMenu );
74 static bool ProcessMergeOperation( Menu* pMenu,
75 sal_uInt16 nPos,
76 sal_uInt16& rItemId,
77 const OUString& rMergeCommand,
78 const OUString& rMergeCommandParameter,
79 const OUString& rModuleIdentifier,
80 const AddonMenuContainer& rAddonMenuItems );
81 static bool ProcessFallbackOperation( const ReferencePathInfo& aRefPathInfo,
82 sal_uInt16& rItemId,
83 const OUString& rMergeCommand,
84 const OUString& rMergeFallback,
85 const ::std::vector< OUString >& rReferencePath,
86 const OUString& rModuleIdentifier,
87 const AddonMenuContainer& rAddonMenuItems );
88 static bool ProcessFallbackOperation();
89 static bool MergeMenuItems( Menu* pMenu,
90 sal_uInt16 nPos,
91 sal_uInt16 nModIndex,
92 sal_uInt16& rItemId,
93 const OUString& rModuleIdentifier,
94 const AddonMenuContainer& rAddonMenuItems );
95 static bool ReplaceMenuItem( Menu* pMenu,
96 sal_uInt16 nPos,
97 sal_uInt16& rItemId,
98 const OUString& rModuleIdentifier,
99 const AddonMenuContainer& rAddonMenuItems );
100 static bool RemoveMenuItems( Menu* pMenu,
101 sal_uInt16 nPos,
102 const OUString& rMergeCommandParameter );
103 static bool CreateSubMenu( Menu* pSubMenu,
104 sal_uInt16& nItemId,
105 const OUString& rModuleIdentifier,
106 const AddonMenuContainer& rAddonSubMenu );
108 private:
109 MenuBarMerger();
110 MenuBarMerger( const MenuBarMerger& );
111 MenuBarMerger& operator=( const MenuBarMerger& );
114 } // namespace framework
116 #endif // __FRAMEWORK_UIELEMENT_MENUBARMERGER_HXX_
118 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */