2011-07-27 17:43:34 +00:00
|
|
|
/**
|
|
|
|
* bug.n - tiling window management
|
|
|
|
* Copyright (c) 2010-2011 joten
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2011-09-02 17:46:07 +00:00
|
|
|
* @version 8.2.0.03 (02.09.2011)
|
2011-07-27 17:43:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
Manager_init() {
|
|
|
|
Local ncm, ncmSize
|
|
|
|
|
|
|
|
; Windows UI
|
|
|
|
If Config_selBorderColor {
|
|
|
|
SetFormat, Integer, hex
|
|
|
|
Manager_normBorderColor := DllCall("GetSysColor", "Int", 10)
|
|
|
|
SetFormat, Integer, d
|
|
|
|
DllCall("SetSysColors", "Int", 1, "Int*", 10, "UInt*", Config_selBorderColor)
|
|
|
|
}
|
|
|
|
If (Config_borderWidth > 0) Or (Config_borderPadding >= 0 And A_OSVersion = WIN_VISTA) {
|
|
|
|
ncmSize := VarSetCapacity(ncm, 44 + 5 * (28 + 32 * (A_IsUnicode ? 2 : 1)), 0)
|
|
|
|
NumPut(ncmSize, ncm, 0, "UInt")
|
|
|
|
DllCall("SystemParametersInfo", "UInt", 0x0029, "UInt", ncmSize, "UInt", &ncm, "UInt", 0)
|
|
|
|
Manager_borderWidth := NumGet(ncm, 4, "Int")
|
|
|
|
Manager_borderPadding := NumGet(ncm, 40 + 5 * (28 + 32 * (A_IsUnicode ? 2 : 1)), "Int")
|
|
|
|
If (Config_borderWidth > 0)
|
|
|
|
NumPut(Config_borderWidth, ncm, 4, "Int")
|
|
|
|
If (Config_borderPadding >= 0 And A_OSVersion = WIN_VISTA)
|
|
|
|
NumPut(Config_borderPadding, ncm, 40 + 5 * (28 + 32 * (A_IsUnicode ? 2 : 1)), "Int")
|
|
|
|
DllCall("SystemParametersInfo", "UInt", 0x002a, "UInt", ncmSize, "UInt", &ncm, "UInt", 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
Bar_getHeight()
|
|
|
|
Manager_aMonitor := 1
|
|
|
|
Manager_taskBarMonitor := ""
|
|
|
|
Manager_showTaskBar := True
|
|
|
|
SysGet, Manager_monitorCount, MonitorCount
|
|
|
|
Loop, % Manager_monitorCount
|
|
|
|
Monitor_init(A_Index)
|
|
|
|
Bar_initCmdGui()
|
|
|
|
If Not Config_showTaskBar
|
|
|
|
Monitor_toggleTaskBar()
|
|
|
|
|
|
|
|
Manager_focus := False
|
|
|
|
Manager_hideShow := False
|
|
|
|
Bar_hideTitleWndIds := ""
|
|
|
|
Manager_allWndIds := ""
|
|
|
|
Manager_managedWndIds := ""
|
|
|
|
Manager_sync()
|
|
|
|
|
|
|
|
Bar_updateStatus()
|
|
|
|
Bar_updateTitle()
|
|
|
|
Loop, % Manager_monitorCount {
|
|
|
|
View_arrange(A_Index, Monitor_#%A_Index%_aView_#1)
|
|
|
|
Bar_updateView(A_Index, Monitor_#%A_Index%_aView_#1)
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_registerShellHook()
|
|
|
|
SetTimer, Bar_loop, %Config_readinInterval%
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_activateMonitor(d) {
|
2011-09-02 17:46:07 +00:00
|
|
|
Local aView, aWndClass, aWndHeight, aWndId, aWndWidth, aWndX, aWndY, v, wndId
|
2011-07-27 17:43:34 +00:00
|
|
|
|
|
|
|
If (Manager_monitorCount > 1) {
|
|
|
|
aView := Monitor_#%Manager_aMonitor%_aView_#1
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
If WinExist("ahk_id" aWndId) {
|
|
|
|
WinGetClass, aWndClass, ahk_id %aWndId%
|
2011-09-02 17:46:07 +00:00
|
|
|
If Not (aWndClass = "Progman") And Not (aWndClass = "AutoHotkeyGui") And Not (aWndClass = "DesktopBackgroundClass") {
|
|
|
|
WinGetPos, aWndX, aWndY, aWndWidth, aWndHeight, ahk_id %aWndId%
|
|
|
|
If (Monitor_get(aWndX + aWndWidth / 2, aWndY + aWndHeight / 2) = Manager_aMonitor)
|
|
|
|
View_#%Manager_aMonitor%_#%aView%_aWndId := aWndId
|
|
|
|
}
|
2011-07-27 17:43:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Manager_aMonitor := Manager_loop(Manager_aMonitor, d, 1, Manager_monitorCount)
|
|
|
|
v := Monitor_#%Manager_aMonitor%_aView_#1
|
|
|
|
wndId := View_#%Manager_aMonitor%_#%v%_aWndId
|
|
|
|
If Not (wndId And WinExist("ahk_id" wndId)) {
|
|
|
|
If View_#%Manager_aMonitor%_#%v%_wndIds
|
|
|
|
wndId := SubStr(View_#%Manager_aMonitor%_#%v%_wndIds, 1, InStr(View_#%Manager_aMonitor%_#%v%_wndIds, ";")-1)
|
|
|
|
Else
|
|
|
|
wndId := 0
|
|
|
|
}
|
|
|
|
Manager_winActivate(wndId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_applyRules(wndId, ByRef isManaged, ByRef m, ByRef tags, ByRef isFloating, ByRef isDecorated, ByRef hideTitle) {
|
|
|
|
Local mouseX, mouseY, wndClass, wndHeight, wndStyle, wndTitle, wndWidth, wndX, wndY
|
|
|
|
Local rule0, rule1, rule2, rule3, rule4, rule5, rule6, rule7, rule8, rule9
|
|
|
|
|
|
|
|
isManaged := True
|
|
|
|
m := 0
|
|
|
|
tags := 0
|
|
|
|
isFloating := False
|
|
|
|
isDecorated := False
|
|
|
|
hideTitle := False
|
|
|
|
|
|
|
|
WinGetClass, wndClass, ahk_id %wndId%
|
|
|
|
WinGetTitle, wndTitle, ahk_id %wndId%
|
|
|
|
WinGetPos, wndX, wndY, wndWidth, wndHeight, ahk_id %wndId%
|
|
|
|
WinGet, wndStyle, Style, ahk_id %wndId%
|
|
|
|
If wndClass And wndTitle And Not (wndX < -4999) And Not (wndY < -4999) {
|
2011-09-02 17:46:07 +00:00
|
|
|
Loop, % Config_ruleCount {
|
|
|
|
StringSplit, rule, Config_rule_#%A_index%, `;
|
2011-07-27 17:43:34 +00:00
|
|
|
If RegExMatch(wndClass . ";" . wndTitle, rule1 . ";" . rule2) And (rule3 = "" Or wndStyle & rule3) { ; The last matching rule is returned.
|
|
|
|
isManaged := rule4
|
|
|
|
m := rule5
|
|
|
|
tags := rule6
|
|
|
|
isFloating := rule7
|
|
|
|
isDecorated := rule8
|
|
|
|
hideTitle := rule9
|
|
|
|
}
|
|
|
|
}
|
2011-09-02 17:46:07 +00:00
|
|
|
If (m = 0)
|
|
|
|
m := Manager_aMonitor
|
2011-07-27 17:43:34 +00:00
|
|
|
If (m > Manager_monitorCount) ; If the specified monitor is out of scope, set it to the max. monitor.
|
|
|
|
m := Manager_monitorCount
|
|
|
|
If (tags = 0)
|
|
|
|
tags := 1 << Monitor_#%m%_aView_#1 - 1
|
|
|
|
} Else {
|
|
|
|
isManaged := False
|
|
|
|
If wndTitle
|
|
|
|
hideTitle := True
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_cleanup() {
|
|
|
|
Local aWndId, m, ncmSize, ncm, wndIds
|
|
|
|
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
|
|
|
|
; Reset border color, padding and witdh.
|
|
|
|
If Config_selBorderColor
|
|
|
|
DllCall("SetSysColors", "Int", 1, "Int*", 10, "UInt*", Manager_normBorderColor)
|
|
|
|
If (Config_borderWidth > 0) Or (Config_borderPadding >= 0 And A_OSVersion = WIN_VISTA) {
|
|
|
|
ncmSize := VarSetCapacity(ncm, 44 + 5 * (28 + 32 * (A_IsUnicode ? 2 : 1)), 0)
|
|
|
|
NumPut(ncmSize, ncm, 0, "UInt")
|
|
|
|
DllCall("SystemParametersInfo", "UInt", 0x0029, "UInt", ncmSize, "UInt", &ncm, "UInt", 0)
|
|
|
|
If (Config_borderWidth > 0)
|
|
|
|
NumPut(Manager_borderWidth, ncm, 4, "Int")
|
|
|
|
If (Config_borderPadding >= 0 And A_OSVersion = WIN_VISTA)
|
|
|
|
NumPut(Manager_borderPadding, ncm, 40 + 5 * (28 + 32 * (A_IsUnicode ? 2 : 1)), "Int")
|
|
|
|
DllCall("SystemParametersInfo", "UInt", 0x002a, "UInt", ncmSize, "UInt", &ncm, "UInt", 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
; Show borders and title bars.
|
|
|
|
StringTrimRight, wndIds, Manager_managedWndIds, 1
|
|
|
|
Manager_hideShow := True
|
|
|
|
Loop, PARSE, wndIds, `;
|
|
|
|
{
|
|
|
|
WinShow, ahk_id %A_LoopField%
|
|
|
|
If Not Config_showBorder
|
|
|
|
WinSet, Style, +0x40000, ahk_id %A_LoopField%
|
|
|
|
WinSet, Style, +0xC00000, ahk_id %A_LoopField%
|
|
|
|
}
|
|
|
|
|
|
|
|
; Show the task bar.
|
|
|
|
WinShow, Start ahk_class Button
|
|
|
|
WinShow, ahk_class Shell_TrayWnd
|
|
|
|
Manager_hideShow := False
|
|
|
|
|
|
|
|
; Reset windows position and size.
|
|
|
|
Manager_showTaskBar := True
|
|
|
|
Loop, % Manager_monitorCount {
|
|
|
|
m := A_Index
|
|
|
|
Monitor_#%m%_showBar := False
|
|
|
|
Monitor_getWorkArea(m)
|
|
|
|
Loop, % Config_viewCount
|
|
|
|
View_arrange(m, A_Index)
|
|
|
|
}
|
|
|
|
WinSet, AlwaysOnTop, On, ahk_id %aWndId%
|
|
|
|
WinSet, AlwaysOnTop, Off, ahk_id %aWndId%
|
|
|
|
|
|
|
|
DllCall("Shell32.dll\SHAppBarMessage", "UInt", (ABM_REMOVE := 0x1), "UInt", &Bar_appBarData)
|
|
|
|
; SKAN: Crazy Scripting : Quick Launcher for Portable Apps (http://www.autohotkey.com/forum/topic22398.html)
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_closeWindow() {
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
WinGetClass, aWndClass, ahk_id %aWndId%
|
|
|
|
WinGetTitle, aWndTitle, ahk_id %aWndId%
|
2011-09-02 17:46:07 +00:00
|
|
|
If Not (aWndClass = "AutoHotkeyGUI" And RegExMatch(aWndTitle, "bug.n_BAR_[0-9]+"))
|
2011-07-27 17:43:34 +00:00
|
|
|
WinClose, ahk_id %aWndId%
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_getWindowInfo() {
|
|
|
|
Local text, v, aWndClass, aWndHeight, aWndId, aWndProcessName, aWndStyle, aWndTitle, aWndWidth, aWndX, aWndY
|
|
|
|
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
WinGetClass, aWndClass, ahk_id %aWndId%
|
|
|
|
WinGetTitle, aWndTitle, ahk_id %aWndId%
|
|
|
|
WinGet, aWndProcessName, ProcessName, ahk_id %aWndId%
|
|
|
|
WinGet, aWndStyle, Style, ahk_id %aWndId%
|
|
|
|
WinGetPos, aWndX, aWndY, aWndWidth, aWndHeight, ahk_id %aWndId%
|
|
|
|
text := "ID: " aWndId "`nclass:`t" aWndClass "`ntitle:`t" aWndTitle
|
|
|
|
If InStr(Bar_hiddenWndIds, aWndId)
|
|
|
|
text .= " (hidden)"
|
|
|
|
text .= "`nprocess:`t" aWndProcessName "`nstyle:`t" aWndStyle "`nmetrics:`tx: " aWndX ", y: " aWndY ", width: " aWndWidth ", height: " aWndHeight "`ntags:`t" Manager_#%aWndId%_tags
|
|
|
|
If Manager_#%aWndId%_isFloating
|
|
|
|
text .= " (floating)"
|
|
|
|
MsgBox, , bug.n: Window Information, % text
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_getWindowList() {
|
|
|
|
Local text, v, aWndId, wndIds, aWndTitle
|
|
|
|
|
|
|
|
v := Monitor_#%Manager_aMonitor%_aView_#1
|
|
|
|
aWndId := View_#%Manager_aMonitor%_#%v%_aWndId
|
|
|
|
WinGetTitle, aWndTitle, ahk_id %aWndId%
|
|
|
|
text := "Active Window`n" aWndId ":`t" aWndTitle
|
|
|
|
|
|
|
|
StringTrimRight, wndIds, View_#%Manager_aMonitor%_#%v%_wndIds, 1
|
|
|
|
text .= "`n`nWindow List"
|
|
|
|
Loop, PARSE, wndIds, `;
|
|
|
|
{
|
|
|
|
WinGetTitle, wndTitle, ahk_id %A_LoopField%
|
|
|
|
text .= "`n" A_LoopField ":`t" wndTitle
|
|
|
|
}
|
|
|
|
|
|
|
|
MsgBox, , bug.n: Window List, % text
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_loop(index, increment, lowerBound, upperBound) {
|
|
|
|
index += increment
|
|
|
|
If (index > upperBound)
|
|
|
|
index := lowerBound
|
|
|
|
If (index < lowerBound)
|
|
|
|
index := upperBound
|
|
|
|
If (upperBound = 0)
|
|
|
|
index := 0
|
|
|
|
|
|
|
|
Return, index
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_manage(wndId) {
|
|
|
|
Local a, c0, hideTitle, isDecorated, isFloating, isManaged, m, tags, wndControlList0, wndX, wndY, wndWidth, wndHeight, wndProcessName
|
|
|
|
|
|
|
|
If Not InStr(Manager_allWndIds, wndId ";")
|
|
|
|
Manager_allWndIds .= wndId ";"
|
|
|
|
Manager_applyRules(wndId, isManaged, m, tags, isFloating, isDecorated, hideTitle)
|
|
|
|
|
|
|
|
WinGet, wndProcessName, ProcessName, ahk_id %wndId%
|
|
|
|
If (wndProcessName = "chrome.exe") {
|
|
|
|
WinGet, wndControlList, ControlList, ahk_id %wndId%
|
|
|
|
StringSplit, c, wndControlList, `n
|
|
|
|
If (c0 <= 1)
|
|
|
|
isManaged := False
|
|
|
|
}
|
|
|
|
|
|
|
|
If isManaged {
|
|
|
|
Monitor_moveWindow(m, wndId)
|
|
|
|
|
|
|
|
Manager_managedWndIds .= wndId ";"
|
|
|
|
Manager_#%wndId%_tags := tags
|
|
|
|
Manager_#%wndId%_isDecorated := isDecorated
|
|
|
|
Manager_#%wndId%_isFloating := isFloating
|
|
|
|
|
|
|
|
Loop, % Config_viewCount
|
|
|
|
If (Manager_#%wndId%_tags & 1 << A_Index - 1) {
|
|
|
|
View_#%m%_#%A_Index%_wndIds := wndId ";" View_#%m%_#%A_Index%_wndIds
|
|
|
|
Bar_updateView(m, A_Index)
|
|
|
|
}
|
|
|
|
|
|
|
|
If Not Config_showBorder
|
|
|
|
WinSet, Style, -0x40000, ahk_id %wndId%
|
|
|
|
If Not Manager_#%wndId%_isDecorated
|
|
|
|
WinSet, Style, -0xC00000, ahk_id %wndId%
|
|
|
|
|
|
|
|
a := Manager_#%wndId%_tags & 1 << Monitor_#%m%_aView_#1 - 1
|
|
|
|
If a {
|
|
|
|
Manager_aMonitor := m
|
|
|
|
Manager_winActivate(wndId)
|
|
|
|
} Else {
|
|
|
|
Manager_hideShow := True
|
|
|
|
WinHide, ahk_id %wndId%
|
|
|
|
Manager_hideShow := False
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
If hideTitle And Not InStr(Bar_hideTitleWndIds, wndId)
|
|
|
|
Bar_hideTitleWndIds .= wndId . ";"
|
|
|
|
Else If Not hideTitle
|
|
|
|
StringReplace, Bar_hideTitleWndIds, Bar_hideTitleWndIds, %wndId%`;,
|
|
|
|
|
|
|
|
Return, a
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_maximizeWindow() {
|
|
|
|
Local aWndId, l, v
|
|
|
|
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
v := Monitor_#%Manager_aMonitor%_aView_#1
|
|
|
|
l := View_#%Manager_aMonitor%_#%v%_layout_#1
|
|
|
|
If Not Manager_#%aWndId%_isFloating And Not (Config_layoutFunction_#%l% = "")
|
|
|
|
View_toggleFloating()
|
|
|
|
WinSet, Top,, ahk_id %aWndId%
|
|
|
|
|
|
|
|
Manager_winMove(aWndId, Monitor_#%Manager_aMonitor%_x, Monitor_#%Manager_aMonitor%_y, Monitor_#%Manager_aMonitor%_width, Monitor_#%Manager_aMonitor%_height)
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_moveWindow() {
|
|
|
|
Local aWndId, l, SC_MOVE, v, WM_SYSCOMMAND
|
|
|
|
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
v := Monitor_#%Manager_aMonitor%_aView_#1
|
|
|
|
l := View_#%Manager_aMonitor%_#%v%_layout_#1
|
|
|
|
If Not Manager_#%aWndId%_isFloating And Not (Config_layoutFunction_#%l% = "")
|
|
|
|
View_toggleFloating()
|
|
|
|
WinSet, Top,, ahk_id %aWndId%
|
|
|
|
|
|
|
|
WM_SYSCOMMAND = 0x112
|
|
|
|
SC_MOVE = 0xF010
|
|
|
|
SendMessage, WM_SYSCOMMAND, SC_MOVE, , , ahk_id %aWndId%
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_onShellMessage(wParam, lParam) {
|
2011-09-02 17:46:07 +00:00
|
|
|
Local a, aWndClass, aWndHeight, aWndId, aWndTitle, aWndWidth, aWndX, aWndY, flag, m, tags, wndClass, wndId, wndPName, wndTitle, x, y
|
2011-07-27 17:43:34 +00:00
|
|
|
|
|
|
|
SetFormat, Integer, hex
|
|
|
|
lParam := lParam+0
|
|
|
|
SetFormat, Integer, d
|
|
|
|
WinGetClass, wndClass, ahk_id %lParam%
|
|
|
|
WinGetTitle, wndTitle, ahk_id %lParam%
|
|
|
|
WinGet, wndPName, ProcessName, ahk_id %lParam%
|
|
|
|
|
2011-09-02 17:46:07 +00:00
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
WinGetClass, aWndClass, ahk_id %aWndId%
|
|
|
|
WinGetTitle, aWndTitle, ahk_id %aWndId%
|
|
|
|
If ((wParam = 4 Or wParam = 32772) And lParam = 0 And aWndClass = "Progman" And aWndTitle = "Program Manager") {
|
|
|
|
MouseGetPos, x, y
|
|
|
|
m := Monitor_get(x, y)
|
|
|
|
If m
|
|
|
|
Manager_aMonitor := m
|
|
|
|
Bar_updateTitle()
|
|
|
|
}
|
|
|
|
|
2011-07-27 17:43:34 +00:00
|
|
|
If (wParam = 1 Or wParam = 2 Or wParam = 4 Or wParam = 6 Or wParam = 32772) And lParam And Not Manager_hideShow And Not Manager_focus {
|
|
|
|
If Not (wParam = 4 Or wParam = 32772) {
|
|
|
|
If Not wndClass And Not (wParam = 2) {
|
2011-09-02 17:46:07 +00:00
|
|
|
WinGetClass, wndClass, ahk_id %lParam%
|
|
|
|
If wndClass {
|
|
|
|
If (wndClass = "Emacs")
|
|
|
|
Sleep, % 12 * Config_shellMsgDelay
|
|
|
|
} Else
|
|
|
|
Sleep, %Config_shellMsgDelay%
|
2011-07-27 17:43:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-02 17:46:07 +00:00
|
|
|
If (wParam = 1 Or wParam = 6) And Not InStr(Manager_allWndIds, lParam ";") And Not InStr(Manager_managedWndIds, lParam ";")
|
2011-07-27 17:43:34 +00:00
|
|
|
a := Manager_manage(lParam)
|
|
|
|
Else {
|
|
|
|
flag := True
|
|
|
|
a := Manager_sync(tags)
|
|
|
|
If tags
|
|
|
|
a := False
|
|
|
|
}
|
|
|
|
If a {
|
|
|
|
View_arrange(Manager_aMonitor, Monitor_#%Manager_aMonitor%_aView_#1)
|
|
|
|
Bar_updateView(Manager_aMonitor, Monitor_#%Manager_aMonitor%_aView_#1)
|
|
|
|
}
|
|
|
|
|
2011-09-02 17:46:07 +00:00
|
|
|
If flag
|
2011-07-27 17:43:34 +00:00
|
|
|
If (Manager_monitorCount > 1) {
|
|
|
|
WinGetPos, aWndX, aWndY, aWndWidth, aWndHeight, ahk_id %aWndId%
|
2011-09-02 17:46:07 +00:00
|
|
|
m := Monitor_get(aWndX + aWndWidth / 2, aWndY + aWndHeight / 2)
|
2011-07-27 17:43:34 +00:00
|
|
|
If m
|
|
|
|
Manager_aMonitor := m
|
|
|
|
}
|
|
|
|
|
|
|
|
If tags
|
|
|
|
Loop, % Config_viewCount
|
|
|
|
If (tags & 1 << A_Index - 1) {
|
|
|
|
Monitor_activateView(A_Index)
|
|
|
|
Break
|
|
|
|
}
|
|
|
|
|
|
|
|
Bar_updateTitle()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_registerShellHook() {
|
|
|
|
Gui, +LastFound
|
|
|
|
hWnd := WinExist()
|
|
|
|
DllCall("RegisterShellHookWindow", "UInt", hWnd) ; Minimum operating systems: Windows 2000 (http://msdn.microsoft.com/en-us/library/ms644989(VS.85).aspx)
|
|
|
|
msgNum := DllCall("RegisterWindowMessage", "Str", "SHELLHOOK")
|
|
|
|
OnMessage(msgNum, "Manager_onShellMessage")
|
|
|
|
}
|
|
|
|
; SKAN: How to Hook on to Shell to receive its messages? (http://www.autohotkey.com/forum/viewtopic.php?p=123323#123323)
|
|
|
|
|
|
|
|
Manager_setViewMonitor(d) {
|
|
|
|
Local aView, m, v, wndIds
|
|
|
|
|
|
|
|
If (Manager_monitorCount > 1) {
|
|
|
|
m := Manager_loop(Manager_aMonitor, d, 1, Manager_monitorCount)
|
|
|
|
v := Monitor_#%m%_aView_#1
|
|
|
|
aView := Monitor_#%Manager_aMonitor%_aView_#1
|
|
|
|
If View_#%Manager_aMonitor%_#%aView%_wndIds {
|
|
|
|
View_#%m%_#%v%_wndIds := View_#%Manager_aMonitor%_#%aView%_wndIds View_#%m%_#%v%_wndIds
|
|
|
|
|
|
|
|
StringTrimRight, wndIds, View_#%Manager_aMonitor%_#%aView%_wndIds, 1
|
|
|
|
Loop, PARSE, wndIds, `;
|
|
|
|
{
|
|
|
|
Loop, % Config_viewCount {
|
|
|
|
StringReplace, View_#%Manager_aMonitor%_#%A_Index%_wndIds, View_#%Manager_aMonitor%_#%A_Index%_wndIds, %A_LoopField%`;,
|
|
|
|
View_#%Manager_aMonitor%_#%A_Index%_aWndId := 0
|
|
|
|
}
|
|
|
|
|
|
|
|
Monitor_moveWindow(m, A_LoopField)
|
|
|
|
Manager_#%A_LoopField%_tags := 1 << v - 1
|
|
|
|
}
|
|
|
|
View_arrange(Manager_aMonitor, aView)
|
|
|
|
Loop, % Config_viewCount
|
|
|
|
Bar_updateView(Manager_aMonitor, A_Index)
|
|
|
|
|
|
|
|
Manager_aMonitor := m
|
|
|
|
View_arrange(m, v)
|
|
|
|
Bar_updateTitle()
|
|
|
|
Bar_updateView(m, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_setWindowMonitor(d) {
|
|
|
|
Local aWndId, v
|
|
|
|
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
If (Manager_monitorCount > 1 And InStr(Manager_managedWndIds, aWndId ";")) {
|
|
|
|
Loop, % Config_viewCount {
|
|
|
|
StringReplace, View_#%Manager_aMonitor%_#%A_Index%_wndIds, View_#%Manager_aMonitor%_#%A_Index%_wndIds, %aWndId%`;,
|
|
|
|
If (aWndId = View_#%Manager_aMonitor%_#%A_Index%_aWndId)
|
|
|
|
View_#%Manager_aMonitor%_#%A_Index%_aWndId := 0
|
|
|
|
Bar_updateView(Manager_aMonitor, A_Index)
|
|
|
|
}
|
|
|
|
View_arrange(Manager_aMonitor, Monitor_#%Manager_aMonitor%_aView_#1)
|
|
|
|
|
|
|
|
Manager_aMonitor := Manager_loop(Manager_aMonitor, d, 1, Manager_monitorCount)
|
|
|
|
Monitor_moveWindow(Manager_aMonitor, aWndId)
|
|
|
|
v := Monitor_#%Manager_aMonitor%_aView_#1
|
|
|
|
Manager_#%aWndId%_tags := 1 << v - 1
|
|
|
|
View_#%Manager_aMonitor%_#%v%_wndIds := aWndId ";" View_#%Manager_aMonitor%_#%v%_wndIds
|
|
|
|
View_#%Manager_aMonitor%_#%v%_aWndId := aWndId
|
|
|
|
View_arrange(Manager_aMonitor, v)
|
|
|
|
Bar_updateTitle()
|
|
|
|
Bar_updateView(Manager_aMonitor, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_sizeWindow() {
|
|
|
|
Local aWndId, l, SC_SIZE, v, WM_SYSCOMMAND
|
|
|
|
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
v := Monitor_#%Manager_aMonitor%_aView_#1
|
|
|
|
l := View_#%Manager_aMonitor%_#%v%_layout_#1
|
|
|
|
If Not Manager_#%aWndId%_isFloating And Not (Config_layoutFunction_#%l% = "")
|
|
|
|
View_toggleFloating()
|
|
|
|
WinSet, Top,, ahk_id %aWndId%
|
|
|
|
|
|
|
|
WM_SYSCOMMAND = 0x112
|
|
|
|
SC_SIZE = 0xF000
|
|
|
|
SendMessage, WM_SYSCOMMAND, SC_SIZE, , , ahk_id %aWndId%
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_sync(ByRef tags = 0) {
|
|
|
|
Local a, aWndId, flag, shownWndIds, v, visibleWndIds, wndId
|
|
|
|
|
|
|
|
Loop, % Manager_monitorCount {
|
|
|
|
v := Monitor_#%A_Index%_aView_#1
|
|
|
|
shownWndIds .= View_#%A_Index%_#%v%_wndIds
|
|
|
|
}
|
|
|
|
; check all visible windows against the known windows
|
|
|
|
WinGet, wndId, List, , ,
|
|
|
|
Loop, % wndId {
|
|
|
|
If Not InStr(shownWndIds, wndId%A_Index% ";") {
|
|
|
|
If Not InStr(Manager_managedWndIds, wndId%A_Index% ";") {
|
|
|
|
flag := Manager_manage(wndId%A_Index%)
|
|
|
|
If flag
|
|
|
|
a := flag
|
|
|
|
} Else {
|
|
|
|
aWndId := wndId%A_Index%
|
|
|
|
tags := Manager_#%aWndId%_tags
|
|
|
|
}
|
|
|
|
}
|
|
|
|
visibleWndIds := visibleWndIds wndId%A_Index% ";"
|
|
|
|
}
|
|
|
|
|
|
|
|
; check, if a window, that is known to be visible, is actually not visible
|
|
|
|
StringTrimRight, shownWndIds, shownWndIds, 1
|
|
|
|
Loop, PARSE, shownWndIds, `;
|
|
|
|
{
|
|
|
|
If Not InStr(visibleWndIds, A_LoopField) {
|
|
|
|
flag := Manager_unmanage(A_LoopField)
|
|
|
|
If flag
|
|
|
|
a := flag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Return, a
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_toggleDecor() {
|
|
|
|
Local aWndId
|
|
|
|
|
|
|
|
WinGet, aWndId, ID, A
|
|
|
|
Manager_#%aWndId%_isDecorated := Not Manager_#%aWndId%_isDecorated
|
|
|
|
If Manager_#%aWndId%_isDecorated
|
|
|
|
WinSet, Style, +0xC00000, ahk_id %aWndId%
|
|
|
|
Else
|
|
|
|
WinSet, Style, -0xC00000, ahk_id %aWndId%
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_unmanage(wndId) {
|
|
|
|
Local a
|
|
|
|
|
|
|
|
a := Manager_#%wndId%_tags & 1 << Monitor_#%Manager_aMonitor%_aView_#1 - 1
|
|
|
|
Loop, % Config_viewCount
|
|
|
|
If (Manager_#%wndId%_tags & 1 << A_Index - 1) {
|
|
|
|
StringReplace, View_#%Manager_aMonitor%_#%A_Index%_wndIds, View_#%Manager_aMonitor%_#%A_Index%_wndIds, %wndId%`;,
|
|
|
|
Bar_updateView(Manager_aMonitor, A_Index)
|
|
|
|
}
|
|
|
|
Manager_#%wndId%_tags :=
|
|
|
|
Manager_#%wndId%_isDecorated :=
|
|
|
|
Manager_#%wndId%_isFloating :=
|
2011-09-02 17:46:07 +00:00
|
|
|
StringReplace, Bar_hideTitleWndIds, Bar_hideTitleWndIds, %wndId%`;,
|
2011-07-27 17:43:34 +00:00
|
|
|
StringReplace, Manager_allWndIds, Manager_allWndIds, %wndId%`;,
|
|
|
|
StringReplace, Manager_managedWndIds, Manager_managedWndIds, %wndId%`;, , All
|
|
|
|
|
|
|
|
Return, a
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_winActivate(wndId) {
|
|
|
|
Local wndHeight, wndWidth, wndX, wndY
|
|
|
|
|
|
|
|
If Config_mouseFollowsFocus {
|
|
|
|
If wndId {
|
|
|
|
WinGetPos, wndX, wndY, wndWidth, wndHeight, ahk_id %wndId%
|
|
|
|
DllCall("SetCursorPos", "Int", Round(wndX + wndWidth / 2), "Int", Round(wndY + wndHeight / 2))
|
|
|
|
} Else
|
|
|
|
DllCall("SetCursorPos", "Int", Round(Monitor_#%Manager_aMonitor%_x + Monitor_#%Manager_aMonitor%_width / 2), "Int", Round(Monitor_#%Manager_aMonitor%_y + Monitor_#%Manager_aMonitor%_height / 2))
|
|
|
|
}
|
|
|
|
WinActivate, ahk_id %wndId%
|
|
|
|
Bar_updateTitle()
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager_winMove(wndId, x, y, width, height) {
|
|
|
|
WinRestore, ahk_id %wndId%
|
|
|
|
WM_ENTERSIZEMOVE = 0x0231
|
|
|
|
WM_EXITSIZEMOVE = 0x0232
|
|
|
|
SendMessage, WM_ENTERSIZEMOVE, , , , ahk_id %wndId%
|
|
|
|
WinMove, ahk_id %wndId%, , %x%, %y%, %width%, %height%
|
|
|
|
SendMessage, WM_EXITSIZEMOVE, , , , ahk_id %wndId%
|
|
|
|
}
|