2015-04-12 00:06:42 -05:00
|
|
|
// 12 april 2015
|
|
|
|
#include "uipriv_unix.h"
|
|
|
|
|
2015-04-29 00:28:03 -05:00
|
|
|
// TODOs
|
|
|
|
// - clean up the bin handling
|
|
|
|
// - in particular, why are we holding a reference to binWidget again? if we should, then get rid of binSetParent() entirely!
|
|
|
|
|
2015-04-12 00:06:42 -05:00
|
|
|
struct tab {
|
2015-04-15 21:20:25 -05:00
|
|
|
uiTab t;
|
2015-04-16 22:20:54 -05:00
|
|
|
GtkWidget *widget;
|
|
|
|
GtkContainer *container;
|
|
|
|
GtkNotebook *notebook;
|
2015-04-29 00:20:09 -05:00
|
|
|
GArray *pages;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tabPage {
|
|
|
|
uiContainer *bin;
|
|
|
|
GtkWidget *binWidget;
|
2015-04-30 14:31:25 -05:00
|
|
|
int margined;
|
2015-04-12 00:06:42 -05:00
|
|
|
};
|
|
|
|
|
2015-04-18 16:14:19 -05:00
|
|
|
static void onDestroy(void *data)
|
2015-04-12 00:06:42 -05:00
|
|
|
{
|
2015-04-18 16:14:19 -05:00
|
|
|
struct tab *t = (struct tab *) data;
|
2015-04-29 00:20:09 -05:00
|
|
|
guint i;
|
|
|
|
struct tabPage *p;
|
2015-04-12 00:06:42 -05:00
|
|
|
|
2015-04-28 23:57:51 -05:00
|
|
|
// first hide ourselves to avoid flicker
|
|
|
|
gtk_widget_hide(t->widget);
|
|
|
|
// the pages do not have a libui parent, so we can simply destroy them
|
2015-04-29 00:26:52 -05:00
|
|
|
// we need to remove them from the tab first; see below
|
2015-04-29 00:20:09 -05:00
|
|
|
for (i = 0; i < t->pages->len; i++) {
|
|
|
|
p = &g_array_index(t->pages, struct tabPage, i);
|
2015-04-29 00:26:52 -05:00
|
|
|
gtk_container_remove(t->container, p->binWidget);
|
2015-04-29 00:20:09 -05:00
|
|
|
uiControlDestroy(uiControl(p->bin));
|
|
|
|
}
|
2015-04-28 23:57:51 -05:00
|
|
|
// then free ourselves
|
2015-04-29 00:20:09 -05:00
|
|
|
g_array_free(t->pages, TRUE);
|
2015-04-12 00:06:42 -05:00
|
|
|
uiFree(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define tabCapGrow 32
|
|
|
|
|
2015-04-28 23:57:51 -05:00
|
|
|
static void tabAppendPage(uiTab *tt, const char *name, uiControl *child)
|
2015-04-12 00:06:42 -05:00
|
|
|
{
|
2015-04-15 21:20:25 -05:00
|
|
|
struct tab *t = (struct tab *) tt;
|
2015-04-29 00:20:09 -05:00
|
|
|
struct tabPage p;
|
2015-04-12 00:06:42 -05:00
|
|
|
|
2015-04-29 00:20:09 -05:00
|
|
|
p.bin = newBin();
|
|
|
|
binSetMainControl(p.bin, child);
|
2015-04-28 23:57:51 -05:00
|
|
|
// and add it as a tab page
|
2015-04-29 00:20:09 -05:00
|
|
|
binSetParent(p.bin, (uintptr_t) (t->container));
|
|
|
|
p.binWidget = GTK_WIDGET(uiControlHandle(uiControl(p.bin)));
|
|
|
|
gtk_notebook_set_tab_label_text(t->notebook, p.binWidget, name);
|
2015-04-12 00:06:42 -05:00
|
|
|
|
2015-04-29 00:20:09 -05:00
|
|
|
g_array_append_val(t->pages, p);
|
2015-04-12 00:06:42 -05:00
|
|
|
}
|
2015-04-15 21:20:25 -05:00
|
|
|
|
2015-04-17 21:26:05 -05:00
|
|
|
static void tabDeletePage(uiTab *tt, uintmax_t n)
|
|
|
|
{
|
|
|
|
struct tab *t = (struct tab *) tt;
|
2015-04-29 00:20:09 -05:00
|
|
|
struct tabPage *p;
|
2015-04-17 21:26:05 -05:00
|
|
|
|
2015-04-29 00:20:09 -05:00
|
|
|
p = &g_array_index(t->pages, struct tabPage, n);
|
2015-04-17 21:26:05 -05:00
|
|
|
|
|
|
|
// make sure the page's control isn't destroyed
|
2015-04-29 00:20:09 -05:00
|
|
|
binSetMainControl(p->bin, NULL);
|
2015-04-17 21:26:05 -05:00
|
|
|
|
2015-04-18 16:28:13 -05:00
|
|
|
// now destroy the page
|
|
|
|
// this will also remove the tab
|
|
|
|
// why? simple: both gtk_notebook_remove_tab() and gtk_widget_destroy() call gtk_container_remove()
|
2015-04-29 00:26:52 -05:00
|
|
|
// we need to remove them from the tab first, though, otherwise they won't really be destroyed properly
|
|
|
|
// (the GtkNotebook will still have the tab in it because its reference ISN'T destroyed, and we crash resizing a bin that no longer exists
|
|
|
|
gtk_container_remove(t->container, p->binWidget);
|
2015-04-29 00:20:09 -05:00
|
|
|
uiControlDestroy(uiControl(p->bin));
|
|
|
|
|
|
|
|
g_array_remove_index(t->pages, n);
|
2015-04-17 21:26:05 -05:00
|
|
|
}
|
|
|
|
|
2015-04-30 14:31:25 -05:00
|
|
|
static uintmax_t tabNumPages(uiTab *tt)
|
|
|
|
{
|
|
|
|
struct tab *t = (struct tab *) tt;
|
|
|
|
|
|
|
|
return t->pages->len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tabMargined(uiTab *tt, uintmax_t n)
|
|
|
|
{
|
|
|
|
struct tab *t = (struct tab *) tt;
|
|
|
|
struct tabPage *p;
|
|
|
|
|
|
|
|
p = &g_array_index(t->pages, struct tabPage, n);
|
|
|
|
return p->margined;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tabSetMargined(uiTab *tt, uintmax_t n, int margined)
|
|
|
|
{
|
|
|
|
struct tab *t = (struct tab *) tt;
|
|
|
|
struct tabPage *p;
|
|
|
|
|
|
|
|
p = &g_array_index(t->pages, struct tabPage, n);
|
|
|
|
p->margined = margined;
|
|
|
|
if (p->margined)
|
|
|
|
binSetMargins(p->bin, gtkXMargin, gtkYMargin, gtkXMargin, gtkYMargin);
|
|
|
|
else
|
|
|
|
binSetMargins(p->bin, 0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2015-04-15 22:07:43 -05:00
|
|
|
uiTab *uiNewTab(void)
|
2015-04-15 21:20:25 -05:00
|
|
|
{
|
|
|
|
struct tab *t;
|
|
|
|
|
|
|
|
t = uiNew(struct tab);
|
|
|
|
|
|
|
|
uiUnixNewControl(uiControl(t), GTK_TYPE_NOTEBOOK,
|
2015-04-18 16:14:19 -05:00
|
|
|
FALSE, FALSE, onDestroy, t,
|
2015-04-15 21:20:25 -05:00
|
|
|
NULL);
|
|
|
|
|
2015-04-29 00:20:09 -05:00
|
|
|
t->pages = g_array_new(FALSE, TRUE, sizeof (struct tabPage));
|
|
|
|
|
2015-04-28 23:57:51 -05:00
|
|
|
t->widget = GTK_WIDGET(uiControlHandle(uiControl(t)));
|
2015-04-16 22:20:54 -05:00
|
|
|
t->container = GTK_CONTAINER(t->widget);
|
|
|
|
t->notebook = GTK_NOTEBOOK(t->widget);
|
|
|
|
|
2015-04-28 23:57:51 -05:00
|
|
|
uiTab(t)->AppendPage = tabAppendPage;
|
2015-04-17 21:26:05 -05:00
|
|
|
uiTab(t)->DeletePage = tabDeletePage;
|
2015-04-30 14:31:25 -05:00
|
|
|
uiTab(t)->NumPages = tabNumPages;
|
|
|
|
uiTab(t)->Margined = tabMargined;
|
|
|
|
uiTab(t)->SetMargined = tabSetMargined;
|
2015-04-15 21:20:25 -05:00
|
|
|
|
|
|
|
return uiTab(t);
|
|
|
|
}
|