mirror of https://github.com/adamdruppe/arsd.git
minimum xic support for minigui input proxy
This commit is contained in:
parent
b673a09882
commit
d52f9ad0ff
|
@ -8171,6 +8171,8 @@ class Window : Widget {
|
||||||
dispatchCharEvent(e);
|
dispatchCharEvent(e);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
this.inputProxy.populateXic();
|
||||||
// done
|
// done
|
||||||
//+/
|
//+/
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 |
|
||||||
|
|
Loading…
Reference in New Issue