2 Hypertext file browser.
4 Copyright (C) 1994-2023
5 Free Software Foundation, Inc.
7 This file is part of the Midnight Commander.
9 The Midnight Commander is free software: you can redistribute it
10 and/or modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation, either version 3 of the License,
12 or (at your option) any later version.
14 The Midnight Commander is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * \brief Source: hypertext file browser
27 * Implements the hypertext file viewer.
28 * The hypertext file is a file that may have one or more nodes. Each
29 * node ends with a ^D character and starts with a bracket, then the
30 * name of the node and then a closing bracket. Right after the closing
31 * bracket a newline is placed. This newline is not to be displayed by
32 * the help viewer and must be skipped - its sole purpose is to facilitate
33 * the work of the people managing the help file template (xnc.hlp) .
35 * Links in the hypertext file are specified like this: the text that
36 * will be highlighted should have a leading ^A, then it comes the
37 * text, then a ^B indicating that highlighting is done, then the name
38 * of the node you want to link to and then a ^C.
40 * The file must contain a ^D at the beginning and at the end of the
41 * file or the program will not be able to detect the end of file.
43 * Laziness/widgeting attack: This file does use the dialog manager
44 * and uses mainly the dialog to achieve the help work. there is only
45 * one specialized widget and it's only used to forward the mouse messages
46 * to the appropriate routine.
53 #include <limits.h> /* MB_LEN_MAX */
55 #include <sys/types.h>
58 #include "lib/global.h"
60 #include "lib/tty/tty.h"
62 #include "lib/strutil.h"
63 #include "lib/fileloc.h"
65 #include "lib/widget.h"
66 #include "lib/event-types.h"
71 /*** global variables ****************************************************************************/
73 /*** file scope macro definitions ****************************************************************/
75 #define MAXLINKNAME 80
76 #define HISTORY_SIZE 20
77 #define HELP_WINDOW_WIDTH MIN(80, COLS - 16)
79 #define STRING_LINK_START "\01"
80 #define STRING_LINK_POINTER "\02"
81 #define STRING_LINK_END "\03"
82 #define STRING_NODE_END "\04"
84 /*** file scope type declarations ****************************************************************/
86 /* Link areas for the mouse */
87 typedef struct Link_Area
90 const char *link_name
;
93 /*** file scope variables ************************************************************************/
95 static char *fdata
= NULL
; /* Pointer to the loaded data file */
96 static int help_lines
; /* Lines in help viewer */
97 static int history_ptr
; /* For the history queue */
98 static const char *main_node
; /* The main node */
99 static const char *last_shown
= NULL
; /* Last byte shown in a screen */
100 static gboolean end_of_node
= FALSE
; /* Flag: the last character of the node shown? */
101 static const char *currentpoint
;
102 static const char *selected_item
;
104 /* The widget variables */
105 static WDialog
*whelp
;
109 const char *page
; /* Pointer to the selected page */
110 const char *link
; /* Pointer to the selected link */
111 } history
[HISTORY_SIZE
];
113 static GSList
*link_area
= NULL
;
114 static gboolean inside_link_area
= FALSE
;
116 static cb_ret_t
help_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
);
118 /*** file scope functions ************************************************************************/
119 /* --------------------------------------------------------------------------------------------- */
121 /** returns the position where text was found in the start buffer
125 search_string (const char *start
, const char *text
)
127 const char *result
= NULL
;
128 char *local_text
= g_strdup (text
);
129 char *d
= local_text
;
130 const char *e
= start
;
132 /* fmt sometimes replaces a space with a newline in the help file */
133 /* Replace the newlines in the link name with spaces to correct the situation */
142 for (d
= local_text
; *e
; e
++)
159 /* --------------------------------------------------------------------------------------------- */
160 /** Searches text in the buffer pointed by start. Search ends
161 * if the CHAR_NODE_END is found in the text.
162 * @return NULL on failure
166 search_string_node (const char *start
, const char *text
)
168 const char *d
= text
;
169 const char *e
= start
;
172 for (; *e
&& *e
!= CHAR_NODE_END
; e
++)
185 /* --------------------------------------------------------------------------------------------- */
186 /** Searches the_char in the buffer pointer by start and searches
187 * it can search forward (direction = 1) or backward (direction = -1)
191 search_char_node (const char *start
, char the_char
, int direction
)
195 for (e
= start
; (*e
!= '\0') && (*e
!= CHAR_NODE_END
); e
+= direction
)
202 /* --------------------------------------------------------------------------------------------- */
203 /** Returns the new current pointer when moved lines lines */
206 move_forward2 (const char *c
, int lines
)
212 for (line
= 0, p
= currentpoint
; (*p
!= '\0') && (*p
!= CHAR_NODE_END
); str_cnext_char (&p
))
215 return currentpoint
= p
;
220 return currentpoint
= c
;
223 /* --------------------------------------------------------------------------------------------- */
226 move_backward2 (const char *c
, int lines
)
232 for (line
= 0, p
= currentpoint
; (*p
!= '\0') && ((int) (p
- fdata
) >= 0); str_cprev_char (&p
))
234 if (*p
== CHAR_NODE_END
)
236 /* We reached the beginning of the node */
237 /* Skip the node headers */
240 return currentpoint
= p
+ 2; /* Skip the newline following the start of the node */
243 if (*(p
- 1) == '\n')
246 return currentpoint
= p
;
248 return currentpoint
= c
;
251 /* --------------------------------------------------------------------------------------------- */
257 currentpoint
= move_forward2 (currentpoint
, i
);
260 /* --------------------------------------------------------------------------------------------- */
263 move_backward (int i
)
265 currentpoint
= move_backward2 (currentpoint
, ++i
);
268 /* --------------------------------------------------------------------------------------------- */
273 while (((int) (currentpoint
> fdata
) > 0) && (*currentpoint
!= CHAR_NODE_END
))
276 while (*currentpoint
!= ']')
278 currentpoint
= currentpoint
+ 2; /* Skip the newline following the start of the node */
279 selected_item
= NULL
;
282 /* --------------------------------------------------------------------------------------------- */
285 move_to_bottom (void)
287 while ((*currentpoint
!= '\0') && (*currentpoint
!= CHAR_NODE_END
))
293 /* --------------------------------------------------------------------------------------------- */
296 help_follow_link (const char *start
, const char *lc_selected_item
)
300 if (lc_selected_item
== NULL
)
303 for (p
= lc_selected_item
; *p
&& *p
!= CHAR_NODE_END
&& *p
!= CHAR_LINK_POINTER
; p
++)
305 if (*p
== CHAR_LINK_POINTER
)
308 char link_name
[MAXLINKNAME
];
311 for (i
= 1; *p
!= CHAR_LINK_END
&& *p
&& *p
!= CHAR_NODE_END
&& i
< MAXLINKNAME
- 3;)
312 link_name
[i
++] = *++p
;
313 link_name
[i
- 1] = ']';
315 p
= search_string (fdata
, link_name
);
318 p
+= 1; /* Skip the newline following the start of the node */
323 /* Create a replacement page with the error message */
324 return _("Help file format error\n");
327 /* --------------------------------------------------------------------------------------------- */
330 select_next_link (const char *current_link
)
334 if (current_link
== NULL
)
337 p
= search_string_node (current_link
, STRING_LINK_END
);
340 p
= search_string_node (p
, STRING_LINK_START
);
346 /* --------------------------------------------------------------------------------------------- */
349 select_prev_link (const char *current_link
)
351 return current_link
== NULL
? NULL
: search_char_node (current_link
- 1, CHAR_LINK_START
, -1);
354 /* --------------------------------------------------------------------------------------------- */
357 start_link_area (int x
, int y
, const char *link_name
)
361 if (inside_link_area
)
362 message (D_NORMAL
, _("Warning"), "%s", _("Internal bug: Double start of link area"));
364 /* Allocate memory for a new link area */
365 la
= g_new (Link_Area
, 1);
366 /* Save the beginning coordinates of the link area */
369 /* Save the name of the destination anchor */
370 la
->link_name
= link_name
;
371 link_area
= g_slist_prepend (link_area
, la
);
373 inside_link_area
= TRUE
;
376 /* --------------------------------------------------------------------------------------------- */
379 end_link_area (int x
, int y
)
381 if (inside_link_area
)
383 Link_Area
*la
= (Link_Area
*) link_area
->data
;
384 /* Save the end coordinates of the link area */
387 inside_link_area
= FALSE
;
391 /* --------------------------------------------------------------------------------------------- */
394 clear_link_areas (void)
396 g_clear_slist (&link_area
, g_free
);
397 inside_link_area
= FALSE
;
400 /* --------------------------------------------------------------------------------------------- */
403 help_print_word (WDialog
* h
, GString
* word
, int *col
, int *line
, gboolean add_space
)
405 if (*line
>= help_lines
)
406 g_string_set_size (word
, 0);
411 w
= str_term_width1 (word
->str
);
412 if (*col
+ w
>= HELP_WINDOW_WIDTH
)
418 if (*line
>= help_lines
)
419 g_string_set_size (word
, 0);
422 widget_gotoyx (h
, *line
+ 2, *col
+ 2);
423 tty_print_string (word
->str
);
424 g_string_set_size (word
, 0);
431 if (*col
< HELP_WINDOW_WIDTH
- 1)
433 tty_print_char (' ');
444 /* --------------------------------------------------------------------------------------------- */
447 help_show (WDialog
* h
, const char *paint_start
)
451 gboolean painting
= TRUE
;
452 gboolean acs
; /* Flag: Alternate character set active? */
453 gboolean repeat_paint
;
454 int active_col
, active_line
; /* Active link position */
455 char buff
[MB_LEN_MAX
+ 1];
458 word
= g_string_sized_new (32);
460 tty_setcolor (HELP_NORMAL_COLOR
);
463 line
= col
= active_col
= active_line
= 0;
464 repeat_paint
= FALSE
;
468 if ((int) (selected_item
- paint_start
) < 0)
469 selected_item
= NULL
;
473 while ((n
[0] != '\0') && (n
[0] != CHAR_NODE_END
) && (line
< help_lines
))
476 n
= str_cget_next_char (p
);
477 memcpy (buff
, p
, n
- p
);
480 c
= (unsigned char) buff
[0];
483 case CHAR_LINK_START
:
484 if (selected_item
== NULL
)
486 if (p
!= selected_item
)
487 tty_setcolor (HELP_LINK_COLOR
);
490 tty_setcolor (HELP_SLINK_COLOR
);
492 /* Store the coordinates of the link */
493 active_col
= col
+ 2;
494 active_line
= line
+ 2;
496 start_link_area (col
, line
, p
);
498 case CHAR_LINK_POINTER
:
503 help_print_word (h
, word
, &col
, &line
, FALSE
);
504 end_link_area (col
- 1, line
);
505 tty_setcolor (HELP_NORMAL_COLOR
);
514 widget_gotoyx (h
, line
+ 2, col
+ 2);
515 tty_print_string (mc_global
.mc_version
);
516 col
+= str_term_width1 (mc_global
.mc_version
);
519 tty_setcolor (HELP_BOLD_COLOR
);
521 case CHAR_FONT_ITALIC
:
522 tty_setcolor (HELP_ITALIC_COLOR
);
524 case CHAR_FONT_NORMAL
:
525 help_print_word (h
, word
, &col
, &line
, FALSE
);
526 tty_setcolor (HELP_NORMAL_COLOR
);
530 help_print_word (h
, word
, &col
, &line
, FALSE
);
539 help_print_word (h
, word
, &col
, &line
, c
== ' ');
542 col
= (col
/ 8 + 1) * 8;
543 if (col
>= HELP_WINDOW_WIDTH
)
552 if (painting
&& (line
< help_lines
))
555 /* accumulate symbols in a word */
556 g_string_append (word
, buff
);
557 else if (col
< HELP_WINDOW_WIDTH
)
559 widget_gotoyx (h
, line
+ 2, col
+ 2);
561 if ((c
== ' ') || (c
== '.'))
565 tty_print_char (acs_map
[c
]);
567 SLsmg_draw_object (WIDGET (h
)->rect
.y
+ line
+ 2,
568 WIDGET (h
)->rect
.x
+ col
+ 2, c
);
576 /* print last word */
577 if (n
[0] == CHAR_NODE_END
)
578 help_print_word (h
, word
, &col
, &line
, FALSE
);
581 end_of_node
= line
< help_lines
;
582 tty_setcolor (HELP_NORMAL_COLOR
);
583 if ((int) (selected_item
- last_shown
) >= 0)
585 if ((link_area
== NULL
) || (link_area
->data
== NULL
))
586 selected_item
= NULL
;
589 selected_item
= ((Link_Area
*) link_area
->data
)->link_name
;
594 while (repeat_paint
);
596 g_string_free (word
, TRUE
);
598 /* Position the cursor over a nice link */
600 widget_gotoyx (h
, active_line
, active_col
);
603 /* --------------------------------------------------------------------------------------------- */
607 help_help (WDialog
* h
)
611 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
612 history
[history_ptr
].page
= currentpoint
;
613 history
[history_ptr
].link
= selected_item
;
615 p
= search_string (fdata
, "[How to use help]");
618 currentpoint
= p
+ 1; /* Skip the newline following the start of the node */
619 selected_item
= NULL
;
620 widget_draw (WIDGET (h
));
624 /* --------------------------------------------------------------------------------------------- */
627 help_index (WDialog
* h
)
629 const char *new_item
;
631 new_item
= search_string (fdata
, "[Contents]");
633 if (new_item
== NULL
)
634 message (D_ERROR
, MSG_ERROR
, _("Cannot find node %s in help file"), "[Contents]");
637 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
638 history
[history_ptr
].page
= currentpoint
;
639 history
[history_ptr
].link
= selected_item
;
641 currentpoint
= new_item
+ 1; /* Skip the newline following the start of the node */
642 selected_item
= NULL
;
643 widget_draw (WIDGET (h
));
647 /* --------------------------------------------------------------------------------------------- */
650 help_back (WDialog
* h
)
652 currentpoint
= history
[history_ptr
].page
;
653 selected_item
= history
[history_ptr
].link
;
656 history_ptr
= HISTORY_SIZE
- 1;
658 widget_draw (WIDGET (h
)); /* FIXME: unneeded? */
661 /* --------------------------------------------------------------------------------------------- */
664 help_next_link (gboolean move_down
)
666 const char *new_item
;
668 new_item
= select_next_link (selected_item
);
669 if (new_item
!= NULL
)
671 selected_item
= new_item
;
672 if ((int) (selected_item
- last_shown
) >= 0)
677 selected_item
= NULL
;
683 selected_item
= NULL
;
686 /* --------------------------------------------------------------------------------------------- */
689 help_prev_link (gboolean move_up
)
691 const char *new_item
;
693 new_item
= select_prev_link (selected_item
);
694 selected_item
= new_item
;
695 if ((selected_item
== NULL
) || (selected_item
< currentpoint
))
699 else if ((link_area
!= NULL
) && (link_area
->data
!= NULL
))
700 selected_item
= ((Link_Area
*) link_area
->data
)->link_name
;
702 selected_item
= NULL
;
706 /* --------------------------------------------------------------------------------------------- */
709 help_next_node (void)
711 const char *new_item
;
713 new_item
= currentpoint
;
714 while ((*new_item
!= '\0') && (*new_item
!= CHAR_NODE_END
))
717 if (*++new_item
== '[')
718 while (*++new_item
!= '\0')
719 if ((*new_item
== ']') && (*++new_item
!= '\0') && (*++new_item
!= '\0'))
721 currentpoint
= new_item
;
722 selected_item
= NULL
;
727 /* --------------------------------------------------------------------------------------------- */
730 help_prev_node (void)
732 const char *new_item
;
734 new_item
= currentpoint
;
735 while (((int) (new_item
- fdata
) > 1) && (*new_item
!= CHAR_NODE_END
))
738 while (((int) (new_item
- fdata
) > 0) && (*new_item
!= CHAR_NODE_END
))
740 while (*new_item
!= ']')
742 currentpoint
= new_item
+ 2;
743 selected_item
= NULL
;
746 /* --------------------------------------------------------------------------------------------- */
749 help_select_link (void)
752 if (selected_item
== NULL
)
754 #ifdef WE_WANT_TO_GO_BACKWARD_ON_KEY_RIGHT
755 /* Is there any reason why the right key would take us
756 * backward if there are no links selected?, I agree
757 * with Torben than doing nothing in this case is better
759 /* If there are no links, go backward in history */
762 history_ptr
= HISTORY_SIZE
- 1;
764 currentpoint
= history
[history_ptr
].page
;
765 selected_item
= history
[history_ptr
].link
;
770 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
771 history
[history_ptr
].page
= currentpoint
;
772 history
[history_ptr
].link
= selected_item
;
773 currentpoint
= help_follow_link (currentpoint
, selected_item
);
776 selected_item
= NULL
;
779 /* --------------------------------------------------------------------------------------------- */
782 help_execute_cmd (long command
)
784 cb_ret_t ret
= MSG_HANDLED
;
798 help_prev_link (TRUE
);
801 help_next_link (TRUE
);
804 move_forward (help_lines
- 1);
807 move_backward (help_lines
- 1);
809 case CK_HalfPageDown
:
810 move_forward (help_lines
/ 2);
813 move_backward (help_lines
/ 2);
825 help_next_link (FALSE
);
828 help_prev_link (FALSE
);
840 ret
= MSG_NOT_HANDLED
;
846 /* --------------------------------------------------------------------------------------------- */
849 help_handle_key (WDialog
* h
, int key
)
851 Widget
*w
= WIDGET (h
);
854 command
= widget_lookup_key (w
, key
);
855 if (command
== CK_IgnoreKey
)
856 return MSG_NOT_HANDLED
;
858 return help_execute_cmd (command
);
861 /* --------------------------------------------------------------------------------------------- */
864 help_bg_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
869 frame_callback (w
, NULL
, MSG_DRAW
, 0, NULL
);
870 help_show (DIALOG (w
->owner
), currentpoint
);
874 return frame_callback (w
, sender
, msg
, parm
, data
);
878 /* --------------------------------------------------------------------------------------------- */
881 help_resize (WDialog
* h
)
883 Widget
*w
= WIDGET (h
);
887 help_lines
= MIN (LINES
- 4, MAX (2 * LINES
/ 3, 18));
888 r
.lines
= help_lines
+ 4;
889 r
.cols
= HELP_WINDOW_WIDTH
+ 4;
890 dlg_default_callback (w
, NULL
, MSG_RESIZE
, 0, &r
);
891 bb
= find_buttonbar (h
);
892 widget_set_size (WIDGET (bb
), LINES
- 1, 0, 1, COLS
);
897 /* --------------------------------------------------------------------------------------------- */
900 help_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
902 WDialog
*h
= DIALOG (w
);
907 return help_resize (h
);
913 ret
= help_handle_key (h
, parm
);
914 if (ret
== MSG_HANDLED
)
921 /* Handle shortcuts and buttonbar. */
922 return help_execute_cmd (parm
);
925 return dlg_default_callback (w
, sender
, msg
, parm
, data
);
929 /* --------------------------------------------------------------------------------------------- */
932 interactive_display_finish (void)
937 /* --------------------------------------------------------------------------------------------- */
938 /** translate help file into terminal encoding */
941 translate_file (char *filedata
)
945 conv
= str_crt_conv_from ("UTF-8");
946 if (conv
!= INVALID_CONV
)
948 GString
*translated_data
;
953 /* initial allocation for largest whole help file */
954 translated_data
= g_string_sized_new (32 * 1024);
955 nok
= (str_convert (conv
, filedata
, translated_data
) == ESTR_FAILURE
);
956 fdata
= g_string_free (translated_data
, nok
);
958 str_close_conv (conv
);
962 /* --------------------------------------------------------------------------------------------- */
965 md_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
970 widget_default_callback (w
, NULL
, MSG_RESIZE
, 0, data
);
971 w
->rect
.lines
= help_lines
;
975 return widget_default_callback (w
, sender
, msg
, parm
, data
);
979 /* --------------------------------------------------------------------------------------------- */
982 help_mouse_callback (Widget
* w
, mouse_msg_t msg
, mouse_event_t
* event
)
985 GSList
*current_area
;
987 if (msg
!= MSG_MOUSE_CLICK
)
990 if ((event
->buttons
& GPM_B_RIGHT
) != 0)
992 /* Right button click */
997 /* Left bytton click */
999 /* The event is relative to the dialog window, adjust it: */
1003 /* Test whether the mouse click is inside one of the link areas */
1004 for (current_area
= link_area
; current_area
!= NULL
; current_area
= g_slist_next (current_area
))
1006 Link_Area
*la
= (Link_Area
*) current_area
->data
;
1008 /* Test one line link area */
1009 if (y
== la
->y1
&& x
>= la
->x1
&& y
== la
->y2
&& x
<= la
->x2
)
1012 /* Test two line link area */
1013 if (la
->y1
+ 1 == la
->y2
)
1015 /* The first line || The second line */
1016 if ((y
== la
->y1
&& x
>= la
->x1
) || (y
== la
->y2
&& x
<= la
->x2
))
1019 /* Mouse will not work with link areas of more than two lines */
1022 /* Test whether a link area was found */
1023 if (current_area
!= NULL
)
1025 Link_Area
*la
= (Link_Area
*) current_area
->data
;
1027 /* The click was inside a link area -> follow the link */
1028 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
1029 history
[history_ptr
].page
= currentpoint
;
1030 history
[history_ptr
].link
= la
->link_name
;
1031 currentpoint
= help_follow_link (currentpoint
, la
->link_name
);
1032 selected_item
= NULL
;
1035 move_backward (help_lines
- 1);
1036 else if (y
>= help_lines
)
1037 move_forward (help_lines
- 1);
1038 else if (y
< help_lines
/ 2)
1043 /* Show the new node */
1044 widget_draw (WIDGET (w
->owner
));
1047 /* --------------------------------------------------------------------------------------------- */
1050 mousedispatch_new (const WRect
* r
)
1054 w
= g_new0 (Widget
, 1);
1055 widget_init (w
, r
, md_callback
, help_mouse_callback
);
1056 w
->options
|= WOP_SELECTABLE
| WOP_WANT_CURSOR
;
1061 /* --------------------------------------------------------------------------------------------- */
1062 /*** public functions ****************************************************************************/
1063 /* --------------------------------------------------------------------------------------------- */
1065 /* event callback */
1067 help_interactive_display (const gchar
* event_group_name
, const gchar
* event_name
,
1068 gpointer init_data
, gpointer data
)
1070 const dlg_colors_t help_colors
= {
1071 HELP_NORMAL_COLOR
, /* common text color */
1072 0, /* unused in help */
1073 HELP_BOLD_COLOR
, /* bold text color */
1074 0, /* unused in help */
1075 HELP_TITLE_COLOR
/* title color */
1080 WButtonBar
*help_bar
;
1082 char *hlpfile
= NULL
;
1084 ev_help_t
*event_data
= (ev_help_t
*) data
;
1085 WRect r
= { 1, 1, 1, 1 };
1087 (void) event_group_name
;
1091 if (event_data
->filename
!= NULL
)
1092 g_file_get_contents (event_data
->filename
, &filedata
, NULL
, NULL
);
1094 filedata
= load_mc_home_file (mc_global
.share_data_dir
, MC_HELP
, &hlpfile
, NULL
);
1096 if (filedata
== NULL
)
1097 message (D_ERROR
, MSG_ERROR
, _("Cannot open file %s\n%s"),
1098 event_data
->filename
? event_data
->filename
: hlpfile
, unix_error_string (errno
));
1102 if (filedata
== NULL
)
1105 translate_file (filedata
);
1112 if ((event_data
->node
== NULL
) || (*event_data
->node
== '\0'))
1113 event_data
->node
= "[main]";
1115 main_node
= search_string (fdata
, event_data
->node
);
1117 if (main_node
== NULL
)
1119 message (D_ERROR
, MSG_ERROR
, _("Cannot find node %s in help file"), event_data
->node
);
1121 /* Fallback to [main], return if it also cannot be found */
1122 main_node
= search_string (fdata
, "[main]");
1123 if (main_node
== NULL
)
1125 interactive_display_finish ();
1130 help_lines
= MIN (LINES
- 4, MAX (2 * LINES
/ 3, 18));
1133 dlg_create (TRUE
, 0, 0, help_lines
+ 4, HELP_WINDOW_WIDTH
+ 4, WPOS_CENTER
| WPOS_TRYUP
,
1134 FALSE
, help_colors
, help_callback
, NULL
, "[Help]", _("Help"));
1135 wh
= WIDGET (whelp
);
1137 wh
->keymap
= help_map
;
1138 widget_want_tab (wh
, TRUE
);
1139 /* draw background */
1140 whelp
->bg
->callback
= help_bg_callback
;
1142 selected_item
= search_string_node (main_node
, STRING_LINK_START
) - 1;
1143 currentpoint
= main_node
+ 1; /* Skip the newline following the start of the node */
1145 for (history_ptr
= HISTORY_SIZE
; history_ptr
;)
1148 history
[history_ptr
].page
= currentpoint
;
1149 history
[history_ptr
].link
= selected_item
;
1152 help_bar
= buttonbar_new ();
1153 WIDGET (help_bar
)->rect
.y
-= wh
->rect
.y
;
1154 WIDGET (help_bar
)->rect
.x
-= wh
->rect
.x
;
1156 r
.lines
= help_lines
;
1157 r
.cols
= HELP_WINDOW_WIDTH
- 2;
1158 md
= mousedispatch_new (&r
);
1160 group_add_widget (g
, md
);
1161 group_add_widget (g
, help_bar
); /* FIXME */
1163 buttonbar_set_label (help_bar
, 1, Q_ ("ButtonBar|Help"), wh
->keymap
, NULL
);
1164 buttonbar_set_label (help_bar
, 2, Q_ ("ButtonBar|Index"), wh
->keymap
, NULL
);
1165 buttonbar_set_label (help_bar
, 3, Q_ ("ButtonBar|Prev"), wh
->keymap
, NULL
);
1166 buttonbar_set_label (help_bar
, 4, "", wh
->keymap
, NULL
);
1167 buttonbar_set_label (help_bar
, 5, "", wh
->keymap
, NULL
);
1168 buttonbar_set_label (help_bar
, 6, "", wh
->keymap
, NULL
);
1169 buttonbar_set_label (help_bar
, 7, "", wh
->keymap
, NULL
);
1170 buttonbar_set_label (help_bar
, 8, "", wh
->keymap
, NULL
);
1171 buttonbar_set_label (help_bar
, 9, "", wh
->keymap
, NULL
);
1172 buttonbar_set_label (help_bar
, 10, Q_ ("ButtonBar|Quit"), wh
->keymap
, NULL
);
1175 interactive_display_finish ();
1176 widget_destroy (wh
);
1180 /* --------------------------------------------------------------------------------------------- */