Import Tk 8.6.8

This commit is contained in:
Cheryl Sabella
2018-02-22 14:31:15 -05:00
parent b1c28856bb
commit 8e57feeeb9
193 changed files with 6172 additions and 4033 deletions

View File

@@ -356,6 +356,7 @@ CreateXIC(
/* XCreateIC failed. */
return;
}
winPtr->ximGeneration = dispPtr->ximGeneration;
/*
* Adjust the window's event mask if the IM requires it.
@@ -1288,6 +1289,14 @@ Tk_HandleEvent(
*/
#ifdef TK_USE_INPUT_METHODS
/*
* If the XIC has been invalidated, it must be recreated.
*/
if (winPtr->dispPtr->ximGeneration != winPtr->ximGeneration) {
winPtr->flags &= ~TK_CHECKED_IC;
winPtr->inputContext = NULL;
}
if ((winPtr->dispPtr->flags & TK_DISPLAY_USE_IM)) {
if (!(winPtr->flags & (TK_CHECKED_IC|TK_ALREADY_DEAD))) {
winPtr->flags |= TK_CHECKED_IC;
@@ -1295,7 +1304,9 @@ Tk_HandleEvent(
CreateXIC(winPtr);
}
}
if (eventPtr->type == FocusIn && winPtr->inputContext != NULL) {
if ((eventPtr->type == FocusIn) &&
(winPtr->dispPtr->inputMethod != NULL) &&
(winPtr->inputContext != NULL)) {
XSetICFocus(winPtr->inputContext);
}
}