summaryrefslogtreecommitdiff
path: root/windows_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-13 23:04:53 -0400
committerPietro Gagliardi <[email protected]>2014-04-13 23:04:53 -0400
commitd27d25cbc0e3440f7cf34ceeb6e95614866a9822 (patch)
tree4f4ec0c0d2ee04f52b7ba1acadc1e24e3c514504 /windows_windows.go
parent3bb9f4130576bb4f356b3e49fc73bc7d456d716d (diff)
Wrote non-working code to get Windows to have Window sizes not count window decoration. Technically it does work, but it doesn't seem to fix Area scrollbars... which reminds me, the default configuration for the keyboard test exhibits the "last pixel" but mentioned in one of the TODOs in area_windows.go on both scrollbars, so let's fix that first anyway. I'll move the TODO for window decoration to the future plans after I get a definite answer about GTK+'s behavior.
Diffstat (limited to 'windows_windows.go')
-rw-r--r--windows_windows.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/windows_windows.go b/windows_windows.go
index f626382..aa3d5c2 100644
--- a/windows_windows.go
+++ b/windows_windows.go
@@ -166,6 +166,7 @@ const (
)
var (
+ _adjustWindowRectEx = user32.NewProc("AdjustWindowRectEx")
_createWindowEx = user32.NewProc("CreateWindowExW")
_getClientRect = user32.NewProc("GetClientRect")
_moveWindow = user32.NewProc("MoveWindow")