2015-07-30 11:31:39 -05:00
|
|
|
// 7 april 2015
|
2015-07-30 11:43:40 -05:00
|
|
|
#include "uipriv_unix.h"
|
|
|
|
|
|
|
|
// TODO clean this up
|
2015-07-30 11:31:39 -05:00
|
|
|
|
2015-08-27 14:30:55 -05:00
|
|
|
struct uiBox {
|
|
|
|
uiUnixControl c;
|
2015-07-30 11:31:39 -05:00
|
|
|
GtkWidget *widget;
|
|
|
|
GtkContainer *container;
|
|
|
|
GtkBox *box;
|
2015-08-27 14:30:55 -05:00
|
|
|
struct ptrArray *controls; // TODO switch to GArray
|
2015-07-30 11:31:39 -05:00
|
|
|
int vertical;
|
|
|
|
int padded;
|
|
|
|
GtkSizeGroup *stretchygroup; // ensures all stretchy controls have the same size
|
|
|
|
};
|
|
|
|
|
2016-04-25 19:09:20 -05:00
|
|
|
uiUnixControlAllDefaultsExceptDestroy(uiBox)
|
2015-07-30 11:31:39 -05:00
|
|
|
|
2016-04-25 19:09:20 -05:00
|
|
|
static void uiBoxDestroy(uiControl *c)
|
2015-07-30 11:31:39 -05:00
|
|
|
{
|
2016-04-25 19:09:20 -05:00
|
|
|
uiBox *b = uiBox(c);
|
2015-08-28 17:12:24 -05:00
|
|
|
struct child *bc;
|
2015-07-30 11:31:39 -05:00
|
|
|
|
|
|
|
while (b->controls->len != 0) {
|
2015-08-28 17:12:24 -05:00
|
|
|
bc = ptrArrayIndex(b->controls, struct child *, 0);
|
|
|
|
childDestroy(bc);
|
2015-07-30 11:31:39 -05:00
|
|
|
ptrArrayDelete(b->controls, 0);
|
|
|
|
}
|
|
|
|
ptrArrayDestroy(b->controls);
|
|
|
|
// kill the size group
|
|
|
|
g_object_unref(b->stretchygroup);
|
2016-04-25 19:09:20 -05:00
|
|
|
// and then ourselves
|
|
|
|
g_object_unref(b->widget);
|
|
|
|
uiFreeControl(uiControl(b));
|
2015-07-30 11:31:39 -05:00
|
|
|
}
|
|
|
|
|
2015-08-28 17:12:24 -05:00
|
|
|
#define isStretchy(bc) childFlag(bc)
|
|
|
|
|
2015-08-27 14:30:55 -05:00
|
|
|
void uiBoxAppend(uiBox *b, uiControl *c, int stretchy)
|
2015-07-30 11:31:39 -05:00
|
|
|
{
|
2015-08-28 17:12:24 -05:00
|
|
|
struct child *bc;
|
2015-07-30 11:43:40 -05:00
|
|
|
GtkWidget *widget;
|
2015-07-30 11:31:39 -05:00
|
|
|
|
2015-08-28 17:12:24 -05:00
|
|
|
bc = newChild(c, uiControl(b), b->container);
|
|
|
|
childSetFlag(bc, stretchy);
|
|
|
|
widget = childWidget(bc);
|
|
|
|
if (isStretchy(bc)) {
|
2015-07-30 11:43:40 -05:00
|
|
|
if (b->vertical) {
|
|
|
|
gtk_widget_set_vexpand(widget, TRUE);
|
|
|
|
gtk_widget_set_valign(widget, GTK_ALIGN_FILL);
|
|
|
|
} else {
|
|
|
|
gtk_widget_set_hexpand(widget, TRUE);
|
|
|
|
gtk_widget_set_halign(widget, GTK_ALIGN_FILL);
|
|
|
|
}
|
|
|
|
gtk_size_group_add_widget(b->stretchygroup, widget);
|
2015-08-28 17:12:24 -05:00
|
|
|
} else
|
2015-07-30 11:43:40 -05:00
|
|
|
if (b->vertical)
|
|
|
|
gtk_widget_set_vexpand(widget, FALSE);
|
|
|
|
else
|
|
|
|
gtk_widget_set_hexpand(widget, FALSE);
|
|
|
|
// TODO make the other dimension fill
|
2015-07-30 11:31:39 -05:00
|
|
|
ptrArrayAppend(b->controls, bc);
|
|
|
|
}
|
|
|
|
|
2015-08-27 14:30:55 -05:00
|
|
|
void uiBoxDelete(uiBox *b, uintmax_t index)
|
2015-07-30 11:31:39 -05:00
|
|
|
{
|
2015-08-28 17:12:24 -05:00
|
|
|
struct child *bc;
|
2015-07-30 11:31:39 -05:00
|
|
|
|
2015-08-28 17:12:24 -05:00
|
|
|
bc = ptrArrayIndex(b->controls, struct child *, index);
|
2015-07-30 11:31:39 -05:00
|
|
|
ptrArrayDelete(b->controls, index);
|
2015-08-28 17:12:24 -05:00
|
|
|
if (isStretchy(bc))
|
|
|
|
gtk_size_group_remove_widget(b->stretchygroup, childWidget(bc));
|
|
|
|
childRemove(bc);
|
2015-07-30 11:31:39 -05:00
|
|
|
}
|
|
|
|
|
2015-08-27 14:30:55 -05:00
|
|
|
int uiBoxPadded(uiBox *b)
|
2015-07-30 11:31:39 -05:00
|
|
|
{
|
|
|
|
return b->padded;
|
|
|
|
}
|
|
|
|
|
2015-08-27 14:30:55 -05:00
|
|
|
void uiBoxSetPadded(uiBox *b, int padded)
|
2015-07-30 11:31:39 -05:00
|
|
|
{
|
|
|
|
b->padded = padded;
|
|
|
|
if (b->padded)
|
|
|
|
if (b->vertical)
|
|
|
|
gtk_box_set_spacing(b->box, gtkYPadding);
|
|
|
|
else
|
|
|
|
gtk_box_set_spacing(b->box, gtkXPadding);
|
|
|
|
else
|
|
|
|
gtk_box_set_spacing(b->box, 0);
|
|
|
|
}
|
|
|
|
|
2015-07-30 11:43:40 -05:00
|
|
|
static uiBox *finishNewBox(GtkOrientation orientation)
|
2015-07-30 11:31:39 -05:00
|
|
|
{
|
2015-08-27 14:30:55 -05:00
|
|
|
uiBox *b;
|
2015-07-30 11:31:39 -05:00
|
|
|
|
2016-04-25 19:09:20 -05:00
|
|
|
uiUnixNewControl(uiBox, b);
|
2015-07-30 11:31:39 -05:00
|
|
|
|
|
|
|
b->widget = gtk_box_new(orientation, 0);
|
|
|
|
b->container = GTK_CONTAINER(b->widget);
|
|
|
|
b->box = GTK_BOX(b->widget);
|
|
|
|
|
|
|
|
b->vertical = orientation == GTK_ORIENTATION_VERTICAL;
|
|
|
|
|
|
|
|
if (b->vertical)
|
|
|
|
b->stretchygroup = gtk_size_group_new(GTK_SIZE_GROUP_VERTICAL);
|
|
|
|
else
|
|
|
|
b->stretchygroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
|
|
|
|
|
|
|
|
b->controls = newPtrArray();
|
|
|
|
|
2015-08-27 14:30:55 -05:00
|
|
|
return b;
|
2015-07-30 11:31:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
uiBox *uiNewHorizontalBox(void)
|
|
|
|
{
|
|
|
|
return finishNewBox(GTK_ORIENTATION_HORIZONTAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
uiBox *uiNewVerticalBox(void)
|
|
|
|
{
|
|
|
|
return finishNewBox(GTK_ORIENTATION_VERTICAL);
|
|
|
|
}
|