1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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>
32 typedef ::std::vector
< AddonMenuItem
> AddonMenuContainer
;
41 AddonMenuContainer aSubMenu
;
47 RP_POPUPMENU_NOT_FOUND
,
48 RP_MENUITEM_NOT_FOUND
,
49 RP_MENUITEM_INSTEAD_OF_POPUPMENU_FOUND
52 struct ReferencePathInfo
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
,
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
,
77 const OUString
& rMergeCommand
,
78 const OUString
& rMergeCommandParameter
,
79 const OUString
& rModuleIdentifier
,
80 const AddonMenuContainer
& rAddonMenuItems
);
81 static bool ProcessFallbackOperation( const ReferencePathInfo
& aRefPathInfo
,
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
,
93 const OUString
& rModuleIdentifier
,
94 const AddonMenuContainer
& rAddonMenuItems
);
95 static bool ReplaceMenuItem( Menu
* pMenu
,
98 const OUString
& rModuleIdentifier
,
99 const AddonMenuContainer
& rAddonMenuItems
);
100 static bool RemoveMenuItems( Menu
* pMenu
,
102 const OUString
& rMergeCommandParameter
);
103 static bool CreateSubMenu( Menu
* pSubMenu
,
105 const OUString
& rModuleIdentifier
,
106 const AddonMenuContainer
& rAddonSubMenu
);
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: */