summaryrefslogtreecommitdiff
path: root/newctrl/container_unix.go
blob: 90bc84b29acf5dfd60a83f7c2979368c113b7ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// +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
}