|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
WM_IME_COMPOSITION
The WM_IME_COMPOSITION message is sent to an application when the IME changes composition status as a result of a key stroke. An application should process this message if it displays composition characters itself. Otherwise, it should send the message to the IME window.
chDBCS = (WORD) wParam; fFlags = (BOOL) lParam;
Parameters
chDBCS
DBCS character representing the latest change to the composition string.
fFlags
Change flag, indicating how the composition string or character changed. This parameter can be one or more of the following values:
GCS_COMPSTR GCS_SETCURSORPOS GCS_COMPATTR GCS_RESULTSTR GCS_COMPCLAUSE GCS_RESULTCLAUSE GCS_COMPREADSTR GCS_RESULTREADSTR GCS_COMPREADATTR GCS_RESULTREADCLAUSE GCS_COMPREADCLAUSE GCR_ERRORSTR GCS_TYPINGINFO GCR_INFOSTR
Return Values
No return value.
Remarks
For more information about these values, see the "IME Composition String Values" table in Input Method Editor Constants. The fFlags parameter can also be a combination of the following values:
Value Meaning CS_INSERTCHAR Specifies that the given composition character should be inserted at the current insertion point. An application should display the composition character if it processes this message. CS_NOMOVECARET Specifies that the application must not move the caret position as a result of processing the message. For example, if an IME specifies a combination of CS_INSERTCHAR and CS_NOMOVECARET, the application should insert the given character at the current caret position but should not move caret to the next position. A subsequent WM_IME_COMPOSITION message with GCS_RESULTSTR will replace this character.
If the application has created an IME window, it should pass this message to that window. The DefWindowProc function processes this message by passing it to the default IME window.The IME window processes this message by updating its appearance based on the change flag given. An application can call ImmGetCompositionString to retrieve the new composition status. If none of the GCS_ values are set, the message indicates that the current composition has been canceled and applications that draw the composition string should delete the string.
See Also
DefWindowProc, ImmGetCompositionString
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
WM_IME_COMPOSITION
Сообщение WM_IME_COMPOSITION послано в приложение когда статус композиции изменений IME в результате ключевого удара. Приложение должно обрабатывать это сообщение если оно отображает сами символы композиции. В противном случае, это должно послать сообщение в окно IME.
chDBCS = (СЛОВО) wParam; fFlags = (BOOL) lParam;
Параметры
chDBCS
СИМВОЛ DBCS, представляющий самое последнее изменение в строку композиции.
fFlags
Флаг Изменения, указывающий как строка композиции или символ изменялся. Этот параметр может быть одно или более из следующего величин:
GCS_COMPSTR GCS_SETCURSORPOS GCS_COMPATTR GCS_RESULTSTR GCS_COMPCLAUSE GCS_RESULTCLAUSE GCS_COMPREADSTR GCS_RESULTREADSTR GCS_COMPREADATTR GCS_RESULTREADCLAUSE GCS_COMPREADCLAUSE GCR_ERRORSTR GCS_TYPINGINFO GCR_INFOSTR
Обратные Величины
Никакая обратная величина.
Замечания
Более подробно об этих величинах, смотри стол "Величин Строки Композиции IME" в Константах Редактора Входного Метода. Параметр fFlags может также быть комбинацией следующего величин:
Значение Величины CS_INSERTCHAR Определяет, что данный символ композиции будет включен в текущей точке введения. Приложение должно отображать символ композиции если оно обрабатывает это сообщение. CS_NOMOVECARET Определяет, что приложение не должно перемещать символ ^ позиции в результате обработки сообщения. Например, если IME определяет комбинацию CS_INSERTCHAR и CS_NOMOVECARET, приложение должно включить данный символ в текущем символе ^ позиции но не должно перемещать символ ^ на следующую позицию. Последующее сообщение WM_IME_COMPOSITION с GCS_RESULTSTR заменит этот символ.
Если приложение создало бы окно IME, оно должно передавать это сообщение в это окно. Функция DefWindowProc обрабатывает это сообщение передавая этому во встроенное окно IME.Окно IME обрабатывает это сообщение обновляя появление основывался на данном флаге изменения. Приложение может вызвать ImmGetCompositionString, чтобы извлекать новый статус композиции. Если ни одна из величин GCS_ не установлены, сообщение указывает, что текущая композиция отменена и приложения, которые делают строкой композиции должно удалить строку.
Смотри Также
DefWindowProc, ImmGetCompositionString
|
|
|
|
| |