Skip to content

Commit 7c0a466

Browse files
committed
_activateWindowUnderFilterVD; #39
1 parent 5862e5e commit 7c0a466

File tree

1 file changed

+36
-14
lines changed

1 file changed

+36
-14
lines changed

_VD.ahk

+36-14
Original file line numberDiff line numberDiff line change
@@ -237,31 +237,30 @@ class VD {
237237
}
238238

239239
goToDesktopNum(desktopNum) { ; Lej77 https://github.com/Grabacr07/VirtualDesktop/pull/23#issuecomment-334918711
240-
Gui VD_animation_gui:New, % "-Border -SysMenu +Owner -Caption +HwndVD_animation_gui_hwnd"
241-
IVirtualDesktop := this._GetDesktops_Obj().GetAt(desktopNum)
242-
GetId:=this._vtable(IVirtualDesktop, 4)
243-
VarSetCapacity(GUID_Desktop, 16)
244-
DllCall(GetId, "Ptr", IVirtualDesktop, "Ptr", &GUID_Desktop)
245-
DllCall(this.MoveWindowToDesktop, "Ptr", this.IVirtualDesktopManager, "Ptr", VD_animation_gui_hwnd, "Ptr", &GUID_Desktop)
246240

247241
Gui VD_active_gui:New, % "-Border -SysMenu +Owner -Caption +HwndVD_active_gui_hwnd"
248242
DllCall("ShowWindow","Ptr",VD_active_gui_hwnd,"Int",1) ;you can only Show gui that's in another VD if a gui of same owned/process is already active
249243

250-
251244
this._WinActivateForceForceForce(VD_active_gui_hwnd) ;specifically for Teams.exe
252245

253-
DllCall("ShowWindow","Ptr",VD_animation_gui_hwnd,"Int",1) ;after gui on current desktop owned by current process became active window, Show gui on different desktop owned by current process
246+
targetEmpty:=false
247+
if (this._activateWindowUnderFilterVD(desktopNum)==-1) {
248+
targetEmpty:=true
249+
Gui VD_animation_gui:New, % "-Border -SysMenu +Owner -Caption +HwndVD_animation_gui_hwnd"
250+
IVirtualDesktop := this._GetDesktops_Obj().GetAt(desktopNum)
251+
GetId:=this._vtable(IVirtualDesktop, 4)
252+
VarSetCapacity(GUID_Desktop, 16)
253+
DllCall(GetId, "Ptr", IVirtualDesktop, "Ptr", &GUID_Desktop)
254+
DllCall(this.MoveWindowToDesktop, "Ptr", this.IVirtualDesktopManager, "Ptr", VD_animation_gui_hwnd, "Ptr", &GUID_Desktop)
255+
DllCall("ShowWindow","Ptr",VD_animation_gui_hwnd,"Int",1) ;after gui on current desktop owned by current process became active window, Show gui on different desktop owned by current process
256+
}
254257
loop 20 {
255258
if (this.getCurrentDesktopNum()==desktopNum) { ; wildest hack ever..
256-
257-
; "ahk_class TPUtilWindow ahk_exe HxD.exe" instead of "ahk_class WorkerW ahk_exe explorer.exe"
258-
if (this._activateWindowUnder(VD_animation_gui_hwnd)==-1) {
259+
if (targetEmpty) {
259260
this._activateDesktopBackground()
261+
Gui VD_animation_gui:Destroy
260262
}
261-
262-
Gui VD_animation_gui:Destroy
263263
Gui VD_active_gui:Destroy
264-
265264
break
266265
}
267266
Sleep 25
@@ -893,6 +892,29 @@ class VD {
893892
DllCall("SetForegroundWindow","Ptr",WinExist("ahk_class Progman ahk_exe explorer.exe"))
894893
}
895894

895+
_activateWindowUnderFilterVD(desktopNum) {
896+
bak_DetectHiddenWindows:=A_DetectHiddenWindows
897+
DetectHiddenWindows, on
898+
returnValue:=-1
899+
WinGet, outHwndList, List
900+
loop % outHwndList {
901+
theHwnd:=outHwndList%A_Index%
902+
if (pView:=this._isValidWindow(theHwnd)) {
903+
WinGet, OutputVar_MinMax, MinMax, % "ahk_id " theHwnd
904+
if (!(OutputVar_MinMax==-1)) { ;not Minimized
905+
if (this._desktopNum_from_Hwnd(theHwnd) == desktopNum) {
906+
; WinActivate % "ahk_id " theHwnd
907+
DllCall("SetForegroundWindow","Ptr",theHwnd)
908+
returnValue:=theHwnd
909+
break
910+
}
911+
}
912+
}
913+
}
914+
DetectHiddenWindows % bak_DetectHiddenWindows
915+
return returnValue
916+
}
917+
896918
_activateWindowUnder(excludeHwnd:=-1) {
897919
bak_DetectHiddenWindows:=A_DetectHiddenWindows
898920
DetectHiddenWindows, off

0 commit comments

Comments
 (0)