melak47
melak47
Have a look at this: https://msdn.microsoft.com/en-us/library/windows/desktop/bb688195(v=vs.85).aspx This lets you retain the native buttons, but puts everything into the client area. Then you can paint over it anywhere using OpenGL, D3D,...
> However, the new mechanism can (and by default, does) use a generator-expression in its value, so I'm not sure how conan.cmake should evaluate it (i.e. which of its possible...
Is removing two comment blocks (one in ``, one in ``) really worth trying to parse them with regex patterns, while over 650 lines of `//` comments are preserved?
Personally I tend to avoid the "Problems" view in eclipse and the "Error" list in Visual Studio due to IDE noise (IntelliSense/Indexer warnings for example). This doesn't seem to be...
Windows now supports multiple distributions natively. The downside is that this project doesn't work out of the box anymore. You need to create a launcher for your custom distro: https://github.com/Microsoft/WSL-DistroLauncher...
That's curious. I did some debugging, and I see the same behavior. I guess when `WM_NCCALCSIZE` gets sent, the system is giving us the *proposed* window rect, meaning it's not...
I think that's because windows treats any "popup" window that covers the entire screen (with no non-client area on screen) as a full-screen window (like a game in a borderless...
The hit test function in my BorderlessWindow returns HT_CAPTION for the client area. Not sure if that's what you want, since that's where the web view content is.
I'll be honest, I have no idea how this web view thing works, or at which level it may be hijacking the input
It seems the webview swallows nearly all the input when the mouse is over it. Only clicks seem to pass through, so there never are any WM_NCHITTEST messages to handle...