vvin/vvin.go

256 lines
5.1 KiB
Go
Raw Normal View History

2019-11-09 01:26:01 -05:00
package main
import (
"errors"
"fmt"
"math"
2019-11-09 01:26:01 -05:00
"os"
"strconv"
2019-11-09 01:26:01 -05:00
"strings"
"syscall"
2019-11-09 01:29:48 -05:00
"time"
2019-11-09 01:26:01 -05:00
"unsafe"
"github.com/mitchellh/go-ps"
"github.com/shu-go/gli"
)
2019-11-09 01:29:48 -05:00
// Version is app version
var Version string
func init() {
if Version == "" {
Version = "dev-" + time.Now().Format("20060102")
}
}
2019-11-09 01:26:01 -05:00
type globalCmd struct {
Target string `cli:"target,t=WINDOW_TITLE" help:"default to current window"`
2019-11-09 22:09:09 -05:00
Debug bool `help:"output debug info"`
2019-11-09 01:26:01 -05:00
2019-11-09 22:09:09 -05:00
Minimize minCmd `cli:"minimize,min" help:"minimize/restore"`
Maximize maxCmd `cli:"maximize,max" help:"maximize/restore"`
Resize resizeCmd `cli:"resize,move,mv" help:"resize/move"`
Alpha alphaCmd `cli:"alpha" help:"set alpha 0%(transparent) - 100%(opaque)"`
Topmost topmostCmd `cli:"topmost" help:"set always on top/restore"`
2019-11-18 00:48:49 -05:00
Wait waitCmd `cli:"wait"`
2019-11-09 01:26:01 -05:00
targetHandle syscall.Handle
scrWidth, scrHeight int
frameWidth, frameHeight int
2019-11-09 01:26:01 -05:00
}
func (c *globalCmd) Before() error {
wins, err := listAllWindows()
if err != nil {
return err
}
win := findFirstTarget(c.Target, wins, ancestors())
if win == nil {
2019-11-09 01:26:01 -05:00
return errors.New("no target")
}
c.targetHandle = win.Handle
2019-11-09 01:26:01 -05:00
w, _, _ := getSystemMetrics.Call(SM_CXVIRTUALSCREEN)
h, _, _ := getSystemMetrics.Call(SM_CYVIRTUALSCREEN)
c.scrWidth = int(w)
c.scrHeight = int(h)
return nil
}
func main() {
app := gli.NewWith(&globalCmd{})
app.Name = "vvin"
2019-11-09 22:09:09 -05:00
app.Desc = "Change window properties for Windows"
2019-11-09 01:29:48 -05:00
app.Version = Version
2019-11-09 01:26:01 -05:00
app.Usage = ``
app.Copyright = "(C) 2019 Shuhei Kubota"
2019-11-09 22:00:13 -05:00
app.SuppressErrorOutput = true
if err := app.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err)
}
2019-11-09 01:26:01 -05:00
}
var (
user32 = syscall.NewLazyDLL("user32.dll")
enumWindows = user32.NewProc("EnumWindows")
getWindowText = user32.NewProc("GetWindowTextW")
getWindowTextLength = user32.NewProc("GetWindowTextLengthW")
getWindowThreadProcessId = user32.NewProc("GetWindowThreadProcessId")
isWindow = user32.NewProc("IsWindow")
isWindowVisible = user32.NewProc("IsWindowVisible")
showWindow = user32.NewProc("ShowWindow")
setWindowPos = user32.NewProc("SetWindowPos")
getWindowRect = user32.NewProc("GetWindowRect")
getSystemMetrics = user32.NewProc("GetSystemMetrics")
2019-11-09 19:48:51 -05:00
setLayeredWindowAttributes = user32.NewProc("SetLayeredWindowAttributes")
getWindowLong = user32.NewProc("GetWindowLongW")
setWindowLong = user32.NewProc("SetWindowLongW")
2019-11-09 01:26:01 -05:00
)
const (
SW_MAXIMIZE = 3
SW_MINIMIZE = 6
SW_RESTORE = 9
SW_HIDE = 0
SW_SHOWNA = 8
2019-11-09 01:26:01 -05:00
SWP_NOSIZE = 0x0001
2019-11-09 21:10:02 -05:00
SWP_NOMOVE = 0x0002
2019-11-09 01:26:01 -05:00
SWP_NOZORDER = 0x0004
2019-11-09 21:10:02 -05:00
SWP_NOACTIVATE = 0x0010
SWP_SHOWWINDOW = 0x0040
2019-11-09 01:26:01 -05:00
SM_CXVIRTUALSCREEN = 78
SM_CYVIRTUALSCREEN = 79
SM_CXSIZEFRAME = 32
SM_CYSIZEFRAME = 33
2019-11-09 19:48:51 -05:00
GWL_EXSTYLE = 0xFFFFFFEC
WS_EX_TOOLWINDOW = 0x00000080
WS_EX_LAYERED = 0x80000
LWA_ALPHA = 0x2
2019-11-09 21:10:02 -05:00
HWND_TOPMOST = ^uintptr(0)
HWND_NOTOPMOST = ^uintptr(1)
2019-11-09 01:26:01 -05:00
)
type (
Window struct {
Title string
Handle syscall.Handle
PID int
}
RECT struct {
Left, Top, Right, Bottom int32
}
2019-11-09 01:26:01 -05:00
)
func listAllWindows() (wins []*Window, err error) {
cb := syscall.NewCallback(func(hwnd syscall.Handle, lparam uintptr) uintptr {
b, _, _ := isWindow.Call(uintptr(hwnd))
if b == 0 {
return 1
}
b, _, _ = isWindowVisible.Call(uintptr(hwnd))
if b == 0 {
return 1
}
title := ""
tlen, _, _ := getWindowTextLength.Call(uintptr(hwnd))
if tlen != 0 {
tlen++
buff := make([]uint16, tlen)
getWindowText.Call(
uintptr(hwnd),
uintptr(unsafe.Pointer(&buff[0])),
uintptr(tlen),
)
title = syscall.UTF16ToString(buff)
}
var processID uintptr
getWindowThreadProcessId.Call(
uintptr(hwnd),
uintptr(unsafe.Pointer(&processID)),
)
win := &Window{
Title: title,
Handle: hwnd,
PID: int(processID),
}
wins = append(wins, win)
return 1
})
a, _, _ := enumWindows.Call(cb, 0)
if a == 0 {
return nil, fmt.Errorf("USER32.EnumWindows returned FALSE")
}
return wins, nil
}
func ancestors() []int {
curr := os.Getpid()
an := []int{curr}
for {
p, err := ps.FindProcess(curr)
if p == nil || err != nil {
break
}
curr = p.PPid()
an = append(an, curr)
}
return an
}
func toInt(s string, max int) int32 {
if strings.HasSuffix(s, "%") {
i, err := strconv.Atoi(s[:len(s)-1])
if err != nil {
return 0
}
if i > 100 {
i = 100
}
return int32(math.Trunc(float64(max*i) / 100))
} else {
i, err := strconv.Atoi(s)
if err != nil {
return 0
}
return int32(i)
}
}
func findFirstTarget(title string, wins []*Window, ancestors []int) *Window {
if title == "" {
for _, p := range ancestors {
for _, w := range wins {
if w.PID == p {
return w
}
}
}
} else {
t := strings.ToLower(title)
for _, w := range wins {
ancestor := false
for _, p := range ancestors {
if w.PID == p {
ancestor = true
break
}
}
if t != "" && !ancestor {
wt := strings.ToLower(w.Title)
if strings.Contains(wt, t) {
return w
}
} else if t == "" && ancestor {
return w
}
}
}
return nil
}