libui/test/page14.c

210 lines
4.6 KiB
C
Raw Normal View History

2016-06-09 16:15:59 -05:00
// 9 june 2016
#include "test.h"
2016-06-09 20:30:33 -05:00
// TODOs:
// - GTK+ - make all expanding controls the same size, to match the other OSs? will they match the other OSs?
2016-06-09 16:15:59 -05:00
enum {
red,
green,
blue,
yellow,
2016-06-09 20:30:33 -05:00
white,
magenta,
orange,
purple,
cyan,
2016-06-09 16:15:59 -05:00
};
static const struct {
double r;
double g;
double b;
} colors[] = {
{ 1, 0, 0 },
{ 0, 0.5, 0 },
{ 0, 0, 1 },
{ 1, 1, 0 },
2016-06-09 20:30:33 -05:00
{ 1, 1, 1 },
{ 1, 0, 1 },
{ 1, 0.65, 0 },
{ 0.5, 0, 0.5 },
{ 0, 1, 1 },
2016-06-09 16:15:59 -05:00
};
static uiControl *testControl(const char *label, int color)
{
uiColorButton *b;
b = uiNewColorButton();
uiColorButtonSetColor(b, colors[color].r, colors[color].g, colors[color].b, 1.0);
return uiControl(b);
}
static uiControl *simpleGrid(void)
{
uiGrid *g;
uiControl *t4;
g = newGrid();
uiGridAppend(g, testControl("1", red),
0, 0, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("2", green),
1, 0, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("3", blue),
2, 0, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
t4 = testControl("4", green);
uiGridAppend(g, t4,
0, 1, 1, 1,
2016-06-09 17:57:58 -05:00
0, uiAlignFill, 1, uiAlignFill);
2016-06-09 16:15:59 -05:00
uiGridInsertAt(g, testControl("5", blue),
t4, uiAtTrailing, 2, 1,
2016-06-09 17:57:58 -05:00
0, uiAlignFill, 0, uiAlignFill);
2016-06-09 16:15:59 -05:00
uiGridAppend(g, testControl("6", yellow),
-1, 0, 1, 2,
2016-06-09 17:57:58 -05:00
1, uiAlignFill, 0, uiAlignFill);
2016-06-09 20:30:33 -05:00
return uiControl(g);
}
static uiControl *boxComparison(void)
{
uiBox *vbox;
uiGrid *g;
uiBox *hbox;
vbox = newVerticalBox();
uiBoxAppend(vbox, uiControl(uiNewLabel("Above")), 0);
uiBoxAppend(vbox, uiControl(uiNewHorizontalSeparator()), 0);
hbox = newHorizontalBox();
uiBoxAppend(vbox, uiControl(hbox), 0);
uiBoxAppend(hbox, testControl("1", white), 0);
uiBoxAppend(hbox, uiControl(uiNewLabel("A label")), 1);
uiBoxAppend(hbox, testControl("2", green), 0);
uiBoxAppend(hbox, uiControl(uiNewLabel("Another label")), 1);
uiBoxAppend(hbox, testControl("3", red), 0);
uiBoxAppend(vbox, uiControl(uiNewHorizontalSeparator()), 0);
g = newGrid();
uiBoxAppend(vbox, uiControl(g), 0);
uiGridAppend(g, testControl("1", white),
0, 0, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, uiControl(uiNewLabel("A label")),
1, 0, 1, 1,
1, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("2", green),
2, 0, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, uiControl(uiNewLabel("Another label")),
3, 0, 1, 1,
1, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("3", red),
4, 0, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
uiBoxAppend(vbox, uiControl(uiNewHorizontalSeparator()), 0);
uiBoxAppend(vbox, uiControl(uiNewLabel("Below")), 0);
return uiControl(vbox);
}
static uiControl *emptyLine(void)
{
uiGrid *g;
g = newGrid();
uiGridAppend(g, testControl("(0, 0)", red),
0, 0, 1, 1,
1, uiAlignFill, 1, uiAlignFill);
uiGridAppend(g, testControl("(0, 1)", blue),
0, 1, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("(10, 0)", green),
10, 0, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("(10, 1)", magenta),
10, 1, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
return uiControl(g);
}
static uiControl *emptyGrid(void)
{
uiGrid *g;
uiControl *t;
g = newGrid();
t = testControl("(0, 0)", red);
uiGridAppend(g, t,
0, 0, 1, 1,
1, uiAlignFill, 1, uiAlignFill);
uiControlHide(t);
return uiControl(g);
}
// TODO insert (need specialized insert/delete)
2016-06-09 16:15:59 -05:00
2016-06-09 20:30:33 -05:00
static uiControl *spanningGrid(void)
{
uiGrid *g;
g = uiNewGrid();
uiGridAppend(g, testControl("0", blue),
0, 4, 4, 1,
1, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("1", green),
4, 0, 1, 4,
0, uiAlignFill, 1, uiAlignFill);
uiGridAppend(g, testControl("2", red),
3, 3, 1, 1,
1, uiAlignFill, 1, uiAlignFill);
uiGridAppend(g, testControl("3", yellow),
0, 3, 2, 1,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("4", orange),
3, 0, 1, 2,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("5", purple),
1, 1, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("6", white),
0, 1, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
uiGridAppend(g, testControl("7", cyan),
1, 0, 1, 1,
0, uiAlignFill, 0, uiAlignFill);
2016-06-09 16:15:59 -05:00
return uiControl(g);
}
static const struct {
const char *name;
uiControl *(*f)(void);
} pages[] = {
2016-06-09 20:30:33 -05:00
// based on GTK+ test/testgrid.c
{ "Simple Grid", simpleGrid },
{ "Box Comparison", boxComparison },
{ "Empty Line", emptyLine },
{ "Empty Grid", emptyGrid },
{ "Spanning Grid", spanningGrid },
2016-06-09 16:15:59 -05:00
{ NULL, NULL },
2016-06-09 17:57:58 -05:00
};
2016-06-09 16:15:59 -05:00
uiTab *makePage14(void)
{
uiTab *page14;
int i;
page14 = newTab();
for (i = 0; pages[i].name != NULL; i++)
uiTabAppend(page14,
pages[i].name,
(*(pages[i].f))());
return page14;
}