Bump version to 21.06.18.1
[LibreOffice.git] / include / vcl / accel.hxx
blobe5eca060243a8ed5cc52de14e170ba7f17a78977
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 INCLUDED_VCL_ACCEL_HXX
21 #define INCLUDED_VCL_ACCEL_HXX
23 #include <config_options.h>
24 #include <tools/link.hxx>
25 #include <vcl/keycod.hxx>
26 #include <vcl/dllapi.h>
27 #include <memory>
29 class ImplAccelData;
30 class ImplAccelEntry;
31 class CommandEvent;
33 class UNLESS_MERGELIBS(VCL_DLLPUBLIC) Accelerator
35 friend class ImplAccelManager;
37 private:
38 std::unique_ptr<ImplAccelData> mpData;
39 Link<Accelerator&,void> maActivateHdl;
40 Link<Accelerator&,void> maSelectHdl;
42 // Will be set by AcceleratorManager
43 sal_uInt16 mnCurId;
44 bool* mpDel;
46 SAL_DLLPRIVATE void ImplInit();
47 SAL_DLLPRIVATE void ImplCopyData( ImplAccelData& rAccelData );
48 SAL_DLLPRIVATE void ImplDeleteData();
49 SAL_DLLPRIVATE void ImplInsertAccel(
50 sal_uInt16 nItemId,
51 const vcl::KeyCode& rKeyCode,
52 bool bEnable,
53 Accelerator* pAutoAccel );
55 SAL_DLLPRIVATE ImplAccelEntry*
56 ImplGetAccelData( const vcl::KeyCode& rKeyCode ) const;
58 public:
59 Accelerator();
60 Accelerator( const Accelerator& rAccel );
61 ~Accelerator();
63 void Activate();
64 void Select();
66 void InsertItem( sal_uInt16 nItemId, const vcl::KeyCode& rKeyCode );
68 sal_uInt16 GetCurItemId() const { return mnCurId; }
70 sal_uInt16 GetItemCount() const;
71 sal_uInt16 GetItemId( sal_uInt16 nPos ) const;
73 Accelerator* GetAccel( sal_uInt16 nItemId ) const;
75 void SetActivateHdl( const Link<Accelerator&,void>& rLink ) { maActivateHdl = rLink; }
76 void SetSelectHdl( const Link<Accelerator&,void>& rLink ) { maSelectHdl = rLink; }
78 Accelerator& operator=( const Accelerator& rAccel );
80 static bool ToggleMnemonicsOnHierarchy(const CommandEvent& rCEvent, const vcl::Window *pWindow);
81 static void GenerateAutoMnemonicsOnHierarchy(const vcl::Window* pWindow);
84 #endif // INCLUDED_VCL_ACCEL_HXX
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */