2024-10-29 22:45:47 +01:00
|
|
|
module ugui;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn void! Ctx.layout_set_row(&ctx)
|
|
|
|
|
{
|
|
|
|
|
Id parent_id = ctx.tree.get(ctx.active_div)!;
|
|
|
|
|
Elem *parent = ctx.cache.search(parent_id)!;
|
|
|
|
|
|
|
|
|
|
if (parent.type != ETYPE_DIV) {
|
|
|
|
|
// what?
|
|
|
|
|
return UgError.UNEXPECTED_ELEMENT?;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
parent.div.layout = LAYOUT_ROW;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn void! Ctx.layout_set_column(&ctx)
|
|
|
|
|
{
|
|
|
|
|
Id parent_id = ctx.tree.get(ctx.active_div)!;
|
|
|
|
|
Elem *parent = ctx.cache.search(parent_id)!;
|
|
|
|
|
|
|
|
|
|
if (parent.type != ETYPE_DIV) {
|
|
|
|
|
// what?
|
|
|
|
|
return UgError.UNEXPECTED_ELEMENT?;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
parent.div.layout = LAYOUT_COLUMN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn void! Ctx.layout_set_floating(&ctx)
|
|
|
|
|
{
|
|
|
|
|
Id parent_id = ctx.tree.get(ctx.active_div)!;
|
|
|
|
|
Elem *parent = ctx.cache.search(parent_id)!;
|
|
|
|
|
|
|
|
|
|
if (parent.type != ETYPE_DIV) {
|
|
|
|
|
// what?
|
|
|
|
|
return UgError.UNEXPECTED_ELEMENT?;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
parent.div.layout = LAYOUT_FLOATING;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn void! Ctx.layout_next_row(&ctx)
|
|
|
|
|
{
|
|
|
|
|
Id parent_id = ctx.tree.get(ctx.active_div)!;
|
|
|
|
|
Elem *parent = ctx.cache.search(parent_id)!;
|
|
|
|
|
|
|
|
|
|
if (parent.type != ETYPE_DIV) {
|
|
|
|
|
// what?
|
|
|
|
|
return UgError.UNEXPECTED_ELEMENT?;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
parent.div.origin_r = Point{
|
2024-11-02 09:44:53 +01:00
|
|
|
.x = parent.bounds.x,
|
2024-10-29 22:45:47 +01:00
|
|
|
.y = parent.div.origin_c.y,
|
|
|
|
|
};
|
|
|
|
|
parent.div.origin_c = parent.div.origin_r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn void! Ctx.layout_next_column(&ctx)
|
|
|
|
|
{
|
|
|
|
|
Id parent_id = ctx.tree.get(ctx.active_div)!;
|
|
|
|
|
Elem *parent = ctx.cache.search(parent_id)!;
|
|
|
|
|
|
|
|
|
|
if (parent.type != ETYPE_DIV) {
|
|
|
|
|
// what?
|
|
|
|
|
return UgError.UNEXPECTED_ELEMENT?;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
parent.div.origin_c = Point{
|
|
|
|
|
.x = parent.div.origin_r.x,
|
2024-11-02 09:44:53 +01:00
|
|
|
.y = parent.bounds.y,
|
2024-10-29 22:45:47 +01:00
|
|
|
};
|
|
|
|
|
parent.div.origin_r = parent.div.origin_c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// position the rectangle inside the parent according to the layout
|
|
|
|
|
fn Rect Ctx.position_element(&ctx, Elem *parent, Rect rect, bool style = false)
|
|
|
|
|
{
|
2024-11-07 18:35:20 +01:00
|
|
|
Rect bounds;
|
2024-10-29 22:45:47 +01:00
|
|
|
Point origin;
|
|
|
|
|
|
|
|
|
|
// 1. Select the right origin
|
|
|
|
|
switch (parent.div.layout) {
|
|
|
|
|
case LAYOUT_ROW:
|
|
|
|
|
origin = parent.div.origin_r;
|
|
|
|
|
case LAYOUT_COLUMN:
|
|
|
|
|
origin = parent.div.origin_c;
|
|
|
|
|
case LAYOUT_FLOATING: // none
|
|
|
|
|
default:
|
|
|
|
|
// Error
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 2. Position the rect
|
2024-11-07 18:35:20 +01:00
|
|
|
bounds.x = (short)max(origin.x + rect.x, 0);
|
|
|
|
|
bounds.y = (short)max(origin.y + rect.y, 0);
|
2024-10-29 22:45:47 +01:00
|
|
|
|
|
|
|
|
// 3. Calculate width & height
|
|
|
|
|
// FIXME: account for origin offset!!
|
2024-11-07 18:35:20 +01:00
|
|
|
bounds.w = rect.w > 0 ? rect.w : parent.bounds.w;
|
|
|
|
|
bounds.h = rect.h > 0 ? rect.h : parent.bounds.h;
|
2024-10-29 22:45:47 +01:00
|
|
|
|
|
|
|
|
// 4. Update the origins of the parent
|
|
|
|
|
parent.div.origin_r = Point{
|
2024-11-07 18:35:20 +01:00
|
|
|
.x = bounds.x + bounds.w,
|
|
|
|
|
.y = bounds.y,
|
2024-10-29 22:45:47 +01:00
|
|
|
};
|
|
|
|
|
parent.div.origin_c = Point{
|
2024-11-07 18:35:20 +01:00
|
|
|
.x = bounds.x,
|
|
|
|
|
.y = bounds.y + bounds.h,
|
2024-10-29 22:45:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// if using the style then apply margins
|
|
|
|
|
// FIXME: this does not work
|
|
|
|
|
if (style && parent.div.layout != LAYOUT_FLOATING) {
|
2024-11-07 18:35:20 +01:00
|
|
|
bounds.x += ctx.style.margin.x;
|
|
|
|
|
bounds.y += ctx.style.margin.y;
|
2024-10-29 22:45:47 +01:00
|
|
|
|
|
|
|
|
// total keep-out borders
|
|
|
|
|
Rect margin_tot = {
|
|
|
|
|
.x = ctx.style.padding.x + ctx.style.border.x +
|
|
|
|
|
ctx.style.margin.x,
|
|
|
|
|
.y = ctx.style.padding.y + ctx.style.border.y +
|
|
|
|
|
ctx.style.margin.y,
|
|
|
|
|
.w = ctx.style.padding.w + ctx.style.border.x +
|
|
|
|
|
ctx.style.margin.w,
|
|
|
|
|
.h = ctx.style.padding.h + ctx.style.border.x +
|
|
|
|
|
ctx.style.margin.h,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
parent.div.origin_r.x += margin_tot.x + margin_tot.w;
|
|
|
|
|
// parent.div.origin_r.y += margin_tot.h;
|
|
|
|
|
|
|
|
|
|
// parent.div.origin_c.x += margin_tot.w;
|
|
|
|
|
parent.div.origin_c.y += margin_tot.y + margin_tot.h;
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-07 18:35:20 +01:00
|
|
|
return bounds;
|
2024-10-29 22:45:47 +01:00
|
|
|
}
|