libui/unix/window.c

138 lines
3.0 KiB
C
Raw Normal View History

// 6 april 2015
#include "uipriv_unix.h"
2015-04-15 21:26:27 -05:00
struct window {
uiWindow w;
GtkWidget *widget;
uiParent *content;
int (*onClosing)(uiWindow *, void *);
void *onClosingData;
int margined;
};
static gboolean onClosing(GtkWidget *win, GdkEvent *e, gpointer data)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) data;
// return exact values just in case
if ((*(w->onClosing))(w, w->onClosingData))
return FALSE;
return TRUE;
}
static int defaultOnClosing(uiWindow *w, void *data)
{
return 1;
}
static void onDestroy(GtkWidget *widget, gpointer data)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) data;
uiFree(w);
}
2015-04-15 21:26:27 -05:00
static void windowDestroy(uiWindow *ww)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
gtk_widget_destroy(w->widget);
}
2015-04-15 21:26:27 -05:00
static uintptr_t handle(uiWindow *ww)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
return (uintptr_t) (w->widget);
}
2015-04-15 21:26:27 -05:00
static char *title(uiWindow *ww)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
return g_strdup(gtk_window_get_title(GTK_WINDOW(w->widget)));
}
2015-04-15 21:26:27 -05:00
static void setTitle(uiWindow *ww, const char *title)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
gtk_window_set_title(GTK_WINDOW(w->widget), title);
}
2015-04-15 21:26:27 -05:00
static void show(uiWindow *ww)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
// don't use gtk_widget_show_all(); that will override user hidden settings
gtk_widget_show(w->widget);
}
2015-04-15 21:26:27 -05:00
static void hide(uiWindow *ww)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
gtk_widget_hide(w->widget);
}
2015-04-15 21:26:27 -05:00
static void setOnClosing(uiWindow *ww, int (*f)(uiWindow *, void *), void *data)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
w->onClosing = f;
w->onClosingData = data;
}
2015-04-15 21:26:27 -05:00
static void setChild(uiWindow *ww, uiControl *c)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
uiParentSetChild(w->content, c);
uiParentUpdate(w->content);
}
2015-04-15 21:26:27 -05:00
static int margined(uiWindow *ww)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
return w->margined;
}
2015-04-15 21:26:27 -05:00
static void setMargined(uiWindow *ww, int margined)
{
2015-04-15 21:26:27 -05:00
struct window *w = (struct window *) ww;
w->margined = margined;
if (w->margined)
uiParentSetMargins(w->content, gtkXMargin, gtkYMargin, gtkXMargin, gtkYMargin);
else
uiParentSetMargins(w->content, 0, 0, 0, 0);
uiParentUpdate(w->content);
}
2015-04-15 21:26:27 -05:00
uiWindow *uiNewWindow(char *title, int width, int height)
{
struct window *w;
w = uiNew(struct window);
w->widget = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_title(GTK_WINDOW(w->widget), title);
gtk_window_resize(GTK_WINDOW(w->widget), width, height);
g_signal_connect(w->widget, "delete-event", G_CALLBACK(onClosing), w);
g_signal_connect(w->widget, "destroy", G_CALLBACK(onDestroy), w);
w->content = uiNewParent((uintptr_t) (w->widget));
w->onClosing = defaultOnClosing;
uiWindow(w)->Destroy = windowDestroy;
uiWindow(w)->Handle = handle;
uiWindow(w)->Title = title;
uiWindow(w)->SetTitle = setTitle;
uiWindow(w)->Show = show;
uiWindow(w)->Hide = hide;
uiWindow(w)->OnClosing = setOnClosing;
uiWindow(w)->SetChild = setChild;
uiWindow(w)->Margined = margined;
uiWindow(w)->SetMargined = setMargined;
return uiWindow(w);
}