Finished reimplemented GTK+ uiTab.
This commit is contained in:
parent
381c7e9277
commit
7abf88d9ef
|
@ -9,6 +9,8 @@ struct tab {
|
||||||
GtkNotebook *notebook;
|
GtkNotebook *notebook;
|
||||||
|
|
||||||
GArray *pages;
|
GArray *pages;
|
||||||
|
|
||||||
|
void (*baseCommitDestroy)(uiControl *);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct tabPage {
|
struct tabPage {
|
||||||
|
@ -19,6 +21,26 @@ struct tabPage {
|
||||||
|
|
||||||
uiDefineControlType(uiTab, uiTypeTab, struct tab)
|
uiDefineControlType(uiTab, uiTypeTab, struct tab)
|
||||||
|
|
||||||
|
static void tabCommitDestroy(uiControl *c)
|
||||||
|
{
|
||||||
|
struct tab *t = (struct tab *) c;
|
||||||
|
guint i;
|
||||||
|
struct tabPage *page;
|
||||||
|
|
||||||
|
// the pages do not have a libui parent, so we can simply destroy them
|
||||||
|
// we need to remove them from the tab first; see below
|
||||||
|
for (i = 0; i < t->pages->len; i++) {
|
||||||
|
page = &g_array_index(t->pages, struct tabPage, i);
|
||||||
|
binSetChild(page->bin, NULL);
|
||||||
|
uiControlDestroy(page->c);
|
||||||
|
uiControlSetParent(page->bin, NULL);
|
||||||
|
uiControlDestroy(page->bin);
|
||||||
|
}
|
||||||
|
// then free ourselves
|
||||||
|
g_array_free(t->pages, TRUE);
|
||||||
|
(*(t->baseCommitDestroy))(uiControl(t));
|
||||||
|
}
|
||||||
|
|
||||||
static uintptr_t tabHandle(uiControl *c)
|
static uintptr_t tabHandle(uiControl *c)
|
||||||
{
|
{
|
||||||
struct tab *t = (struct tab *) c;
|
struct tab *t = (struct tab *) c;
|
||||||
|
@ -53,8 +75,23 @@ static void tabInsertAt(uiTab *tt, const char *name, uintmax_t n, uiControl *chi
|
||||||
static void tabDelete(uiTab *tt, uintmax_t n)
|
static void tabDelete(uiTab *tt, uintmax_t n)
|
||||||
{
|
{
|
||||||
struct tab *t = (struct tab *) tt;
|
struct tab *t = (struct tab *) tt;
|
||||||
|
struct tabPage *page;
|
||||||
|
|
||||||
PUT_CODE_HERE;
|
page = &g_array_index(t->pages, struct tabPage, n);
|
||||||
|
|
||||||
|
// make sure the page's control isn't destroyed
|
||||||
|
binSetChild(page->bin, NULL);
|
||||||
|
|
||||||
|
// 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()
|
||||||
|
// 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)
|
||||||
|
// TODO redo this comment
|
||||||
|
uiControlSetParent(page->bin, NULL);
|
||||||
|
uiControlDestroy(page->bin);
|
||||||
|
|
||||||
|
g_array_remove_index(t->pages, n);
|
||||||
}
|
}
|
||||||
|
|
||||||
static uintmax_t tabNumPages(uiTab *tt)
|
static uintmax_t tabNumPages(uiTab *tt)
|
||||||
|
@ -98,6 +135,8 @@ uiTab *uiNewTab(void)
|
||||||
t->pages = g_array_new(FALSE, TRUE, sizeof (struct tabPage));
|
t->pages = g_array_new(FALSE, TRUE, sizeof (struct tabPage));
|
||||||
|
|
||||||
uiControl(t)->Handle = tabHandle;
|
uiControl(t)->Handle = tabHandle;
|
||||||
|
t->baseCommitDestroy = uiControl(t)->CommitDestroy;
|
||||||
|
uiControl(t)->CommitDestroy = tabCommitDestroy;
|
||||||
|
|
||||||
uiTab(t)->Append = tabAppend;
|
uiTab(t)->Append = tabAppend;
|
||||||
uiTab(t)->InsertAt = tabInsertAt;
|
uiTab(t)->InsertAt = tabInsertAt;
|
||||||
|
|
87
unix/tab.c
87
unix/tab.c
|
@ -1,87 +0,0 @@
|
||||||
// 12 april 2015
|
|
||||||
#include "uipriv_unix.h"
|
|
||||||
|
|
||||||
struct tab {
|
|
||||||
uiTab t;
|
|
||||||
GtkWidget *widget;
|
|
||||||
GtkContainer *container;
|
|
||||||
GtkNotebook *notebook;
|
|
||||||
GArray *pages;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct tabPage {
|
|
||||||
uiBin *bin;
|
|
||||||
// TODO remove the need for this
|
|
||||||
GtkWidget *binWidget;
|
|
||||||
int margined;
|
|
||||||
};
|
|
||||||
|
|
||||||
static void onDestroy(void *data)
|
|
||||||
{
|
|
||||||
struct tab *t = (struct tab *) data;
|
|
||||||
guint i;
|
|
||||||
struct tabPage *page;
|
|
||||||
|
|
||||||
// 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
|
|
||||||
// we need to remove them from the tab first; see below
|
|
||||||
for (i = 0; i < t->pages->len; i++) {
|
|
||||||
page = &g_array_index(t->pages, struct tabPage, i);
|
|
||||||
uiBinRemoveOSParent(page->bin);
|
|
||||||
uiControlDestroy(uiControl(page->bin));
|
|
||||||
}
|
|
||||||
// then free ourselves
|
|
||||||
g_array_free(t->pages, TRUE);
|
|
||||||
uiFree(t);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void tabShow(uiControl *c)
|
|
||||||
{
|
|
||||||
struct tab *t = (struct tab *) t;
|
|
||||||
|
|
||||||
// don't call gtk_widget_show_all() like the default handler does; that'll override user hiding of children
|
|
||||||
gtk_widget_show(t->widget);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void tabDeletePage(uiTab *tt, uintmax_t n)
|
|
||||||
{
|
|
||||||
struct tab *t = (struct tab *) tt;
|
|
||||||
struct tabPage *page;
|
|
||||||
|
|
||||||
page = &g_array_index(t->pages, struct tabPage, n);
|
|
||||||
|
|
||||||
// make sure the page's control isn't destroyed
|
|
||||||
uiBinSetMainControl(page->bin, NULL);
|
|
||||||
|
|
||||||
// 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()
|
|
||||||
// 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
|
|
||||||
// TODO redo this comment
|
|
||||||
uiBinRemoveOSParent(page->bin);
|
|
||||||
uiControlDestroy(uiControl(page->bin));
|
|
||||||
|
|
||||||
g_array_remove_index(t->pages, n);
|
|
||||||
}
|
|
||||||
|
|
||||||
uiTab *uiNewTab(void)
|
|
||||||
{
|
|
||||||
struct tab *t;
|
|
||||||
|
|
||||||
t = uiNew(struct tab);
|
|
||||||
|
|
||||||
uiControl(t)->Show = tabShow;
|
|
||||||
|
|
||||||
uiTab(t)->AppendPage = tabAppendPage;
|
|
||||||
uiTab(t)->InsertPageBefore = tabInsertPageBefore;
|
|
||||||
uiTab(t)->DeletePage = tabDeletePage;
|
|
||||||
uiTab(t)->NumPages = tabNumPages;
|
|
||||||
uiTab(t)->Margined = tabMargined;
|
|
||||||
uiTab(t)->SetMargined = tabSetMargined;
|
|
||||||
|
|
||||||
return uiTab(t);
|
|
||||||
}
|
|
Loading…
Reference in New Issue