query watch windows progress; hook up visualizer schemas to cfg evaluator, use in tab query watch

This commit is contained in:
Ryan Fleury
2025-03-20 14:26:09 -07:00
parent f5683b0f3d
commit 43d8fd4886
9 changed files with 275 additions and 339 deletions
+15
View File
@@ -3411,6 +3411,21 @@ ui_push_tagf(char *fmt, ...)
scratch_end(scratch);
}
internal F32
ui_top_px_height(void)
{
F32 result = ui_top_font_size();
for(UI_PrefHeightNode *n = ui_state->pref_height_stack.top; n != 0; n = n->next)
{
if(n->v.kind == UI_SizeKind_Pixels)
{
result = n->v.value;
break;
}
}
return result;
}
////////////////////////////////
//~ rjf: Generated Code
+1
View File
@@ -1112,6 +1112,7 @@ internal UI_Size ui_set_next_pref_size(Axis2 axis, UI_Size v);
internal void ui_push_corner_radius(F32 v);
internal void ui_pop_corner_radius(void);
internal void ui_push_tagf(char *fmt, ...);
internal F32 ui_top_px_height(void);
////////////////////////////////
//~ rjf: Macro Loop Wrappers