Bug 1646817 - Support DocumentChannel process switching in sidebars and popups r...
[gecko.git] / widget / cocoa / NativeKeyBindings.h
blob65a1304b6bd63576b0da61fbbbc71ebbfe151bb5
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozilla_widget_NativeKeyBindings_h_
7 #define mozilla_widget_NativeKeyBindings_h_
9 #import <Cocoa/Cocoa.h>
10 #include "mozilla/Attributes.h"
11 #include "mozilla/EventForwards.h"
12 #include "nsDataHashtable.h"
13 #include "nsIWidget.h"
15 namespace mozilla {
16 namespace widget {
18 typedef nsDataHashtable<nsPtrHashKey<struct objc_selector>, Command>
19 SelectorCommandHashtable;
21 class NativeKeyBindings final {
22 typedef nsIWidget::NativeKeyBindingsType NativeKeyBindingsType;
24 public:
25 static NativeKeyBindings* GetInstance(NativeKeyBindingsType aType);
26 static void Shutdown();
28 void Init(NativeKeyBindingsType aType);
30 void GetEditCommands(const WidgetKeyboardEvent& aEvent,
31 nsTArray<CommandInt>& aCommands);
33 private:
34 NativeKeyBindings();
36 SelectorCommandHashtable mSelectorToCommand;
38 static NativeKeyBindings* sInstanceForSingleLineEditor;
39 static NativeKeyBindings* sInstanceForMultiLineEditor;
40 }; // NativeKeyBindings
42 } // namespace widget
43 } // namespace mozilla
45 #endif // mozilla_widget_NativeKeyBindings_h_