1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/src/bfu/README
Kalle Olavi Niemitalo eae626a981 doc: Added src/bfu/README.
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.
2006-05-13 17:01:20 +03:00

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.