Bump version to 6.4.7.2.M8
[LibreOffice.git] / cui / source / inc / SvxMenuConfigPage.hxx
blob5ff3aea6b0ba1c0d5d8a4d4216e9bd86262c798c
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 .
19 #ifndef INCLUDED_CUI_SOURCE_INC_SVXMENUCONFIGPAGE_HXX
20 #define INCLUDED_CUI_SOURCE_INC_SVXMENUCONFIGPAGE_HXX
22 #include <vcl/weld.hxx>
23 #include <com/sun/star/ui/XUIConfigurationManager.hpp>
25 #include "cfg.hxx" //for SvxConfigPage and SaveInData
27 class SvxMenuConfigPage : public SvxConfigPage
29 private:
30 bool m_bIsMenuBar;
32 DECL_LINK( SelectMenu, weld::ComboBox&, void );
33 DECL_LINK( SelectMenuEntry, weld::TreeView&, void );
35 DECL_LINK( GearHdl, const OString&, void );
37 DECL_LINK( SelectCategory, weld::ComboBox&, void );
39 DECL_LINK( AddCommandHdl, weld::Button&, void );
40 DECL_LINK( RemoveCommandHdl, weld::Button&, void );
42 DECL_LINK( InsertHdl, const OString&, void );
43 DECL_LINK( ModifyItemHdl, const OString&, void );
44 DECL_LINK( ResetMenuHdl, weld::Button&, void );
46 DECL_LINK( MenuEntriesSizeAllocHdl, const Size&, void );
48 virtual void ListModified() override;
50 void Init() override;
51 void UpdateButtonStates() override;
52 short QueryReset() override;
53 void DeleteSelectedContent() override;
54 void DeleteSelectedTopLevel() override;
56 virtual void SelectElement() override;
58 public:
59 SvxMenuConfigPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rItemSet, bool bIsMenuBar = true);
60 virtual ~SvxMenuConfigPage() override;
62 SaveInData* CreateSaveInData(
63 const css::uno::Reference <
64 css::ui::XUIConfigurationManager >&,
65 const css::uno::Reference <
66 css::ui::XUIConfigurationManager >&,
67 const OUString& aModuleId,
68 bool docConfig ) override;
71 #endif // INCLUDED_CUI_SOURCE_INC_SVXMENUCONFIGPAGE_HXX
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */