2015-01-25 17:07:51 +00:00
|
|
|
/*
|
2016-03-09 18:34:57 +00:00
|
|
|
bug.n -- tiling window management
|
2018-01-15 15:55:50 +00:00
|
|
|
Copyright (c) 2010-2018 Joshua Fuhs, joten
|
2016-03-09 18:34:57 +00:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
@license GNU General Public License version 3
|
|
|
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
|
|
|
|
2018-01-15 17:59:48 +00:00
|
|
|
@version 9.0.2
|
2015-01-25 17:07:51 +00:00
|
|
|
*/
|
|
|
|
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_activate(wndId) {
|
|
|
|
If Window_isHung(wndId) {
|
|
|
|
Debug_logMessage("DEBUG[2] Window_activate: Potentially hung window " . wndId, 2)
|
|
|
|
Return, 1
|
|
|
|
} Else {
|
|
|
|
WinActivate, ahk_id %wndId%
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
If (wndId != aWndId)
|
|
|
|
Return, 1
|
|
|
|
Else
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Window_close(wndId) {
|
|
|
|
If Window_isHung(wndId) {
|
|
|
|
Debug_logMessage("DEBUG[2] Window_close: Potentially hung window " . wndId, 2)
|
|
|
|
Return, 1
|
|
|
|
} Else {
|
|
|
|
WinClose, ahk_id %wndId%
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-25 17:07:51 +00:00
|
|
|
;; Given a ghost window, try to find its body. This is only known to work on Windows 7
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_findHung(ghostWndId) {
|
2015-01-25 17:07:51 +00:00
|
|
|
Global Config_ghostWndSubString
|
|
|
|
|
|
|
|
WinGetTitle, ghostWndTitle, ahk_id %ghostWndId%
|
|
|
|
StringReplace, ghostWndTitle, ghostWndTitle, %Config_ghostWndSubString%,
|
|
|
|
WinGetPos, ghostWndX, ghostWndY, ghostWndW, ghostWndH, ahk_id %ghostWndId%
|
|
|
|
|
|
|
|
SetTitleMatchMode, 2
|
|
|
|
WinGet, wndId, List, %ghostWndTitle%
|
|
|
|
Loop, % wndId {
|
|
|
|
If (wndId%A_Index% = ghostWndId)
|
|
|
|
Continue
|
|
|
|
WinGetPos, wndX, wndY, wndW, wndH, % "ahk_id" wndId%A_Index%
|
|
|
|
If (wndX = ghostWndX) And (wndY = ghostWndY) And (wndW = ghostWndW) And (wndH = ghostWndH)
|
|
|
|
Return, wndId%A_Index%
|
|
|
|
}
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
|
2015-03-05 20:06:18 +00:00
|
|
|
Window_getHidden(wndId, ByRef wndClass, ByRef wndTitle) {
|
|
|
|
WinGetClass, wndClass, ahk_id %wndId%
|
|
|
|
WinGetTitle, wndTitle, ahk_id %wndId%
|
|
|
|
If Not wndClass And Not wndTitle {
|
|
|
|
detectHiddenWnds := A_DetectHiddenWindows
|
|
|
|
DetectHiddenWindows, On
|
|
|
|
WinGetClass, wndClass, ahk_id %wndId%
|
|
|
|
WinGetTitle, wndTitle, ahk_id %wndId%
|
|
|
|
DetectHiddenWindows, %detectHiddenWnds%
|
|
|
|
;; If now wndClass Or wndTitle, but Not wndClass And Not wndTitle before, wnd is hidden.
|
|
|
|
Return, (wndClass Or wndTitle)
|
|
|
|
} Else
|
|
|
|
Return, False
|
|
|
|
}
|
|
|
|
|
2016-01-19 18:50:43 +00:00
|
|
|
Window_getPosEx(hWindow, ByRef X = "", ByRef Y = "", ByRef Width = "", ByRef Height = "", ByRef Offset_X = "", ByRef Offset_Y = "") {
|
|
|
|
Static Dummy5693, RECTPlus, S_OK := 0x0, DWMWA_EXTENDED_FRAME_BOUNDS := 9
|
|
|
|
|
|
|
|
;-- Workaround for AutoHotkey Basic
|
|
|
|
PtrType := (A_PtrSize=8) ? "Ptr" : "UInt"
|
|
|
|
|
|
|
|
;-- Get the window's dimensions
|
|
|
|
; Note: Only the first 16 bytes of the RECTPlus structure are used by the
|
|
|
|
; DwmGetWindowAttribute and GetWindowRect functions.
|
|
|
|
VarSetCapacity(RECTPlus, 24,0)
|
|
|
|
DWMRC := DllCall("dwmapi\DwmGetWindowAttribute"
|
|
|
|
,PtrType,hWindow ;-- hwnd
|
|
|
|
,"UInt",DWMWA_EXTENDED_FRAME_BOUNDS ;-- dwAttribute
|
|
|
|
,PtrType,&RECTPlus ;-- pvAttribute
|
|
|
|
,"UInt",16) ;-- cbAttribute
|
|
|
|
|
|
|
|
If (DWMRC <> S_OK) {
|
|
|
|
If ErrorLevel in -3, -4 ;-- Dll or function not found (older than Vista)
|
|
|
|
{
|
|
|
|
;-- Do nothing else (for now)
|
|
|
|
} Else
|
|
|
|
outputdebug,
|
|
|
|
(LTrim Join`s
|
|
|
|
Function: %A_ThisFunc% -
|
|
|
|
Unknown error calling "dwmapi\DwmGetWindowAttribute".
|
|
|
|
RC = %DWMRC%,
|
|
|
|
ErrorLevel = %ErrorLevel%,
|
|
|
|
A_LastError = %A_LastError%.
|
|
|
|
"GetWindowRect" used instead.
|
|
|
|
)
|
|
|
|
|
|
|
|
;-- Collect the position and size from "GetWindowRect"
|
|
|
|
DllCall("GetWindowRect", PtrType, hWindow, PtrType, &RECTPlus)
|
|
|
|
}
|
|
|
|
|
|
|
|
;-- Populate the output variables
|
|
|
|
X := Left :=NumGet(RECTPlus, 0, "Int")
|
|
|
|
Y := Top :=NumGet(RECTPlus, 4, "Int")
|
|
|
|
Right :=NumGet(RECTPlus, 8, "Int")
|
|
|
|
Bottom :=NumGet(RECTPlus, 12, "Int")
|
|
|
|
Width :=Right-Left
|
|
|
|
Height :=Bottom-Top
|
|
|
|
OffSet_X := 0
|
|
|
|
OffSet_Y := 0
|
|
|
|
|
|
|
|
;-- If DWM is not used (older than Vista or DWM not enabled), we're done
|
|
|
|
If (DWMRC <> S_OK)
|
|
|
|
Return &RECTPlus
|
|
|
|
|
|
|
|
;-- Collect dimensions via GetWindowRect
|
|
|
|
VarSetCapacity(RECT, 16, 0)
|
|
|
|
DllCall("GetWindowRect", PtrType, hWindow, PtrType, &RECT)
|
|
|
|
GWR_Width := NumGet(RECT, 8, "Int") - NumGet(RECT, 0, "Int") ;-- Right minus Left
|
|
|
|
GWR_Height := NumGet(RECT, 12, "Int") - NumGet(RECT, 4, "Int") ;-- Bottom minus Top
|
|
|
|
|
|
|
|
;-- Calculate offsets and update output variables
|
|
|
|
NumPut(Offset_X := (Width - GWR_Width) // 2, RECTPlus, 16, "Int")
|
|
|
|
NumPut(Offset_Y := (Height - GWR_Height) // 2, RECTPlus, 20, "Int")
|
|
|
|
Return &RECTPlus
|
|
|
|
}
|
|
|
|
;; unknown: WinGetPosEx (https://autohotkey.com/boards/viewtopic.php?t=3392; 2016-01-18: retrieved "Error 404 - File not found")
|
|
|
|
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_hide(wndId) {
|
|
|
|
If Window_isHung(wndId) {
|
|
|
|
Debug_logMessage("DEBUG[2] Window_hide: Potentially hung window " . wndId, 2)
|
|
|
|
Return, 1
|
|
|
|
} Else {
|
|
|
|
WinHide, ahk_id %wndId%
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-14 12:32:08 +00:00
|
|
|
Window_isChild(wndId) {
|
2016-04-12 19:16:11 +00:00
|
|
|
WS_CHILD = 0x40000000
|
2015-02-14 12:32:08 +00:00
|
|
|
WinGet, wndStyle, Style, ahk_id %wndId%
|
|
|
|
|
2016-04-12 19:16:11 +00:00
|
|
|
Return, wndStyle & WS_CHILD
|
2015-02-14 12:32:08 +00:00
|
|
|
}
|
|
|
|
|
2015-02-12 19:35:41 +00:00
|
|
|
Window_isElevated(wndId) {
|
|
|
|
WinGetTitle, wndTitle, ahk_id %wndId%
|
|
|
|
WinSetTitle, ahk_id %wndId%, , % wndTitle " "
|
|
|
|
WinGetTitle, newWndTitle, ahk_id %wndId%
|
2015-03-01 20:12:33 +00:00
|
|
|
WinSetTitle, ahk_id %wndId%, , % wndTitle
|
2015-02-12 19:35:41 +00:00
|
|
|
Return, (newWndTitle = wndTitle)
|
|
|
|
}
|
|
|
|
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_isGhost(wndId) {
|
2015-01-25 17:07:51 +00:00
|
|
|
Local wndClass, wndProc
|
|
|
|
|
|
|
|
WinGet, wndProc, ProcessName, ahk_id %wndId%
|
|
|
|
WinGetClass, wndClass, ahk_id %wndId%
|
|
|
|
If (wndProc = "dwm.exe") And (wndClass = "Ghost")
|
|
|
|
Return, 1
|
|
|
|
Else
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
|
|
|
|
;; 0 - Not hung
|
|
|
|
;; 1 - Hung
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_isHung(wndId) {
|
2015-03-01 20:28:41 +00:00
|
|
|
Local detectHidden, result, WM_NULL
|
2015-01-25 17:07:51 +00:00
|
|
|
|
|
|
|
WM_NULL = 0
|
2015-03-01 20:28:41 +00:00
|
|
|
detectHidden := A_DetectHiddenWindows
|
2015-01-25 17:07:51 +00:00
|
|
|
DetectHiddenWindows, On
|
|
|
|
SendMessage, WM_NULL, , , , ahk_id %wndId%
|
|
|
|
result := ErrorLevel
|
2015-03-01 20:28:41 +00:00
|
|
|
DetectHiddenWindows, %detectHidden%
|
2015-01-25 17:07:51 +00:00
|
|
|
|
|
|
|
If result
|
|
|
|
Return, 1
|
|
|
|
Else
|
|
|
|
Return, 0
|
|
|
|
}
|
2015-02-28 21:56:18 +00:00
|
|
|
|
|
|
|
Window_isNotVisible(wndId) {
|
|
|
|
WS_VISIBLE = 0x10000000
|
|
|
|
WinGet, wndStyle, Style, ahk_id %wndId%
|
|
|
|
If (wndStyle & WS_VISIBLE) {
|
|
|
|
WinGetPos, wndX, wndY, wndW, wndH, ahk_id %wndId%
|
|
|
|
hasDimensions := wndW And wndH
|
|
|
|
isOnMonitor := Monitor_get(wndX + 5, wndY + 5) Or Monitor_get(wndX + wndW - 5, wndY + 5) Or Monitor_get(wndX + wndW, wndY + wndH - 5) Or Monitor_get(wndX + 5, wndY + wndH - 5)
|
|
|
|
Return, (Not hasDimensions Or Not isOnMonitor)
|
|
|
|
} Else
|
|
|
|
Return, True
|
|
|
|
}
|
2015-01-25 17:07:51 +00:00
|
|
|
|
2015-02-01 19:02:08 +00:00
|
|
|
Window_isPopup(wndId) {
|
|
|
|
WS_POPUP = 0x80000000
|
|
|
|
WinGet, wndStyle, Style, ahk_id %wndId%
|
|
|
|
|
|
|
|
Return, wndStyle & WS_POPUP
|
|
|
|
}
|
|
|
|
|
2015-01-25 17:07:51 +00:00
|
|
|
Window_isProg(wndId) {
|
|
|
|
WinGetClass, wndClass, ahk_id %wndId%
|
|
|
|
WinGetTitle, wndTitle, ahk_id %wndId%
|
|
|
|
If Not (wndClass = "Progman") And Not (wndClass = "WorkerW") And Not (wndClass = "DesktopBackgroundClass")
|
|
|
|
And Not (wndClass = "AutoHotkeyGui" And SubStr(wndTitle, 1, 10) = "bug.n_BAR_")
|
|
|
|
Return, wndId
|
|
|
|
Else
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_maximize(wndId) {
|
|
|
|
If Window_isHung(wndId) {
|
|
|
|
Debug_logMessage("DEBUG[2] Window_maximize: Potentially hung window " . wndId, 2)
|
2015-01-25 17:07:51 +00:00
|
|
|
Return, 1
|
|
|
|
} Else {
|
|
|
|
WinMaximize, ahk_id %wndId%
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-07 21:49:17 +00:00
|
|
|
Window_minimize(wndId) {
|
|
|
|
Global
|
|
|
|
|
|
|
|
If Window_isHung(wndId) {
|
|
|
|
Debug_logMessage("DEBUG[2] Window_minimize: Potentially hung window " . wndId, 2)
|
|
|
|
Return, 1
|
|
|
|
} Else {
|
|
|
|
WinMinimize, ahk_id %wndId%
|
|
|
|
Window_#%wndId%_isMinimized := True
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_move(wndId, x, y, width, height) {
|
2019-03-06 15:58:06 +00:00
|
|
|
Local wndClass, wndMinMax, WM_ENTERSIZEMOVE, WM_EXITSIZEMOVE
|
2016-01-19 18:50:43 +00:00
|
|
|
Local wndH, wndW, wndX, wndY
|
|
|
|
|
2017-12-27 13:31:15 +00:00
|
|
|
;; Check, if the window has already the given position and size and no action is required.
|
|
|
|
If Not wndId Or Window_getPosEx(wndId, wndX, wndY, wndW, wndH) And (Abs(wndX - x) < 2 And Abs(wndY - y) < 2 And Abs(wndW - width) < 2 And Abs(wndH - height) < 2)
|
2016-01-19 18:50:43 +00:00
|
|
|
Return, 0
|
2015-03-07 21:49:17 +00:00
|
|
|
|
2015-01-25 18:16:30 +00:00
|
|
|
If Window_isHung(wndId) {
|
|
|
|
Debug_logMessage("DEBUG[2] Window_move: Potentially hung window " . wndId, 2)
|
2015-01-25 17:07:51 +00:00
|
|
|
Return, 1
|
|
|
|
} Else {
|
2015-03-07 21:49:17 +00:00
|
|
|
WinGet, wndMinMax, MinMax, ahk_id %wndId%
|
|
|
|
If (wndMinMax = -1 And Not Window_#%wndId%_isMinimized)
|
2015-01-25 17:07:51 +00:00
|
|
|
WinRestore, ahk_id %wndId%
|
|
|
|
}
|
|
|
|
|
|
|
|
WM_ENTERSIZEMOVE = 0x0231
|
|
|
|
WM_EXITSIZEMOVE = 0x0232
|
|
|
|
If ErrorLevel {
|
2015-01-25 18:16:30 +00:00
|
|
|
Debug_logMessage("DEBUG[2] Window_move: Potentially hung window " . wndId, 1)
|
2015-01-25 17:07:51 +00:00
|
|
|
Return, 1
|
|
|
|
} Else {
|
2019-03-08 21:12:24 +00:00
|
|
|
SendMessage, WM_ENTERSIZEMOVE, , , , ahk_id %wndId%
|
2015-01-25 17:07:51 +00:00
|
|
|
WinMove, ahk_id %wndId%, , %x%, %y%, %width%, %height%
|
2016-01-19 18:50:43 +00:00
|
|
|
|
2019-03-08 21:12:24 +00:00
|
|
|
WinGetClass, wndClass, ahk_id %wndId%
|
|
|
|
If (wndClass == "mintty") {
|
|
|
|
Sleep, % Config_shellMsgDelay
|
|
|
|
}
|
2016-04-12 19:16:11 +00:00
|
|
|
;If Not (wndMinMax = 1) Or Not Window_#%wndId%_isDecorated Or Manager_windowNotMaximized(width, height) {
|
2016-01-19 18:50:43 +00:00
|
|
|
If Window_getPosEx(wndId, wndX, wndY, wndW, wndH) And (Abs(wndX - x) > 1 Or Abs(wndY - y) > 1 Or Abs(wndW - width) > 1 Or Abs(wndH - height) > 1) {
|
|
|
|
x -= wndX - x
|
|
|
|
y -= wndY - y
|
|
|
|
width += width - wndW - 1
|
|
|
|
height += height - wndH - 1
|
|
|
|
WinMove, ahk_id %wndId%, , %x%, %y%, %width%, %height%
|
|
|
|
}
|
2016-04-12 19:16:11 +00:00
|
|
|
;}
|
2016-01-19 18:50:43 +00:00
|
|
|
|
2015-01-25 17:07:51 +00:00
|
|
|
SendMessage, WM_EXITSIZEMOVE, , , , ahk_id %wndId%
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-19 20:56:16 +00:00
|
|
|
Window_restore(wndId = 0) {
|
|
|
|
If (wndId = 0)
|
|
|
|
WinGet, wndId, ID, A
|
|
|
|
|
|
|
|
If Window_isHung(wndId) {
|
|
|
|
Debug_logMessage("DEBUG[2] Window_restore: Potentially hung window " . wndId, 2)
|
|
|
|
Return, 1
|
|
|
|
} Else {
|
|
|
|
WinRestore, ahk_id %wndId%
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_set(wndId, type, value) {
|
|
|
|
If Window_isHung(wndId) {
|
|
|
|
Debug_logMessage("DEBUG[2] Window_set: Potentially hung window " . wndId, 2)
|
2015-01-25 17:07:51 +00:00
|
|
|
Return, 1
|
|
|
|
} Else {
|
|
|
|
WinSet, %type%, %value%, ahk_id %wndId%
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_show(wndId) {
|
|
|
|
If Window_isHung(wndId) {
|
|
|
|
Debug_logMessage("DEBUG[2] Window_show: Potentially hung window " . wndId, 2)
|
2015-01-25 17:07:51 +00:00
|
|
|
Return, 1
|
|
|
|
} Else {
|
|
|
|
WinShow, ahk_id %wndId%
|
|
|
|
Return, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_toggleDecor(wndId = 0) {
|
2015-01-25 17:07:51 +00:00
|
|
|
Global
|
|
|
|
|
|
|
|
If (wndId = 0)
|
|
|
|
WinGet, wndId, ID, A
|
|
|
|
|
2015-01-25 18:38:10 +00:00
|
|
|
Window_#%wndId%_isDecorated := Not Window_#%wndId%_isDecorated
|
|
|
|
If Window_#%wndId%_isDecorated
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_set(wndId, "Style", "+0xC00000")
|
2015-01-25 17:07:51 +00:00
|
|
|
Else
|
2015-01-25 18:16:30 +00:00
|
|
|
Window_set(wndId, "Style", "-0xC00000")
|
2015-01-25 17:07:51 +00:00
|
|
|
}
|