summaryrefslogtreecommitdiff
path: root/new/container_unix.c
blob: f5cd056887d02b47351d824d822f7d3364ef3d46 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// 13 august 2014
#include "uipriv_unix.h"

G_DEFINE_TYPE(uiContainer, uiContainer, GTK_TYPE_CONTAINER)

static void uiContainer_init(uiContainer *c)
{
#ifdef uiLogAllocations
	fprintf(stderr, "%p alloc uiContainer\n", c);
#endif
	c->children = g_ptr_array_new();
	gtk_widget_set_has_window(GTK_WIDGET(c), FALSE);
}

// TODO explain the order here
// TODO guard against use of forall after the ptr array unref
static void uiContainer_dispose(GObject *obj)
{
	g_ptr_array_unref(uiContainer(obj)->children);
	if (uiContainer(obj)->child != NULL) {
		uiControlDestroy(uiContainer(obj)->child);
		uiContainer(obj)->child = NULL;
	}
	G_OBJECT_CLASS(uiContainer_parent_class)->dispose(obj);
}

static void uiContainer_finalize(GObject *obj)
{
	G_OBJECT_CLASS(uiContainer_parent_class)->finalize(obj);
#ifdef uiLogAllocations
	fprintf(stderr, "%p free\n", obj);
#endif
}

static void uiContainer_add(GtkContainer *container, GtkWidget *widget)
{
	gtk_widget_set_parent(widget, GTK_WIDGET(container));
	g_ptr_array_add(uiContainer(container)->children, widget);
}

static void uiContainer_remove(GtkContainer *container, GtkWidget *widget)
{
	gtk_widget_unparent(widget);
	g_ptr_array_remove(uiContainer(container)->children, widget);
}

static void uiContainer_size_allocate(GtkWidget *widget, GtkAllocation *allocation)
{
	uiControl *c;
	uiSizing d;

	gtk_widget_set_allocation(widget, allocation);
	c = uiContainer(widget)->child;
	if (c != NULL)
		(*(c->resize))(c, allocation->x, allocation->y, allocation->width, allocation->height, &d);
}

struct forall {
	GtkCallback callback;
	gpointer data;
};

static void doforall(gpointer obj, gpointer data)
{
	struct forall *s = (struct forall *) data;

	(*(s->callback))(GTK_WIDGET(obj), s->data);
}

static void uiContainer_forall(GtkContainer *container, gboolean includeInternals, GtkCallback callback, gpointer data)
{
	struct forall s;

	s.callback = callback;
	s.data = data;
	g_ptr_array_foreach(uiContainer(container)->children, doforall, &s);
}

static void uiContainer_class_init(uiContainerClass *class)
{
	G_OBJECT_CLASS(class)->dispose = uiContainer_dispose;
	G_OBJECT_CLASS(class)->finalize = uiContainer_finalize;
	GTK_WIDGET_CLASS(class)->size_allocate = uiContainer_size_allocate;
	GTK_CONTAINER_CLASS(class)->add = uiContainer_add;
	GTK_CONTAINER_CLASS(class)->remove = uiContainer_remove;
	GTK_CONTAINER_CLASS(class)->forall = uiContainer_forall;
}

GtkWidget *newContainer(void)
{
	uiContainer *c;

	c = uiContainer(g_object_new(uiContainerType, NULL));
	return GTK_WIDGET(c);
}