mirror of https://github.com/buggins/dlangui.git
Fix #660 Hack to drag & drop when running as admin
This commit is contained in:
parent
9b0e0a4bfa
commit
b83c59ca6e
|
@ -213,6 +213,10 @@ static if (ENABLE_OPENGL) {
|
||||||
|
|
||||||
const uint CUSTOM_MESSAGE_ID = WM_USER + 1;
|
const uint CUSTOM_MESSAGE_ID = WM_USER + 1;
|
||||||
|
|
||||||
|
// HACK: To allow Drag & Drop when running as admin
|
||||||
|
extern(Windows) BOOL ChangeWindowMessageFilter(UINT message, DWORD dwFlag);
|
||||||
|
enum MSGFLT_ADD = 1;
|
||||||
|
|
||||||
static if (ENABLE_OPENGL) {
|
static if (ENABLE_OPENGL) {
|
||||||
|
|
||||||
alias PFNWGLCHOOSEPIXELFORMATARBPROC = extern(C) BOOL function(HDC hdc, const(int)* attributes, const(FLOAT)* fAttributes, UINT maxFormats, int* pixelFormat, UINT *numFormats);
|
alias PFNWGLCHOOSEPIXELFORMATARBPROC = extern(C) BOOL function(HDC hdc, const(int)* attributes, const(FLOAT)* fAttributes, UINT maxFormats, int* pixelFormat, UINT *numFormats);
|
||||||
|
@ -494,6 +498,12 @@ class Win32Window : Window {
|
||||||
GetWindowRect(_hwnd, &rect);
|
GetWindowRect(_hwnd, &rect);
|
||||||
handleWindowStateChange(WindowState.unspecified, Rect(rect.left, rect.top, _dx, _dy));
|
handleWindowStateChange(WindowState.unspecified, Rect(rect.left, rect.top, _dx, _dy));
|
||||||
|
|
||||||
|
// HACK: This allows drag and drop when ran as admin. Preferable solution is to implement IDragDrop as MS suggests
|
||||||
|
// See https://stackoverflow.com/questions/64485600/wm-dropfiles-not-called-on-x64
|
||||||
|
ChangeWindowMessageFilter (WM_DROPFILES, MSGFLT_ADD);
|
||||||
|
ChangeWindowMessageFilter (WM_COPYDATA, MSGFLT_ADD);
|
||||||
|
ChangeWindowMessageFilter (0x0049, MSGFLT_ADD);
|
||||||
|
|
||||||
if (platform.defaultWindowIcon.length != 0)
|
if (platform.defaultWindowIcon.length != 0)
|
||||||
windowIcon = drawableCache.getImage(platform.defaultWindowIcon);
|
windowIcon = drawableCache.getImage(platform.defaultWindowIcon);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue