summaryrefslogtreecommitdiff
path: root/redo/controls_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'redo/controls_windows.go')
-rw-r--r--redo/controls_windows.go11
1 files changed, 4 insertions, 7 deletions
diff --git a/redo/controls_windows.go b/redo/controls_windows.go
index c517074..68ea05b 100644
--- a/redo/controls_windows.go
+++ b/redo/controls_windows.go
@@ -11,6 +11,7 @@ import "C"
type widgetbase struct {
hwnd C.HWND
+ parent C.HWND
}
func newWidget(class C.LPCWSTR, style C.DWORD, extstyle C.DWORD) *widgetbase {
@@ -21,13 +22,9 @@ func newWidget(class C.LPCWSTR, style C.DWORD, extstyle C.DWORD) *widgetbase {
// these few methods are embedded by all the various Controls since they all will do the same thing
-func (w *widgetbase) unparent() {
- C.controlSetParent(w.hwnd, C.msgwin)
-}
-
-func (w *widgetbase) parent(win *window) {
- C.controlSetParent(w.hwnd, win.hwnd)
- // TODO new control does not show up until window is resized
+func (w *widgetbase) setParent(win C.HWND) {
+ C.controlSetParent(w.hwnd, win)
+ w.parent = win
}
func (w *widgetbase) containerShow() {