andlabs-ui/redo/containers_windows.go

89 lines
2.3 KiB
Go
Raw Normal View History

2014-07-25 14:58:24 -05:00
// 25 july 2014
package ui
import (
"unsafe"
)
// #include "winapi_windows.h"
import "C"
/*
On Windows, container controls are just regular controls; their children have to be children of the parent window, and changing the contents of a switching container (such as a tab control) must be done manually.
2014-07-25 14:58:24 -05:00
TODO
- make sure all tabs cannot be deselected (that is, make sure the current tab can never have index -1)
- see if we can safely make the controls children of the tab control itself or if that would just screw our subclassing
2014-07-25 14:58:24 -05:00
*/
type tab struct {
*widgetbase
tabs []*container
2014-07-25 14:58:24 -05:00
}
func newTab() Tab {
w := newWidget(C.xWC_TABCONTROL,
C.TCS_TOOLTIPS | C.WS_TABSTOP,
0)
t := &tab{
widgetbase: w,
}
C.controlSetControlFont(w.hwnd)
C.setTabSubclass(w.hwnd, unsafe.Pointer(t))
return t
}
func (t *tab) setParent(win C.HWND) {
t.widgetbase.setParent(win)
2014-07-25 14:58:24 -05:00
for _, c := range t.tabs {
c.child.setParent(win)
2014-07-25 14:58:24 -05:00
}
}
func (t *tab) Append(name string, control Control) {
c := new(container)
t.tabs = append(t.tabs, c)
c.child = control
if t.parent != nil {
c.child.setParent(t.parent)
2014-07-25 14:58:24 -05:00
}
// initially hide tab 1..n controls; if we don't, they'll appear over other tabs, resulting in weird behavior
if len(t.tabs) != 1 {
c.child.containerHide()
}
2014-07-25 14:58:24 -05:00
C.tabAppend(t.hwnd, toUTF16(name))
}
//export tabChanging
func tabChanging(data unsafe.Pointer, current C.LRESULT) {
t := (*tab)(data)
t.tabs[int(current)].child.containerHide()
2014-07-25 14:58:24 -05:00
}
//export tabChanged
func tabChanged(data unsafe.Pointer, new C.LRESULT) {
t := (*tab)(data)
t.tabs[int(new)].child.containerShow()
2014-07-25 14:58:24 -05:00
}
// a tab control contains other controls; size appropriately
func (t *tab) allocate(x int, y int, width int, height int, d *sizing) []*allocation {
var r C.RECT
// figure out what the rect for each child is...
r.left = C.LONG(x) // load structure with the window's rect
2014-07-25 14:58:24 -05:00
r.top = C.LONG(y)
r.right = C.LONG(x + width)
r.bottom = C.LONG(y + height)
C.tabGetContentRect(t.hwnd, &r)
// and allocate
// don't allocate to just the current tab; allocate to all tabs!
2014-07-25 14:58:24 -05:00
for _, c := range t.tabs {
// because each widget is actually a child of the Window, the origin is the one we calculated above
c.resize(int(r.left), int(r.top), int(r.right - r.left), int(r.bottom - r.top))
2014-07-25 14:58:24 -05:00
}
// and now allocate the tab control itself
return t.widgetbase.allocate(x, y, width, height, d)
2014-07-25 14:58:24 -05:00
}