2023-04-01 19:59:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2023 Rémi Bernon for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2023-05-11 06:22:08 +00:00
|
|
|
#include "ntstatus.h"
|
|
|
|
#define WIN32_NO_STATUS
|
2023-04-01 19:59:00 +00:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
#include "winreg.h"
|
|
|
|
|
|
|
|
#include "imm.h"
|
|
|
|
#include "immdev.h"
|
|
|
|
#include "ntuser.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/list.h"
|
|
|
|
|
|
|
|
extern HMODULE imm32_module;
|
|
|
|
|
|
|
|
/* MSIME messages */
|
|
|
|
extern UINT WM_MSIME_SERVICE;
|
|
|
|
extern UINT WM_MSIME_RECONVERTOPTIONS;
|
|
|
|
extern UINT WM_MSIME_MOUSE;
|
|
|
|
extern UINT WM_MSIME_RECONVERTREQUEST;
|
|
|
|
extern UINT WM_MSIME_RECONVERT;
|
|
|
|
extern UINT WM_MSIME_QUERYPOSITION;
|
|
|
|
extern UINT WM_MSIME_DOCUMENTFEED;
|
2023-04-05 22:19:42 +00:00
|
|
|
|
|
|
|
static const char *debugstr_wm_ime( UINT msg )
|
|
|
|
{
|
|
|
|
switch (msg)
|
|
|
|
{
|
|
|
|
case WM_IME_STARTCOMPOSITION: return "WM_IME_STARTCOMPOSITION";
|
|
|
|
case WM_IME_ENDCOMPOSITION: return "WM_IME_ENDCOMPOSITION";
|
|
|
|
case WM_IME_COMPOSITION: return "WM_IME_COMPOSITION";
|
|
|
|
case WM_IME_SETCONTEXT: return "WM_IME_SETCONTEXT";
|
|
|
|
case WM_IME_NOTIFY: return "WM_IME_NOTIFY";
|
|
|
|
case WM_IME_CONTROL: return "WM_IME_CONTROL";
|
|
|
|
case WM_IME_COMPOSITIONFULL: return "WM_IME_COMPOSITIONFULL";
|
|
|
|
case WM_IME_SELECT: return "WM_IME_SELECT";
|
|
|
|
case WM_IME_CHAR: return "WM_IME_CHAR";
|
|
|
|
case WM_IME_REQUEST: return "WM_IME_REQUEST";
|
|
|
|
case WM_IME_KEYDOWN: return "WM_IME_KEYDOWN";
|
|
|
|
case WM_IME_KEYUP: return "WM_IME_KEYUP";
|
|
|
|
default:
|
|
|
|
if (msg == WM_MSIME_SERVICE) return "WM_MSIME_SERVICE";
|
|
|
|
else if (msg == WM_MSIME_RECONVERTOPTIONS) return "WM_MSIME_RECONVERTOPTIONS";
|
|
|
|
else if (msg == WM_MSIME_MOUSE) return "WM_MSIME_MOUSE";
|
|
|
|
else if (msg == WM_MSIME_RECONVERTREQUEST) return "WM_MSIME_RECONVERTREQUEST";
|
|
|
|
else if (msg == WM_MSIME_RECONVERT) return "WM_MSIME_RECONVERT";
|
|
|
|
else if (msg == WM_MSIME_QUERYPOSITION) return "WM_MSIME_QUERYPOSITION";
|
|
|
|
else if (msg == WM_MSIME_DOCUMENTFEED) return "WM_MSIME_DOCUMENTFEED";
|
|
|
|
return wine_dbg_sprintf( "%#x", msg );
|
|
|
|
}
|
|
|
|
}
|