diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-30 20:38:01 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-30 20:38:01 -0400 |
| commit | c5917de29c5452b4ff11441fe353fe46984caa4f (patch) | |
| tree | 743b61a7d435e8d78cef0616a7007e597704f403 /redo/control_unix.go | |
| parent | 713be62f16b2f621eb104a1ba916ef5b1781eecc (diff) | |
Split out the default definitions of Control.allocate() into a single place.
Diffstat (limited to 'redo/control_unix.go')
| -rw-r--r-- | redo/control_unix.go | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/redo/control_unix.go b/redo/control_unix.go index 92baa1b..d0a4c18 100644 --- a/redo/control_unix.go +++ b/redo/control_unix.go @@ -35,16 +35,7 @@ func newControl(widget *C.GtkWidget) *controlbase { c.fcontainerHide = func() { C.gtk_widget_hide(c.widget) } - c.fallocate = func(x int, y int, width int, height int, d *sizing) []*allocation { - // TODO split into its own function - return []*allocation{&allocation{ - x: x, - y: y, - width: width, - height: height, - this: c, - }} - } + c.fallocate = baseallocate(c) c.fpreferredSize = func(d *sizing) (int, int) { // GTK+ 3 makes this easy: controls can tell us what their preferred size is! // ...actually, it tells us two things: the "minimum size" and the "natural size". |
