Skip to content

Commit 5149280

Browse files
committed
include Desktop ALL, added filter (#1)
list VD w. windows Desktop ALL w. filter.ahk
1 parent 9b835d2 commit 5149280

File tree

1 file changed

+58
-22
lines changed

1 file changed

+58
-22
lines changed

other examples/list VD w. windows Desktop ALL w. filter.ahk

+58-22
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
1+
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
22
#SingleInstance, force
3-
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
4-
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
3+
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
4+
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
55
SetBatchLines, -1
66
#KeyHistory 0
77
ListLines Off
@@ -22,31 +22,46 @@ Loop %windows%
2222
IfEqual, False, % VD_isValidWindow(id), continue
2323
ahk_idId := "ahk_id " id
2424
desktopOfWindow:=VD_getDesktopOfWindow(ahk_idId)
25-
if (desktopOfWindow)
26-
{
27-
whichDesktop:="Desktop " desktopOfWindow
2825

29-
;useful
30-
WinGetTitle, OutputTitle, %ahk_idId%
31-
WinGetClass, OutputClass, %ahk_idId%
32-
WinGet, OutputEXE, ProcessName, %ahk_idId%
33-
useFulStr:="`nWinTitle: " OutputTitle "`nclass: " OutputClass "`nEXE: " OutputEXE
26+
if (!desktopOfWindow)
27+
desktopOfWindow:="ALL"
3428

35-
;not that useful
36-
WinGet, OutputFULLPATH, ProcessPath, %ahk_idId%
37-
WinGet, OutputPID, PID, %ahk_idId%
29+
whichDesktop:="Desktop " desktopOfWindow
3830

39-
notThatUseFulStr:="`n`nFULLPATH: " OutputFULLPATH "`nPID: " OutputPID "`nID: " id
40-
WinGet, OutputVar, ProcessPath, A
31+
;useful
32+
WinGetTitle, OutputTitle, %ahk_idId%
33+
WinGetClass, OutputClass, %ahk_idId%
34+
WinGet, OutputEXE, ProcessName, %ahk_idId%
35+
useFulStr:="`nWinTitle: " OutputTitle "`nclass: " OutputClass "`nEXE: " OutputEXE
4136

42-
arrayOfWindowsInfo.Push({desktopNum:desktopOfWindow, str:whichDesktop useFulStr notThatUseFulStr})
43-
}
37+
;not that useful
38+
WinGet, OutputFULLPATH, ProcessPath, %ahk_idId%
39+
WinGet, OutputPID, PID, %ahk_idId%
40+
41+
notThatUseFulStr:="`n`nFULLPATH: " OutputFULLPATH "`nPID: " OutputPID "`nID: " id
42+
WinGet, OutputVar, ProcessPath, A
43+
44+
arrayOfWindowsInfo.Push({desktopNum:desktopOfWindow
45+
, str:whichDesktop useFulStr notThatUseFulStr
46+
, WinTitle: OutputTitle
47+
, class: OutputClass
48+
, EXE: OutputEXE})
4449
}
4550
DetectHiddenWindows, off
4651

47-
;below is just to print it
52+
;filter it
53+
filter:=[{EXE:"mbamtray.exe"}
54+
,{WinTitle:"Microsoft Store", EXE:"ApplicationFrameHost.exe"}
55+
,{EXE:"WinStore.App.exe"}
56+
,{WinTitle:"Settings", EXE:"ApplicationFrameHost.exe"}
57+
,{EXE:"SystemSettings.exe"}
58+
,{EXE:"WindowsInternal.ComposableShell.Experiences.TextInput.InputApp.exe"}]
59+
60+
filterArrOfObj(arrayOfWindowsInfo,filter)
61+
4862
arrayOfWindowsInfo:=sortArrByKey(arrayOfWindowsInfo,"desktopNum")
4963

64+
;below is just to print it
5065
ArrayStreamArray:=[]
5166
for k, v in arrayOfWindowsInfo {
5267
ArrayStreamArray.push(v["str"])
@@ -55,7 +70,6 @@ for k, v in arrayOfWindowsInfo {
5570
streamArray(ArrayStreamArray,1100,200)
5671
return
5772

58-
5973
streamArray(Byref arr,Byref width,Byref height)
6074
{
6175
global ArrayStreamArray, ArrayStreamIndex, ArrayStreamGuiId, ArrayStreamTextId, ArrayStreamIndexTextId, ArrayStreamLength
@@ -111,7 +125,6 @@ ArrayStreamGoRight:
111125
return
112126
#if
113127

114-
115128
sortArrByKey(ar,byref key) {
116129
str=
117130
for k,v in ar {
@@ -134,7 +147,30 @@ sortArrByKey(ar,byref key) {
134147
num:=SubStr(str, plusPos + 1, barPos - plusPos - 1)
135148
finalAr.Push(ar[num])
136149
}
137-
return finalAr
150+
return finalAr
151+
}
152+
153+
filterArrOfObj(arr, filter)
154+
{
155+
;reverse iterate to remove
156+
i := arr.Length() + 1
157+
while (--i)
158+
{
159+
v:=arr[i]
160+
reverseI := length-
161+
162+
for n, obj in filter {
163+
for key, value in obj {
164+
165+
if (value!=v[key])
166+
continue 2
167+
168+
}
169+
;if respects the filter, all values match values of filter
170+
arr.remove(i)
171+
continue
172+
}
173+
}
138174
}
139175

140176
f3::Exitapp

0 commit comments

Comments
 (0)