2015-04-07 17:53:09 -05:00
|
|
|
// 7 april 2015
|
|
|
|
#include "uipriv.h"
|
|
|
|
|
2015-04-09 15:57:55 -05:00
|
|
|
// TODO
|
|
|
|
// - use stackControl
|
|
|
|
// - change prefwid/prefht to preferredWidth/preferredHeight
|
|
|
|
|
2015-04-07 17:53:09 -05:00
|
|
|
typedef struct stack stack;
|
2015-04-09 15:57:55 -05:00
|
|
|
typedef struct stackControl stackControl;
|
2015-04-07 17:53:09 -05:00
|
|
|
|
|
|
|
struct stack {
|
|
|
|
uiControl **controls;
|
|
|
|
int *stretchy;
|
2015-04-09 15:57:55 -05:00
|
|
|
intmax_t *width;
|
2015-04-07 17:53:09 -05:00
|
|
|
intmax_t *height;
|
|
|
|
uintmax_t len;
|
|
|
|
uintmax_t cap;
|
|
|
|
int vertical;
|
|
|
|
uintptr_t parent;
|
2015-04-09 14:59:40 -05:00
|
|
|
int padded;
|
2015-04-07 17:53:09 -05:00
|
|
|
};
|
|
|
|
|
2015-04-09 15:57:55 -05:00
|
|
|
struct stackControl {
|
|
|
|
uiControl *control;
|
|
|
|
int stretchy;
|
|
|
|
intmax_t width; // both used by resize(); preallocated to save time and reduce risk of failure
|
|
|
|
intmax_t height;
|
|
|
|
};
|
2015-04-07 17:53:09 -05:00
|
|
|
|
2015-04-07 23:43:35 -05:00
|
|
|
static void stackDestroy(uiControl *c)
|
|
|
|
{
|
2015-04-09 15:57:55 -05:00
|
|
|
stack *s = (stack *) (c->data);
|
2015-04-07 23:43:35 -05:00
|
|
|
uintmax_t i;
|
|
|
|
|
2015-04-09 15:57:55 -05:00
|
|
|
for (i = 0; i < s->len; i++)
|
2015-04-07 23:43:35 -05:00
|
|
|
uiControlDestroy(s->controls[i]);
|
|
|
|
uiFree(s->controls);
|
|
|
|
uiFree(s->stretchy);
|
|
|
|
uiFree(s->width);
|
|
|
|
uiFree(s->height);
|
|
|
|
uiFree(s);
|
2015-04-09 15:57:55 -05:00
|
|
|
uiFree(c);
|
2015-04-07 23:43:35 -05:00
|
|
|
}
|
|
|
|
|
2015-04-07 17:53:09 -05:00
|
|
|
static uintptr_t stackHandle(uiControl *c)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void stackSetParent(uiControl *c, uintptr_t parent)
|
|
|
|
{
|
2015-04-09 15:57:55 -05:00
|
|
|
stack *s = (stack *) (c->data);
|
2015-04-07 17:53:09 -05:00
|
|
|
uintmax_t i;
|
|
|
|
|
2015-04-08 17:04:46 -05:00
|
|
|
s->parent = parent;
|
2015-04-09 15:57:55 -05:00
|
|
|
for (i = 0; i < s->len; i++)
|
|
|
|
uiControlSetParent(s->controls[i], s->parent);
|
2015-04-08 17:04:46 -05:00
|
|
|
updateParent(s->parent);
|
2015-04-07 17:53:09 -05:00
|
|
|
}
|
|
|
|
|
2015-04-09 15:21:09 -05:00
|
|
|
static void stackRemoveParent(uiControl *c)
|
|
|
|
{
|
2015-04-09 15:57:55 -05:00
|
|
|
stack *s = (stack *) (c->data);
|
2015-04-09 15:21:09 -05:00
|
|
|
uintmax_t i;
|
|
|
|
uintptr_t oldparent;
|
|
|
|
|
|
|
|
oldparent = s->parent;
|
|
|
|
s->parent = 0;
|
2015-04-09 15:57:55 -05:00
|
|
|
for (i = 0; i < s->len; i++)
|
|
|
|
uiControlRemoveParent(s->controls[i]);
|
2015-04-09 15:21:09 -05:00
|
|
|
updateParent(oldparent);
|
|
|
|
}
|
|
|
|
|
2015-04-09 15:57:55 -05:00
|
|
|
static void stackPreferredSize(uiControl *c, uiSizing *d, intmax_t *width, intmax_t *height)
|
2015-04-07 17:53:09 -05:00
|
|
|
{
|
2015-04-09 15:57:55 -05:00
|
|
|
stack *s = (stack *) (c->data);
|
2015-04-07 17:53:09 -05:00
|
|
|
int xpadding, ypadding;
|
|
|
|
uintmax_t nStretchy;
|
|
|
|
intmax_t maxswid, maxsht;
|
|
|
|
uintmax_t i;
|
2015-04-09 15:57:55 -05:00
|
|
|
intmax_t prefwid, prefht;
|
2015-04-07 17:53:09 -05:00
|
|
|
|
2015-04-09 15:57:55 -05:00
|
|
|
*width = 0;
|
|
|
|
*height = 0;
|
2015-04-07 17:53:09 -05:00
|
|
|
if (s->len == 0)
|
2015-04-09 15:57:55 -05:00
|
|
|
return;
|
2015-04-07 17:53:09 -05:00
|
|
|
|
2015-04-09 14:59:40 -05:00
|
|
|
// 0) get this Stack's padding
|
2015-04-07 17:53:09 -05:00
|
|
|
xpadding = 0;
|
|
|
|
ypadding = 0;
|
2015-04-09 14:59:40 -05:00
|
|
|
if (s->padded) {
|
2015-04-09 15:57:55 -05:00
|
|
|
xpadding = d->xPadding;
|
|
|
|
ypadding = d->yPadding;
|
2015-04-09 14:59:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 1) initialize the desired rect with the needed padding
|
2015-04-07 17:53:09 -05:00
|
|
|
if (s->vertical)
|
2015-04-09 15:57:55 -05:00
|
|
|
*height = (s->len - 1) * ypadding;
|
2015-04-07 17:53:09 -05:00
|
|
|
else
|
2015-04-09 15:57:55 -05:00
|
|
|
*width = (s->len - 1) * xpadding;
|
2015-04-07 17:53:09 -05:00
|
|
|
|
|
|
|
// 2) add in the size of non-stretchy controls and get (but not add in) the largest widths and heights of stretchy controls
|
|
|
|
// we still add in like direction of stretchy controls
|
|
|
|
nStretchy = 0;
|
|
|
|
maxswid = 0;
|
|
|
|
maxsht = 0;
|
|
|
|
for (i = 0; i < s->len; i++) {
|
2015-04-09 15:57:55 -05:00
|
|
|
uiControlPreferredSize(s->controls[i], d, &prefwid, &prefht);
|
2015-04-07 17:53:09 -05:00
|
|
|
if (s->stretchy[i]) {
|
|
|
|
nStretchy++;
|
2015-04-09 15:57:55 -05:00
|
|
|
if (maxswid < prefwid)
|
|
|
|
maxswid = prefwid;
|
|
|
|
if (maxsht < prefht)
|
|
|
|
maxsht = prefht;
|
2015-04-07 17:53:09 -05:00
|
|
|
}
|
|
|
|
if (s->vertical) {
|
2015-04-09 15:57:55 -05:00
|
|
|
if (*width < prefwid)
|
|
|
|
*width = prefwid;
|
2015-04-07 17:53:09 -05:00
|
|
|
if (!s->stretchy[i])
|
2015-04-09 15:57:55 -05:00
|
|
|
*height += prefht;
|
2015-04-07 17:53:09 -05:00
|
|
|
} else {
|
|
|
|
if (!s->stretchy[i])
|
2015-04-09 15:57:55 -05:00
|
|
|
*width += prefwid;
|
|
|
|
if (*height < prefht)
|
|
|
|
*height = prefht;
|
2015-04-07 17:53:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3) and now we can add in stretchy controls
|
|
|
|
if (s->vertical)
|
2015-04-09 15:57:55 -05:00
|
|
|
*height += nStretchy * maxsht;
|
2015-04-07 17:53:09 -05:00
|
|
|
else
|
2015-04-09 15:57:55 -05:00
|
|
|
*width += nStretchy * maxswid;
|
2015-04-07 17:53:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void stackResize(uiControl *c, intmax_t x, intmax_t y, intmax_t width, intmax_t height, uiSizing *d)
|
|
|
|
{
|
2015-04-09 15:57:55 -05:00
|
|
|
stack *s = (stack *) (c->data);
|
2015-04-07 17:53:09 -05:00
|
|
|
int xpadding, ypadding;
|
|
|
|
uintmax_t nStretchy;
|
|
|
|
intmax_t stretchywid, stretchyht;
|
|
|
|
uintmax_t i;
|
2015-04-09 15:57:55 -05:00
|
|
|
intmax_t prefwid, prefht;
|
2015-04-07 17:53:09 -05:00
|
|
|
|
|
|
|
if (s->len == 0)
|
|
|
|
return;
|
|
|
|
|
2015-04-09 14:59:40 -05:00
|
|
|
// -1) get this Stack's padding
|
2015-04-07 17:53:09 -05:00
|
|
|
xpadding = 0;
|
|
|
|
ypadding = 0;
|
2015-04-09 14:59:40 -05:00
|
|
|
if (s->padded) {
|
2015-04-09 15:57:55 -05:00
|
|
|
xpadding = d->xPadding;
|
|
|
|
ypadding = d->yPadding;
|
2015-04-09 14:59:40 -05:00
|
|
|
}
|
2015-04-07 17:53:09 -05:00
|
|
|
|
|
|
|
// 0) inset the available rect by the needed padding
|
|
|
|
if (s->vertical)
|
|
|
|
height -= (s->len - 1) * ypadding;
|
|
|
|
else
|
|
|
|
width -= (s->len - 1) * xpadding;
|
|
|
|
|
|
|
|
// 1) get width and height of non-stretchy controls
|
|
|
|
// this will tell us how much space will be left for stretchy controls
|
|
|
|
stretchywid = width;
|
|
|
|
stretchyht = height;
|
|
|
|
nStretchy = 0;
|
|
|
|
for (i = 0; i < s->len; i++) {
|
|
|
|
if (s->stretchy[i]) {
|
|
|
|
nStretchy++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
c = s->controls[i];
|
2015-04-09 15:57:55 -05:00
|
|
|
uiControlPreferredSize(s->controls[i], d, &prefwid, &prefht);
|
2015-04-07 17:53:09 -05:00
|
|
|
if (s->vertical) { // all controls have same width
|
|
|
|
s->width[i] = width;
|
2015-04-09 15:57:55 -05:00
|
|
|
s->height[i] = prefht;
|
|
|
|
stretchyht -= prefht;
|
2015-04-07 17:53:09 -05:00
|
|
|
} else { // all controls have same height
|
2015-04-09 15:57:55 -05:00
|
|
|
s->width[i] = prefwid;
|
2015-04-07 17:53:09 -05:00
|
|
|
s->height[i] = height;
|
2015-04-09 15:57:55 -05:00
|
|
|
stretchywid -= prefwid;
|
2015-04-07 17:53:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2) now get the size of stretchy controls
|
|
|
|
if (nStretchy != 0)
|
|
|
|
if (s->vertical)
|
|
|
|
stretchyht /= nStretchy;
|
|
|
|
else
|
|
|
|
stretchywid /= nStretchy;
|
|
|
|
for (i = 0; i < s->len; i++)
|
|
|
|
if (s->stretchy[i]) {
|
|
|
|
s->width[i] = stretchywid;
|
|
|
|
s->height[i] = stretchyht;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3) now we can position controls
|
|
|
|
for (i = 0; i < s->len; i++) {
|
2015-04-09 15:57:55 -05:00
|
|
|
uiControlResize(s->controls[i], x, y, s->width[i], s->height[i], d);
|
2015-04-07 17:53:09 -05:00
|
|
|
if (s->vertical)
|
|
|
|
y += s->height[i] + ypadding;
|
|
|
|
else
|
|
|
|
x += s->width[i] + xpadding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uiControl *uiNewHorizontalStack(void)
|
|
|
|
{
|
2015-04-09 15:57:55 -05:00
|
|
|
uiControl *c;
|
2015-04-07 17:53:09 -05:00
|
|
|
stack *s;
|
|
|
|
|
2015-04-09 15:57:55 -05:00
|
|
|
c = uiNew(uiControl);
|
2015-04-07 17:53:09 -05:00
|
|
|
s = uiNew(stack);
|
|
|
|
|
2015-04-09 15:57:55 -05:00
|
|
|
c->data = s;
|
|
|
|
c->destroy = stackDestroy;
|
|
|
|
c->handle = stackHandle;
|
|
|
|
c->setParent = stackSetParent;
|
|
|
|
c->removeParent = stackRemoveParent;
|
|
|
|
c->preferredSize = stackPreferredSize;
|
|
|
|
c->resize = stackResize;
|
2015-04-07 17:53:09 -05:00
|
|
|
|
2015-04-09 15:57:55 -05:00
|
|
|
return c;
|
2015-04-07 17:53:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
uiControl *uiNewVerticalStack(void)
|
|
|
|
{
|
|
|
|
uiControl *c;
|
2015-04-09 15:57:55 -05:00
|
|
|
stack *s;
|
2015-04-07 17:53:09 -05:00
|
|
|
|
2015-04-07 18:08:39 -05:00
|
|
|
c = uiNewHorizontalStack();
|
2015-04-09 15:57:55 -05:00
|
|
|
s = (stack *) (c->data);
|
|
|
|
s->vertical = 1;
|
2015-04-07 17:53:09 -05:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define stackCapGrow 32
|
|
|
|
|
|
|
|
void uiStackAdd(uiControl *st, uiControl *c, int stretchy)
|
|
|
|
{
|
2015-04-09 15:57:55 -05:00
|
|
|
stack *s = (stack *) (st->data);
|
2015-04-07 17:53:09 -05:00
|
|
|
|
|
|
|
if (s->len >= s->cap) {
|
|
|
|
s->cap += stackCapGrow;
|
2015-04-07 22:40:18 -05:00
|
|
|
s->controls = (uiControl **) uiRealloc(s->controls, s->cap * sizeof (uiControl *), "uiControl *[]");
|
|
|
|
s->stretchy = (int *) uiRealloc(s->stretchy, s->cap * sizeof (int), "int[]");
|
|
|
|
s->width = (intmax_t *) uiRealloc(s->width, s->cap * sizeof (intmax_t), "intmax_t[]");
|
|
|
|
s->height = (intmax_t *) uiRealloc(s->height, s->cap * sizeof (intmax_t), "intmax_t[]");
|
2015-04-07 17:53:09 -05:00
|
|
|
}
|
|
|
|
s->controls[s->len] = c;
|
|
|
|
s->stretchy[s->len] = stretchy;
|
|
|
|
if (s->parent != 0)
|
2015-04-09 18:17:23 -05:00
|
|
|
uiControlSetParent(s->controls[s->len], s->parent);
|
2015-04-07 17:53:09 -05:00
|
|
|
s->len++;
|
2015-04-08 17:04:46 -05:00
|
|
|
updateParent(s->parent);
|
2015-04-07 17:53:09 -05:00
|
|
|
}
|
2015-04-09 14:59:40 -05:00
|
|
|
|
2015-04-09 19:04:18 -05:00
|
|
|
int uiStackPadded(uiControl *c)
|
|
|
|
{
|
|
|
|
stack *s = (stack *) (c->data);
|
|
|
|
|
|
|
|
return s->padded;
|
|
|
|
}
|
2015-04-09 14:59:40 -05:00
|
|
|
|
2015-04-09 15:57:55 -05:00
|
|
|
void uiStackSetPadded(uiControl *c, int padded)
|
2015-04-09 14:59:40 -05:00
|
|
|
{
|
2015-04-09 15:57:55 -05:00
|
|
|
stack *s = (stack *) (c->data);
|
2015-04-09 14:59:40 -05:00
|
|
|
|
|
|
|
s->padded = padded;
|
|
|
|
updateParent(s->parent);
|
|
|
|
}
|