minimum xic support for minigui input proxy

This commit is contained in:
Adam D. Ruppe 2022-11-27 17:32:07 -05:00
parent b673a09882
commit d52f9ad0ff
2 changed files with 17 additions and 11 deletions

View File

@ -8171,6 +8171,8 @@ class Window : Widget {
dispatchCharEvent(e); dispatchCharEvent(e);
}, },
); );
this.inputProxy.populateXic();
// done // done
//+/ //+/
} }

View File

@ -14764,17 +14764,7 @@ mixin DynamicLoad!(XRandr, "Xrandr", 2, XRandrLibrarySuccessfullyLoaded) XRandrL
// input context // input context
//TODO: create this only for top-level windows, and reuse that? //TODO: create this only for top-level windows, and reuse that?
if (XDisplayConnection.xim !is null) { populateXic();
xic = XCreateIC(XDisplayConnection.xim,
/*XNInputStyle*/"inputStyle".ptr, XIMPreeditNothing|XIMStatusNothing,
/*XNClientWindow*/"clientWindow".ptr, window,
/*XNFocusWindow*/"focusWindow".ptr, window,
null);
if (xic is null) {
import core.stdc.stdio : stderr, fprintf;
fprintf(stderr, "XCreateIC failed for window %u\n", cast(uint)window);
}
}
if (sdpyWindowClassStr is null) loadBinNameToWindowClassName(); if (sdpyWindowClassStr is null) loadBinNameToWindowClassName();
if (sdpyWindowClassStr is null) sdpyWindowClass = "DSimpleWindow"; if (sdpyWindowClassStr is null) sdpyWindowClass = "DSimpleWindow";
@ -14947,6 +14937,20 @@ mixin DynamicLoad!(XRandr, "Xrandr", 2, XRandrLibrarySuccessfullyLoaded) XRandrL
} }
} }
void populateXic() {
if (XDisplayConnection.xim !is null) {
xic = XCreateIC(XDisplayConnection.xim,
/*XNInputStyle*/"inputStyle".ptr, XIMPreeditNothing|XIMStatusNothing,
/*XNClientWindow*/"clientWindow".ptr, window,
/*XNFocusWindow*/"focusWindow".ptr, window,
null);
if (xic is null) {
import core.stdc.stdio : stderr, fprintf;
fprintf(stderr, "XCreateIC failed for window %u\n", cast(uint)window);
}
}
}
void selectDefaultInput(bool forceIncludeMouseMotion) { void selectDefaultInput(bool forceIncludeMouseMotion) {
auto mask = EventMask.ExposureMask | auto mask = EventMask.ExposureMask |
EventMask.KeyPressMask | EventMask.KeyPressMask |