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 .
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
32 DECL_LINK(SelectMenuEntry
, weld::TreeView
&, void);
33 DECL_LINK(ContentContextMenuHdl
, const CommandEvent
&, bool);
34 DECL_LINK(FunctionContextMenuHdl
, const CommandEvent
&, bool);
36 DECL_LINK(GearHdl
, const OUString
&, void);
38 DECL_LINK(SelectCategory
, weld::ComboBox
&, void);
40 DECL_LINK(AddCommandHdl
, weld::Button
&, void);
41 DECL_LINK(RemoveCommandHdl
, weld::Button
&, void);
43 DECL_LINK(InsertHdl
, const OUString
&, void);
44 DECL_LINK(ModifyItemHdl
, const OUString
&, void);
45 DECL_LINK(ResetMenuHdl
, weld::Button
&, void);
47 DECL_LINK(MenuEntriesSizeAllocHdl
, const Size
&, void);
49 virtual void ListModified() override
;
52 void UpdateButtonStates() override
;
53 short QueryReset() override
;
54 void DeleteSelectedContent() override
;
55 void DeleteSelectedTopLevel() override
;
57 virtual void SelectElement() override
;
60 SvxMenuConfigPage(weld::Container
* pPage
, weld::DialogController
* pController
,
61 const SfxItemSet
& rItemSet
, bool bIsMenuBar
= true);
62 virtual ~SvxMenuConfigPage() override
;
64 SaveInData
* CreateSaveInData(const css::uno::Reference
<css::ui::XUIConfigurationManager
>&,
65 const css::uno::Reference
<css::ui::XUIConfigurationManager
>&,
66 const OUString
& aModuleId
, bool docConfig
) override
;
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */