2 Hypertext file browser.
4 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2011, 2013
6 The Free Software Foundation, Inc.
8 This file is part of the Midnight Commander.
10 The Midnight Commander is free software: you can redistribute it
11 and/or modify it under the terms of the GNU General Public License as
12 published by the Free Software Foundation, either version 3 of the License,
13 or (at your option) any later version.
15 The Midnight Commander is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 * \brief Source: hypertext file browser
28 * Implements the hypertext file viewer.
29 * The hypertext file is a file that may have one or more nodes. Each
30 * node ends with a ^D character and starts with a bracket, then the
31 * name of the node and then a closing bracket. Right after the closing
32 * bracket a newline is placed. This newline is not to be displayed by
33 * the help viewer and must be skipped - its sole purpose is to faciliate
34 * the work of the people managing the help file template (xnc.hlp) .
36 * Links in the hypertext file are specified like this: the text that
37 * will be highlighted should have a leading ^A, then it comes the
38 * text, then a ^B indicating that highlighting is done, then the name
39 * of the node you want to link to and then a ^C.
41 * The file must contain a ^D at the beginning and at the end of the
42 * file or the program will not be able to detect the end of file.
44 * Lazyness/widgeting attack: This file does use the dialog manager
45 * and uses mainly the dialog to achieve the help work. there is only
46 * one specialized widget and it's only used to forward the mouse messages
47 * to the appropiate routine.
55 #include <sys/types.h>
58 #include "lib/global.h"
60 #include "lib/tty/tty.h"
61 #include "lib/tty/mouse.h"
63 #include "lib/strutil.h"
64 #include "lib/fileloc.h"
66 #include "lib/widget.h"
67 #include "lib/event-types.h"
69 #include "keybind-defaults.h"
72 /*** global variables ****************************************************************************/
74 /*** file scope macro definitions ****************************************************************/
76 #define MAXLINKNAME 80
77 #define HISTORY_SIZE 20
78 #define HELP_WINDOW_WIDTH min(80, COLS - 16)
80 #define STRING_LINK_START "\01"
81 #define STRING_LINK_POINTER "\02"
82 #define STRING_LINK_END "\03"
83 #define STRING_NODE_END "\04"
85 /*** file scope type declarations ****************************************************************/
87 /* Link areas for the mouse */
88 typedef struct Link_Area
91 const char *link_name
;
94 /*** file scope variables ************************************************************************/
96 static char *fdata
= NULL
; /* Pointer to the loaded data file */
97 static int help_lines
; /* Lines in help viewer */
98 static int history_ptr
; /* For the history queue */
99 static const char *main_node
; /* The main node */
100 static const char *last_shown
= NULL
; /* Last byte shown in a screen */
101 static gboolean end_of_node
= FALSE
; /* Flag: the last character of the node shown? */
102 static const char *currentpoint
;
103 static const char *selected_item
;
105 /* The widget variables */
106 static WDialog
*whelp
;
110 const char *page
; /* Pointer to the selected page */
111 const char *link
; /* Pointer to the selected link */
112 } history
[HISTORY_SIZE
];
114 static GSList
*link_area
= NULL
;
115 static gboolean inside_link_area
= FALSE
;
117 static cb_ret_t
help_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
);
119 /*** file scope functions ************************************************************************/
120 /* --------------------------------------------------------------------------------------------- */
122 /** returns the position where text was found in the start buffer
126 search_string (const char *start
, const char *text
)
128 const char *result
= NULL
;
129 char *local_text
= g_strdup (text
);
130 char *d
= local_text
;
131 const char *e
= start
;
133 /* fmt sometimes replaces a space with a newline in the help file */
134 /* Replace the newlines in the link name with spaces to correct the situation */
143 for (d
= local_text
; *e
; e
++)
160 /* --------------------------------------------------------------------------------------------- */
161 /** Searches text in the buffer pointed by start. Search ends
162 * if the CHAR_NODE_END is found in the text.
163 * @return NULL on failure
167 search_string_node (const char *start
, const char *text
)
169 const char *d
= text
;
170 const char *e
= start
;
173 for (; *e
&& *e
!= CHAR_NODE_END
; e
++)
186 /* --------------------------------------------------------------------------------------------- */
187 /** Searches the_char in the buffer pointer by start and searches
188 * it can search forward (direction = 1) or backward (direction = -1)
192 search_char_node (const char *start
, char the_char
, int direction
)
196 for (e
= start
; (*e
!= '\0') && (*e
!= CHAR_NODE_END
); e
+= direction
)
203 /* --------------------------------------------------------------------------------------------- */
204 /** Returns the new current pointer when moved lines lines */
207 move_forward2 (const char *c
, int lines
)
213 for (line
= 0, p
= currentpoint
; (*p
!= '\0') && (*p
!= CHAR_NODE_END
); str_cnext_char (&p
))
216 return currentpoint
= p
;
221 return currentpoint
= c
;
224 /* --------------------------------------------------------------------------------------------- */
227 move_backward2 (const char *c
, int lines
)
233 for (line
= 0, p
= currentpoint
; (*p
!= '\0') && ((int) (p
- fdata
) >= 0); str_cprev_char (&p
))
235 if (*p
== CHAR_NODE_END
)
237 /* We reached the beginning of the node */
238 /* Skip the node headers */
241 return currentpoint
= p
+ 2; /* Skip the newline following the start of the node */
244 if (*(p
- 1) == '\n')
247 return currentpoint
= p
;
249 return currentpoint
= c
;
252 /* --------------------------------------------------------------------------------------------- */
258 currentpoint
= move_forward2 (currentpoint
, i
);
261 /* --------------------------------------------------------------------------------------------- */
264 move_backward (int i
)
266 currentpoint
= move_backward2 (currentpoint
, ++i
);
269 /* --------------------------------------------------------------------------------------------- */
274 while (((int) (currentpoint
> fdata
) > 0) && (*currentpoint
!= CHAR_NODE_END
))
277 while (*currentpoint
!= ']')
279 currentpoint
= currentpoint
+ 2; /* Skip the newline following the start of the node */
280 selected_item
= NULL
;
283 /* --------------------------------------------------------------------------------------------- */
286 move_to_bottom (void)
288 while ((*currentpoint
!= '\0') && (*currentpoint
!= CHAR_NODE_END
))
294 /* --------------------------------------------------------------------------------------------- */
297 help_follow_link (const char *start
, const char *lc_selected_item
)
299 char link_name
[MAXLINKNAME
];
303 if (lc_selected_item
== NULL
)
306 for (p
= lc_selected_item
; *p
&& *p
!= CHAR_NODE_END
&& *p
!= CHAR_LINK_POINTER
; p
++)
308 if (*p
== CHAR_LINK_POINTER
)
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"), _("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_slist_foreach (link_area
, (GFunc
) g_free
, NULL
);
397 g_slist_free (link_area
);
399 inside_link_area
= FALSE
;
402 /* --------------------------------------------------------------------------------------------- */
405 help_print_word (WDialog
* h
, GString
* word
, int *col
, int *line
, gboolean add_space
)
407 if (*line
>= help_lines
)
408 g_string_set_size (word
, 0);
413 w
= str_term_width1 (word
->str
);
414 if (*col
+ w
>= HELP_WINDOW_WIDTH
)
420 if (*line
>= help_lines
)
421 g_string_set_size (word
, 0);
424 widget_move (h
, *line
+ 2, *col
+ 2);
425 tty_print_string (word
->str
);
426 g_string_set_size (word
, 0);
433 if (*col
< HELP_WINDOW_WIDTH
- 1)
435 tty_print_char (' ');
446 /* --------------------------------------------------------------------------------------------- */
449 help_show (WDialog
* h
, const char *paint_start
)
453 gboolean painting
= TRUE
;
454 gboolean acs
; /* Flag: Alternate character set active? */
455 gboolean repeat_paint
;
456 int active_col
, active_line
; /* Active link position */
457 char buff
[MB_LEN_MAX
+ 1];
460 word
= g_string_sized_new (32);
462 tty_setcolor (HELP_NORMAL_COLOR
);
465 line
= col
= active_col
= active_line
= 0;
466 repeat_paint
= FALSE
;
470 if ((int) (selected_item
- paint_start
) < 0)
471 selected_item
= NULL
;
475 while ((n
[0] != '\0') && (n
[0] != CHAR_NODE_END
) && (line
< help_lines
))
478 n
= str_cget_next_char (p
);
479 memcpy (buff
, p
, n
- p
);
482 c
= (unsigned char) buff
[0];
485 case CHAR_LINK_START
:
486 if (selected_item
== NULL
)
488 if (p
!= selected_item
)
489 tty_setcolor (HELP_LINK_COLOR
);
492 tty_setcolor (HELP_SLINK_COLOR
);
494 /* Store the coordinates of the link */
495 active_col
= col
+ 2;
496 active_line
= line
+ 2;
498 start_link_area (col
, line
, p
);
500 case CHAR_LINK_POINTER
:
505 help_print_word (h
, word
, &col
, &line
, FALSE
);
506 end_link_area (col
- 1, line
);
507 tty_setcolor (HELP_NORMAL_COLOR
);
516 widget_move (h
, line
+ 2, col
+ 2);
517 tty_print_string (VERSION
);
518 col
+= str_term_width1 (VERSION
);
521 tty_setcolor (HELP_BOLD_COLOR
);
523 case CHAR_FONT_ITALIC
:
524 tty_setcolor (HELP_ITALIC_COLOR
);
526 case CHAR_FONT_NORMAL
:
527 help_print_word (h
, word
, &col
, &line
, FALSE
);
528 tty_setcolor (HELP_NORMAL_COLOR
);
532 help_print_word (h
, word
, &col
, &line
, FALSE
);
537 col
= (col
/ 8 + 1) * 8;
538 if (col
>= HELP_WINDOW_WIDTH
)
547 help_print_word (h
, word
, &col
, &line
, TRUE
);
550 if (painting
&& (line
< help_lines
))
553 /* accumulate symbols in a word */
554 g_string_append (word
, buff
);
555 else if (col
< HELP_WINDOW_WIDTH
)
557 widget_move (h
, line
+ 2, col
+ 2);
559 if ((c
== ' ') || (c
== '.'))
563 tty_print_char (acs_map
[c
]);
565 SLsmg_draw_object (WIDGET (h
)->y
+ line
+ 2, WIDGET (h
)->x
+ col
+ 2,
574 /* print last word */
575 if (n
[0] == CHAR_NODE_END
)
576 help_print_word (h
, word
, &col
, &line
, FALSE
);
579 end_of_node
= line
< help_lines
;
580 tty_setcolor (HELP_NORMAL_COLOR
);
581 if ((int) (selected_item
- last_shown
) >= 0)
583 if ((link_area
== NULL
) || (link_area
->data
== NULL
))
584 selected_item
= NULL
;
587 selected_item
= ((Link_Area
*) link_area
->data
)->link_name
;
592 while (repeat_paint
);
594 g_string_free (word
, TRUE
);
596 /* Position the cursor over a nice link */
598 widget_move (h
, active_line
, active_col
);
601 /* --------------------------------------------------------------------------------------------- */
604 help_event (Gpm_Event
* event
, void *vp
)
606 Widget
*w
= WIDGET (vp
);
607 GSList
*current_area
;
610 if (!mouse_global_in_widget (event
, w
))
611 return MOU_UNHANDLED
;
613 if ((event
->type
& GPM_UP
) == 0)
616 local
= mouse_get_local (event
, w
);
618 /* The event is relative to the dialog window, adjust it: */
622 if ((local
.buttons
& GPM_B_RIGHT
) != 0)
624 currentpoint
= history
[history_ptr
].page
;
625 selected_item
= history
[history_ptr
].link
;
628 history_ptr
= HISTORY_SIZE
- 1;
630 send_message (w
->owner
, NULL
, MSG_DRAW
, 0, NULL
);
634 /* Test whether the mouse click is inside one of the link areas */
635 for (current_area
= link_area
; current_area
!= NULL
; current_area
= g_slist_next (current_area
))
637 Link_Area
*la
= (Link_Area
*) current_area
->data
;
639 /* Test one line link area */
640 if (local
.y
== la
->y1
&& local
.x
>= la
->x1
&& local
.y
== la
->y2
&& local
.x
<= la
->x2
)
643 /* Test two line link area */
644 if (la
->y1
+ 1 == la
->y2
)
647 if (local
.y
== la
->y1
&& local
.x
>= la
->x1
)
649 /* The second line */
650 if (local
.y
== la
->y2
&& local
.x
<= la
->x2
)
653 /* Mouse will not work with link areas of more than two lines */
656 /* Test whether a link area was found */
657 if (current_area
!= NULL
)
659 Link_Area
*la
= (Link_Area
*) current_area
->data
;
661 /* The click was inside a link area -> follow the link */
662 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
663 history
[history_ptr
].page
= currentpoint
;
664 history
[history_ptr
].link
= la
->link_name
;
665 currentpoint
= help_follow_link (currentpoint
, la
->link_name
);
666 selected_item
= NULL
;
668 else if (local
.y
< 0)
669 move_backward (help_lines
- 1);
670 else if (local
.y
>= help_lines
)
671 move_forward (help_lines
- 1);
672 else if (local
.y
< help_lines
/ 2)
677 /* Show the new node */
678 send_message (w
->owner
, NULL
, MSG_DRAW
, 0, NULL
);
683 /* --------------------------------------------------------------------------------------------- */
687 help_help (WDialog
* h
)
691 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
692 history
[history_ptr
].page
= currentpoint
;
693 history
[history_ptr
].link
= selected_item
;
695 p
= search_string (fdata
, "[How to use help]");
698 currentpoint
= p
+ 1; /* Skip the newline following the start of the node */
699 selected_item
= NULL
;
700 send_message (h
, NULL
, MSG_DRAW
, 0, NULL
);
704 /* --------------------------------------------------------------------------------------------- */
707 help_index (WDialog
* h
)
709 const char *new_item
;
711 new_item
= search_string (fdata
, "[Contents]");
713 if (new_item
== NULL
)
714 message (D_ERROR
, MSG_ERROR
, _("Cannot find node %s in help file"), "[Contents]");
717 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
718 history
[history_ptr
].page
= currentpoint
;
719 history
[history_ptr
].link
= selected_item
;
721 currentpoint
= new_item
+ 1; /* Skip the newline following the start of the node */
722 selected_item
= NULL
;
723 send_message (h
, NULL
, MSG_DRAW
, 0, NULL
);
727 /* --------------------------------------------------------------------------------------------- */
730 help_back (WDialog
* h
)
732 currentpoint
= history
[history_ptr
].page
;
733 selected_item
= history
[history_ptr
].link
;
736 history_ptr
= HISTORY_SIZE
- 1;
738 send_message (h
, NULL
, MSG_DRAW
, 0, NULL
); /* FIXME: unneeded? */
741 /* --------------------------------------------------------------------------------------------- */
744 help_next_link (gboolean move_down
)
746 const char *new_item
;
748 new_item
= select_next_link (selected_item
);
749 if (new_item
!= NULL
)
751 selected_item
= new_item
;
752 if ((int) (selected_item
- last_shown
) >= 0)
757 selected_item
= NULL
;
763 selected_item
= NULL
;
766 /* --------------------------------------------------------------------------------------------- */
769 help_prev_link (gboolean move_up
)
771 const char *new_item
;
773 new_item
= select_prev_link (selected_item
);
774 selected_item
= new_item
;
775 if ((selected_item
== NULL
) || (selected_item
< currentpoint
))
779 else if ((link_area
!= NULL
) && (link_area
->data
!= NULL
))
780 selected_item
= ((Link_Area
*) link_area
->data
)->link_name
;
782 selected_item
= NULL
;
786 /* --------------------------------------------------------------------------------------------- */
789 help_next_node (void)
791 const char *new_item
;
793 new_item
= currentpoint
;
794 while ((*new_item
!= '\0') && (*new_item
!= CHAR_NODE_END
))
797 if (*++new_item
== '[')
798 while (*++new_item
!= '\0')
799 if ((*new_item
== ']') && (*++new_item
!= '\0') && (*++new_item
!= '\0'))
801 currentpoint
= new_item
;
802 selected_item
= NULL
;
807 /* --------------------------------------------------------------------------------------------- */
810 help_prev_node (void)
812 const char *new_item
;
814 new_item
= currentpoint
;
815 while (((int) (new_item
- fdata
) > 1) && (*new_item
!= CHAR_NODE_END
))
818 while (((int) (new_item
- fdata
) > 0) && (*new_item
!= CHAR_NODE_END
))
820 while (*new_item
!= ']')
822 currentpoint
= new_item
+ 2;
823 selected_item
= NULL
;
826 /* --------------------------------------------------------------------------------------------- */
829 help_select_link (void)
832 if (selected_item
== NULL
)
834 #ifdef WE_WANT_TO_GO_BACKWARD_ON_KEY_RIGHT
835 /* Is there any reason why the right key would take us
836 * backward if there are no links selected?, I agree
837 * with Torben than doing nothing in this case is better
839 /* If there are no links, go backward in history */
842 history_ptr
= HISTORY_SIZE
- 1;
844 currentpoint
= history
[history_ptr
].page
;
845 selected_item
= history
[history_ptr
].link
;
850 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
851 history
[history_ptr
].page
= currentpoint
;
852 history
[history_ptr
].link
= selected_item
;
853 currentpoint
= help_follow_link (currentpoint
, selected_item
);
856 selected_item
= NULL
;
859 /* --------------------------------------------------------------------------------------------- */
862 help_execute_cmd (unsigned long command
)
864 cb_ret_t ret
= MSG_HANDLED
;
878 help_prev_link (TRUE
);
881 help_next_link (TRUE
);
884 move_forward (help_lines
- 1);
887 move_backward (help_lines
- 1);
889 case CK_HalfPageDown
:
890 move_forward (help_lines
/ 2);
893 move_backward (help_lines
/ 2);
905 help_next_link (FALSE
);
908 help_prev_link (FALSE
);
920 ret
= MSG_NOT_HANDLED
;
926 /* --------------------------------------------------------------------------------------------- */
929 help_handle_key (WDialog
* h
, int c
)
931 unsigned long command
;
933 command
= keybind_lookup_keymap_command (help_map
, c
);
934 if ((command
== CK_IgnoreKey
) || (help_execute_cmd (command
) == MSG_NOT_HANDLED
))
935 return MSG_NOT_HANDLED
;
937 send_message (h
, NULL
, MSG_DRAW
, 0, NULL
);
941 /* --------------------------------------------------------------------------------------------- */
944 help_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
946 WDialog
*h
= DIALOG (w
);
954 help_lines
= min (LINES
- 4, max (2 * LINES
/ 3, 18));
955 dlg_set_size (h
, help_lines
+ 4, HELP_WINDOW_WIDTH
+ 4);
956 bb
= find_buttonbar (h
);
957 widget_set_size (WIDGET (bb
), LINES
- 1, 0, 1, COLS
);
962 dlg_default_repaint (h
);
963 help_show (h
, currentpoint
);
967 return help_handle_key (h
, parm
);
972 return help_execute_cmd (parm
);
973 /* message from buttonbar */
974 if (sender
== WIDGET (find_buttonbar (h
)))
977 return send_message (data
, NULL
, MSG_ACTION
, parm
, NULL
);
978 return help_execute_cmd (parm
);
980 return MSG_NOT_HANDLED
;
983 return dlg_default_callback (w
, sender
, msg
, parm
, data
);
987 /* --------------------------------------------------------------------------------------------- */
990 interactive_display_finish (void)
995 /* --------------------------------------------------------------------------------------------- */
996 /** translate help file into terminal encoding */
999 translate_file (char *filedata
)
1002 GString
*translated_data
;
1004 /* initial allocation for largest whole help file */
1005 translated_data
= g_string_sized_new (32 * 1024);
1007 conv
= str_crt_conv_from ("UTF-8");
1009 if (conv
== INVALID_CONV
)
1010 g_string_free (translated_data
, TRUE
);
1015 if (str_convert (conv
, filedata
, translated_data
) != ESTR_FAILURE
)
1016 fdata
= g_string_free (translated_data
, FALSE
);
1020 g_string_free (translated_data
, TRUE
);
1022 str_close_conv (conv
);
1026 /* --------------------------------------------------------------------------------------------- */
1029 md_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
1034 w
->lines
= help_lines
;
1038 return widget_default_callback (w
, sender
, msg
, parm
, data
);
1042 /* --------------------------------------------------------------------------------------------- */
1045 mousedispatch_new (int y
, int x
, int yl
, int xl
)
1049 w
= g_new (Widget
, 1);
1050 widget_init (w
, y
, x
, yl
, xl
, md_callback
, help_event
);
1054 /* --------------------------------------------------------------------------------------------- */
1055 /*** public functions ****************************************************************************/
1056 /* --------------------------------------------------------------------------------------------- */
1058 /* event callback */
1060 help_interactive_display (const gchar
* event_group_name
, const gchar
* event_name
,
1061 gpointer init_data
, gpointer data
)
1063 const dlg_colors_t help_colors
= {
1064 HELP_NORMAL_COLOR
, /* common text color */
1065 0, /* unused in help */
1066 HELP_BOLD_COLOR
, /* bold text color */
1067 0, /* unused in help */
1068 HELP_TITLE_COLOR
/* title color */
1071 WButtonBar
*help_bar
;
1073 char *hlpfile
= NULL
;
1075 ev_help_t
*event_data
= (ev_help_t
*) data
;
1077 (void) event_group_name
;
1081 if (event_data
->filename
!= NULL
)
1082 g_file_get_contents (event_data
->filename
, &filedata
, NULL
, NULL
);
1084 filedata
= load_mc_home_file (mc_global
.share_data_dir
, MC_HELP
, &hlpfile
);
1086 if (filedata
== NULL
)
1087 message (D_ERROR
, MSG_ERROR
, _("Cannot open file %s\n%s"),
1088 event_data
->filename
? event_data
->filename
: hlpfile
, unix_error_string (errno
));
1092 if (filedata
== NULL
)
1095 translate_file (filedata
);
1102 if ((event_data
->node
== NULL
) || (*event_data
->node
== '\0'))
1103 event_data
->node
= "[main]";
1105 main_node
= search_string (fdata
, event_data
->node
);
1107 if (main_node
== NULL
)
1109 message (D_ERROR
, MSG_ERROR
, _("Cannot find node %s in help file"), event_data
->node
);
1111 /* Fallback to [main], return if it also cannot be found */
1112 main_node
= search_string (fdata
, "[main]");
1113 if (main_node
== NULL
)
1115 interactive_display_finish ();
1120 help_lines
= min (LINES
- 4, max (2 * LINES
/ 3, 18));
1123 dlg_create (TRUE
, 0, 0, help_lines
+ 4, HELP_WINDOW_WIDTH
+ 4,
1124 help_colors
, help_callback
, NULL
, "[Help]", _("Help"),
1125 DLG_TRYUP
| DLG_CENTER
| DLG_WANT_TAB
);
1127 selected_item
= search_string_node (main_node
, STRING_LINK_START
) - 1;
1128 currentpoint
= main_node
+ 1; /* Skip the newline following the start of the node */
1130 for (history_ptr
= HISTORY_SIZE
; history_ptr
;)
1133 history
[history_ptr
].page
= currentpoint
;
1134 history
[history_ptr
].link
= selected_item
;
1137 help_bar
= buttonbar_new (TRUE
);
1138 WIDGET (help_bar
)->y
-= WIDGET (whelp
)->y
;
1139 WIDGET (help_bar
)->x
-= WIDGET (whelp
)->x
;
1141 md
= mousedispatch_new (1, 1, help_lines
, HELP_WINDOW_WIDTH
- 2);
1143 add_widget (whelp
, md
);
1144 add_widget (whelp
, help_bar
);
1146 buttonbar_set_label (help_bar
, 1, Q_ ("ButtonBar|Help"), help_map
, NULL
);
1147 buttonbar_set_label (help_bar
, 2, Q_ ("ButtonBar|Index"), help_map
, NULL
);
1148 buttonbar_set_label (help_bar
, 3, Q_ ("ButtonBar|Prev"), help_map
, NULL
);
1149 buttonbar_set_label (help_bar
, 4, "", help_map
, NULL
);
1150 buttonbar_set_label (help_bar
, 5, "", help_map
, NULL
);
1151 buttonbar_set_label (help_bar
, 6, "", help_map
, NULL
);
1152 buttonbar_set_label (help_bar
, 7, "", help_map
, NULL
);
1153 buttonbar_set_label (help_bar
, 8, "", help_map
, NULL
);
1154 buttonbar_set_label (help_bar
, 9, "", help_map
, NULL
);
1155 buttonbar_set_label (help_bar
, 10, Q_ ("ButtonBar|Quit"), help_map
, NULL
);
1158 interactive_display_finish ();
1159 dlg_destroy (whelp
);
1163 /* --------------------------------------------------------------------------------------------- */