2013-02-24 20:00:05 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; 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/. */
|
|
|
|
|
|
|
|
#ifndef WinIMEHandler_h_
|
|
|
|
#define WinIMEHandler_h_
|
|
|
|
|
|
|
|
#include "nscore.h"
|
2013-02-24 20:00:07 -08:00
|
|
|
#include "nsIWidget.h"
|
2013-02-24 20:00:05 -08:00
|
|
|
#include <windows.h>
|
2013-04-29 08:41:45 -07:00
|
|
|
#include <inputscope.h>
|
2013-02-24 20:00:05 -08:00
|
|
|
|
2013-02-24 20:00:07 -08:00
|
|
|
#define NS_WM_IMEFIRST WM_IME_SETCONTEXT
|
|
|
|
#define NS_WM_IMELAST WM_IME_KEYUP
|
|
|
|
|
2013-02-24 20:00:05 -08:00
|
|
|
class nsWindow;
|
|
|
|
|
2013-02-24 20:00:05 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
2013-07-18 01:12:31 -07:00
|
|
|
struct MSGResult;
|
|
|
|
|
2013-02-24 20:00:05 -08:00
|
|
|
/**
|
|
|
|
* IMEHandler class is a mediator class. On Windows, there are two IME API
|
|
|
|
* sets: One is IMM which is legacy API set. The other is TSF which is modern
|
|
|
|
* API set. By using this class, non-IME handler classes don't need to worry
|
|
|
|
* that we're in which mode.
|
|
|
|
*/
|
|
|
|
class IMEHandler MOZ_FINAL
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void Initialize();
|
|
|
|
static void Terminate();
|
|
|
|
|
2013-02-24 20:00:07 -08:00
|
|
|
/**
|
|
|
|
* Returns TSF related native data.
|
|
|
|
*/
|
|
|
|
static void* GetNativeData(uint32_t aDataType);
|
|
|
|
|
2013-03-17 21:41:24 -07:00
|
|
|
/**
|
|
|
|
* ProcessRawKeyMessage() message is called before calling TranslateMessage()
|
|
|
|
* and DispatchMessage(). If this returns true, the message is consumed.
|
|
|
|
* Then, caller must not perform TranslateMessage() nor DispatchMessage().
|
|
|
|
*/
|
|
|
|
static bool ProcessRawKeyMessage(const MSG& aMsg);
|
|
|
|
|
2013-02-24 20:00:05 -08:00
|
|
|
/**
|
|
|
|
* When the message is not needed to handle anymore by the caller, this
|
|
|
|
* returns true. Otherwise, false.
|
|
|
|
*/
|
|
|
|
static bool ProcessMessage(nsWindow* aWindow, UINT aMessage,
|
|
|
|
WPARAM& aWParam, LPARAM& aLParam,
|
2013-07-18 01:12:31 -07:00
|
|
|
MSGResult& aResult);
|
2013-02-24 20:00:05 -08:00
|
|
|
|
2013-02-24 20:00:05 -08:00
|
|
|
/**
|
|
|
|
* When there is a composition, returns true. Otherwise, false.
|
|
|
|
*/
|
|
|
|
static bool IsComposing();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When there is a composition and it's in the window, returns true.
|
|
|
|
* Otherwise, false.
|
|
|
|
*/
|
|
|
|
static bool IsComposingOn(nsWindow* aWindow);
|
|
|
|
|
2013-02-24 20:00:06 -08:00
|
|
|
/**
|
|
|
|
* Notifies IME of the notification (a request or an event).
|
|
|
|
*/
|
|
|
|
static nsresult NotifyIME(nsWindow* aWindow,
|
|
|
|
NotificationToIME aNotification);
|
|
|
|
|
2013-02-24 20:00:06 -08:00
|
|
|
/**
|
|
|
|
* Notifies IME of text change in the focused editable content.
|
|
|
|
*/
|
|
|
|
static nsresult NotifyIMEOfTextChange(uint32_t aStart,
|
|
|
|
uint32_t aOldEnd,
|
|
|
|
uint32_t aNewEnd);
|
|
|
|
|
2013-02-24 20:00:06 -08:00
|
|
|
/**
|
|
|
|
* Returns update preferences.
|
|
|
|
*/
|
|
|
|
static nsIMEUpdatePreference GetUpdatePreference();
|
|
|
|
|
2013-02-24 20:00:06 -08:00
|
|
|
/**
|
2013-02-24 20:00:06 -08:00
|
|
|
* Returns IME open state on the window.
|
2013-02-24 20:00:06 -08:00
|
|
|
*/
|
|
|
|
static bool GetOpenState(nsWindow* aWindow);
|
|
|
|
|
2013-02-24 20:00:06 -08:00
|
|
|
/**
|
|
|
|
* Called when the window is destroying.
|
|
|
|
*/
|
|
|
|
static void OnDestroyWindow(nsWindow* aWindow);
|
|
|
|
|
2013-02-24 20:00:06 -08:00
|
|
|
/**
|
|
|
|
* Called when nsIWidget::SetInputContext() is called before the window's
|
|
|
|
* InputContext is modified actually.
|
|
|
|
*/
|
2013-03-26 17:04:02 -07:00
|
|
|
static void SetInputContext(nsWindow* aWindow,
|
|
|
|
InputContext& aInputContext,
|
|
|
|
const InputContextAction& aAction);
|
2013-02-24 20:00:06 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the window is created.
|
|
|
|
*/
|
|
|
|
static void InitInputContext(nsWindow* aWindow, InputContext& aInputContext);
|
|
|
|
|
2013-02-24 20:00:05 -08:00
|
|
|
#ifdef DEBUG
|
|
|
|
/**
|
|
|
|
* Returns true when current keyboard layout has IME. Otherwise, false.
|
|
|
|
*/
|
|
|
|
static bool CurrentKeyboardLayoutHasIME();
|
|
|
|
#endif // #ifdef DEBUG
|
|
|
|
|
2013-02-24 20:00:05 -08:00
|
|
|
private:
|
|
|
|
#ifdef NS_ENABLE_TSF
|
2013-06-27 09:06:45 -07:00
|
|
|
typedef HRESULT (WINAPI *SetInputScopesFunc)(HWND windowHandle,
|
2013-04-29 08:41:45 -07:00
|
|
|
const InputScope *inputScopes,
|
|
|
|
UINT numInputScopes,
|
|
|
|
wchar_t **phrase_list,
|
|
|
|
UINT numPhraseList,
|
|
|
|
wchar_t *regExp,
|
|
|
|
wchar_t *srgs);
|
|
|
|
static SetInputScopesFunc sSetInputScopes;
|
|
|
|
static void SetInputScopeForIMM32(nsWindow* aWindow,
|
|
|
|
const nsAString& aHTMLInputType);
|
2013-02-24 20:00:05 -08:00
|
|
|
static bool sIsInTSFMode;
|
2014-01-13 18:00:59 -08:00
|
|
|
// If sIMMEnabled is false, any IME messages are not handled in TSF mode.
|
|
|
|
// Additionally, IME context is always disassociated from focused window.
|
|
|
|
static bool sIsIMMEnabled;
|
2013-02-24 20:00:07 -08:00
|
|
|
static bool sPluginHasFocus;
|
|
|
|
|
|
|
|
static bool IsTSFAvailable() { return (sIsInTSFMode && !sPluginHasFocus); }
|
2013-02-24 20:00:05 -08:00
|
|
|
#endif // #ifdef NS_ENABLE_TSF
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // #ifndef WinIMEHandler_h_
|