From aed423a09f35e26a318bd44a6670d4222906de9a Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 18 Oct 2014 17:03:38 -0400 Subject: Remvoed the newctrl working directory. --- newctrl/container_unix.go | 74 ----------------------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 newctrl/container_unix.go (limited to 'newctrl/container_unix.go') diff --git a/newctrl/container_unix.go b/newctrl/container_unix.go deleted file mode 100644 index 90bc84b..0000000 --- a/newctrl/container_unix.go +++ /dev/null @@ -1,74 +0,0 @@ -// +build !windows,!darwin - -// 23 february 2014 - -package ui - -import ( - "unsafe" -) - -// #include "gtk_unix.h" -import "C" - -type container struct { - *controlSingleWidget - container *C.GtkContainer -} - -type sizing struct { - sizingbase - - // for size calculations - // gtk+ needs nothing - - // for the actual resizing - // gtk+ needs nothing -} - -func newContainer() *container { - c := new(container) - c.controlSingleWidget = newControlSingleWidget(C.newContainer(unsafe.Pointer(c))) - c.container = (*C.GtkContainer)(unsafe.Pointer(c.widget)) - return c -} - -func (c *container) parent() *controlParent { - return &controlParent{c.container} -} - -func (c *container) allocation(margined bool) C.GtkAllocation { - var a C.GtkAllocation - - C.gtk_widget_get_allocation(c.widget, &a) - if margined { - a.x += C.int(gtkXMargin) - a.y += C.int(gtkYMargin) - a.width -= C.int(gtkXMargin) * 2 - a.height -= C.int(gtkYMargin) * 2 - } - return a -} - -// we can just return these values as is -// note that allocations of a widget on GTK+ have their origin in the /window/ origin -func (c *container) bounds(d *sizing) (int, int, int, int) { - var a C.GtkAllocation - - C.gtk_widget_get_allocation(c.widget, &a) - return int(a.x), int(a.y), int(a.width), int(a.height) -} - -const ( - gtkXMargin = 12 - gtkYMargin = 12 - gtkXPadding = 12 - gtkYPadding = 6 -) - -func (w *window) beginResize() (d *sizing) { - d = new(sizing) - d.xpadding = gtkXPadding - d.ypadding = gtkYPadding - return d -} -- cgit v1.2.3