blob: aeed8be01b2578a6c4347c3be9ed7b81fc98f31a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "KeyboardLayout.h"
#include "mozilla/TextEventDispatcher.h"
#include "mozilla/widget/IMEData.h"
#include "nsWindow.h"
#include "WinIMEHandler.h"
#include "WinTextEventDispatcherListener.h"
namespace mozilla {
namespace widget {
StaticRefPtr<WinTextEventDispatcherListener>
WinTextEventDispatcherListener::sInstance;
// static
WinTextEventDispatcherListener* WinTextEventDispatcherListener::GetInstance() {
if (!sInstance) {
sInstance = new WinTextEventDispatcherListener();
}
return sInstance.get();
}
void WinTextEventDispatcherListener::Shutdown() { sInstance = nullptr; }
NS_IMPL_ISUPPORTS(WinTextEventDispatcherListener, TextEventDispatcherListener,
nsISupportsWeakReference)
WinTextEventDispatcherListener::WinTextEventDispatcherListener() {}
WinTextEventDispatcherListener::~WinTextEventDispatcherListener() {}
NS_IMETHODIMP
WinTextEventDispatcherListener::NotifyIME(
TextEventDispatcher* aTextEventDispatcher,
const IMENotification& aNotification) {
nsWindow* window = static_cast<nsWindow*>(aTextEventDispatcher->GetWidget());
if (NS_WARN_IF(!window)) {
return NS_ERROR_FAILURE;
}
return IMEHandler::NotifyIME(window, aNotification);
}
NS_IMETHODIMP_(IMENotificationRequests)
WinTextEventDispatcherListener::GetIMENotificationRequests() {
return IMEHandler::GetIMENotificationRequests();
}
NS_IMETHODIMP_(void)
WinTextEventDispatcherListener::OnRemovedFrom(
TextEventDispatcher* aTextEventDispatcher) {
// XXX When input transaction is being stolen by add-on, what should we do?
}
NS_IMETHODIMP_(void)
WinTextEventDispatcherListener::WillDispatchKeyboardEvent(
TextEventDispatcher* aTextEventDispatcher,
WidgetKeyboardEvent& aKeyboardEvent, uint32_t aIndexOfKeypress,
void* aData) {
static_cast<NativeKey*>(aData)->WillDispatchKeyboardEvent(aKeyboardEvent,
aIndexOfKeypress);
}
} // namespace widget
} // namespace mozilla
|