From 511f811f3137762f722bb84021c3893dde06eeac Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Wed, 15 Jul 2026 00:27:25 +0200 Subject: [PATCH] Fluid: minor docs update --- .../documentation/src/page_codeview_panel.dox | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/fluid/documentation/src/page_codeview_panel.dox b/fluid/documentation/src/page_codeview_panel.dox index 2fac1a286..9649867db 100644 --- a/fluid/documentation/src/page_codeview_panel.dox +++ b/fluid/documentation/src/page_codeview_panel.dox @@ -66,11 +66,17 @@ __Auto-Position__: highlight and reposition to the source code generated by the currently selected widget whenever the selection changes - __code...__: choose the type of code that is highlighted. In source - files, *static* code is generated by Menu Items, *code* refers to widget - creation code, *code1* is the part before possible children, *code2* is - code generated after children. In header files, *static* highlights - `#include` statements generated by a widget, *code* refers to - the widget declaration. + Pulldown menu chooses the type of code that is highlighted: + + - __static data__: C++ declarations for this widget (member variables, external + functions, typedefs, or using declarations), menu item arrays, callback, + and other static data + - __instatiate__: the entire instatiation of a widget, including constructor, + setting attributes, setup code, setup of all children, and final stages + of instatiation + - __setup__: widget instatiation from construction all the way up to + creating children + - __finalize__: final code of widget instatiation after creating children + */