From c460d033715dfb536bc82f67b07b24c5d6e2a15c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 8 Jan 2024 10:28:42 +0900 Subject: [PATCH] [ui] Propagate passage view size to its container This gets the container view sized properly such that the scroll box has something to work with for determining how much the view can slide. --- include/QF/ui/imui.h | 1 + libs/ui/imui.c | 14 +++++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/include/QF/ui/imui.h b/include/QF/ui/imui.h index ed31c1384..261ef72ef 100644 --- a/include/QF/ui/imui.h +++ b/include/QF/ui/imui.h @@ -78,6 +78,7 @@ typedef struct imui_style_s { // to the reference) typedef struct imui_reference_s { uint32_t ref_id; + bool update; struct imui_ctx_s *ctx; // owns entity if not null } imui_reference_t; diff --git a/libs/ui/imui.c b/libs/ui/imui.c index 692ed9181..13a1c9ae9 100644 --- a/libs/ui/imui.c +++ b/libs/ui/imui.c @@ -803,6 +803,15 @@ calc_expansions (imui_ctx_t *ctx, hierref_t href) auto sub_view = View_FromEntity (ctx->vsys, sub->ref_id); View_SetLen (sub_view, len[i].x, len[i].y); calc_expansions (ctx, View_GetRef (sub_view)); + if (sub->update) { + View_UpdateHierarchy (sub_view); + if (cont[i].semantic_x == imui_size_fitchildren) { + len[i].x = View_GetLen (sub_view).x; + } + if (cont[i].semantic_y == imui_size_fitchildren) { + len[i].y = View_GetLen (sub_view).y; + } + } } } } @@ -1228,15 +1237,13 @@ IMUI_Passage (imui_ctx_t *ctx, const char *name, struct passage_s *passage) .gravity = grav_northwest, .visible = 1, .semantic_x = imui_size_expand, - .semantic_y = imui_size_expand, + .semantic_y = imui_size_fitchildren, .vertical = true, .active = 1, }; auto reg = ctx->csys.reg; Ent_SetComponent (anchor_view.id, c_fraction_x, reg, &(imui_frac_t) { 100, 100 }); - Ent_SetComponent (anchor_view.id, c_fraction_y, reg, - &(imui_frac_t) { 100, 100 }); auto state = imui_get_state (ctx, va (0, "%s#passage_anchor", name), anchor_view.id); @@ -1265,6 +1272,7 @@ IMUI_Passage (imui_ctx_t *ctx, const char *name, struct passage_s *passage) View_Control (anchor_view)->is_link = 1; imui_reference_t link = { .ref_id = psg_view.id, + .update = true, }; Ent_SetComponent (anchor_view.id, c_reference, anchor_view.reg, &link);