mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
eae626a981
src/bfu/README: This new file currently contains a diagram of how the various struct types of src/bfu/ and src/terminal/ relate to each other. More documentation may be added later, although if it is specific to a particular structure, then it should probably go in the corresponding header file so that people will remember to update it.
52 lines
2.9 KiB
Plaintext
52 lines
2.9 KiB
Plaintext
OVERVIEW OF BFU
|
|
===============
|
|
|
|
BFU is the text-mode user interface used by ELinks. It builds dialogs,
|
|
widgets and menus on top of the window system implemented at src/terminal/.
|
|
|
|
=====================
|
|
| struct widget_ops |
|
|
| bfu/widget.h |
|
|
=====================
|
|
1^
|
|
|
|
|
*|
|
|
==================== ====================== =================
|
|
| struct menu_item | | struct widget_data | * 1 | struct widget |
|
|
| bfu/menu.h | | bfu/widget.h | ---> | bfu/widget.h |
|
|
==================== ====================== =================
|
|
+^ +^ +^
|
|
| | |
|
|
?| 1| 1|
|
|
=============== ====================== =================
|
|
| struct menu | | struct dialog_data | * 1 | struct dialog |
|
|
| bfu/menu.h | | bfu/dialog.h | ----> | bfu/dialog.h |
|
|
=============== ====================== =================
|
|
?^ ?^ ?^ ?| 1| 1|
|
|
| | | | | |
|
|
| | | 1v | 1v
|
|
| 1v 1v ====================== | ========================
|
|
| ===================== | struct memory_list | | | struct dialog_layout |
|
|
| | struct window | | util/memlist.h | | | bfu/dialog.h |
|
|
| | terminal/window.h | ====================== | ========================
|
|
| ===================== ?v
|
|
| *^ =========================
|
|
| | | struct dialog_refresh |
|
|
| 1v | bfu/dialog.h |
|
|
| ======================= =========================
|
|
| ? | struct terminal |
|
|
---------- | terminal/terminal.h |
|
|
main_menu =======================
|
|
?| ?|
|
|
| |
|
|
1v ?v
|
|
========================== =============================
|
|
| struct terminal_screen | | struct terminal_interlink |
|
|
| terminal/screen.h | | terminal/event.c |
|
|
========================== =============================
|
|
|
|
Legend: ---> can be followed like a pointer
|
|
? zero or one 1 exactly one
|
|
* zero or more + one or more
|
|
There may be errors in the quantifiers.
|