1 /* Hypertext file browser.
2 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * \brief Source: hypertext file browser
24 * Implements the hypertext file viewer.
25 * The hypertext file is a file that may have one or more nodes. Each
26 * node ends with a ^D character and starts with a bracket, then the
27 * name of the node and then a closing bracket. Right after the closing
28 * bracket a newline is placed. This newline is not to be displayed by
29 * the help viewer and must be skipped - its sole purpose is to faciliate
30 * the work of the people managing the help file template (xnc.hlp) .
32 * Links in the hypertext file are specified like this: the text that
33 * will be highlighted should have a leading ^A, then it comes the
34 * text, then a ^B indicating that highlighting is done, then the name
35 * of the node you want to link to and then a ^C.
37 * The file must contain a ^D at the beginning and at the end of the
38 * file or the program will not be able to detect the end of file.
40 * Lazyness/widgeting attack: This file does use the dialog manager
41 * and uses mainly the dialog to achieve the help work. there is only
42 * one specialized widget and it's only used to forward the mouse messages
43 * to the appropiate routine.
51 #include <sys/types.h>
54 #include "lib/global.h"
56 #include "lib/tty/tty.h"
57 #include "lib/tty/mouse.h"
59 #include "lib/strutil.h"
60 #include "lib/fileloc.h"
62 #include "lib/widget.h"
63 #include "lib/event-types.h"
65 #include "keybind-defaults.h"
66 #include "keybind-defaults.h"
70 /*** global variables ****************************************************************************/
72 /*** file scope macro definitions ****************************************************************/
74 #define MAXLINKNAME 80
75 #define HISTORY_SIZE 20
76 #define HELP_WINDOW_WIDTH min(80, COLS - 16)
78 #define STRING_LINK_START "\01"
79 #define STRING_LINK_POINTER "\02"
80 #define STRING_LINK_END "\03"
81 #define STRING_NODE_END "\04"
83 /*** file scope type declarations ****************************************************************/
85 /* Link areas for the mouse */
86 typedef struct Link_Area
89 const char *link_name
;
92 /*** file scope variables ************************************************************************/
94 static char *fdata
= NULL
; /* Pointer to the loaded data file */
95 static int help_lines
; /* Lines in help viewer */
96 static int history_ptr
; /* For the history queue */
97 static const char *main_node
; /* The main node */
98 static const char *last_shown
= NULL
; /* Last byte shown in a screen */
99 static gboolean end_of_node
= FALSE
; /* Flag: the last character of the node shown? */
100 static const char *currentpoint
;
101 static const char *selected_item
;
103 /* The widget variables */
104 static Dlg_head
*whelp
;
108 const char *page
; /* Pointer to the selected page */
109 const char *link
; /* Pointer to the selected link */
110 } history
[HISTORY_SIZE
];
112 static GSList
*link_area
= NULL
;
113 static gboolean inside_link_area
= FALSE
;
115 static cb_ret_t
help_callback (Dlg_head
* h
, Widget
* sender
, dlg_msg_t msg
, int parm
, void *data
);
117 /*** file scope functions ************************************************************************/
118 /* --------------------------------------------------------------------------------------------- */
120 /** returns the position where text was found in the start buffer
124 search_string (const char *start
, const char *text
)
126 const char *result
= NULL
;
127 char *local_text
= g_strdup (text
);
128 char *d
= local_text
;
129 const char *e
= start
;
131 /* fmt sometimes replaces a space with a newline in the help file */
132 /* Replace the newlines in the link name with spaces to correct the situation */
141 for (d
= local_text
; *e
; e
++)
158 /* --------------------------------------------------------------------------------------------- */
159 /** Searches text in the buffer pointed by start. Search ends
160 * if the CHAR_NODE_END is found in the text.
161 * @returns 0 on failure
165 search_string_node (const char *start
, const char *text
)
167 const char *d
= text
;
168 const char *e
= start
;
171 for (; *e
&& *e
!= CHAR_NODE_END
; e
++)
184 /* --------------------------------------------------------------------------------------------- */
185 /** Searches the_char in the buffer pointer by start and searches
186 * it can search forward (direction = 1) or backward (direction = -1)
190 search_char_node (const char *start
, char the_char
, int direction
)
194 for (e
= start
; (*e
!= '\0') && (*e
!= CHAR_NODE_END
); e
+= direction
)
201 /* --------------------------------------------------------------------------------------------- */
202 /** Returns the new current pointer when moved lines lines */
205 move_forward2 (const char *c
, int lines
)
211 for (line
= 0, p
= currentpoint
; (*p
!= '\0') && (*p
!= CHAR_NODE_END
); str_cnext_char (&p
))
214 return currentpoint
= p
;
219 return currentpoint
= c
;
222 /* --------------------------------------------------------------------------------------------- */
225 move_backward2 (const char *c
, int lines
)
231 for (line
= 0, p
= currentpoint
; (*p
!= '\0') && ((int) (p
- fdata
) >= 0); str_cprev_char (&p
))
233 if (*p
== CHAR_NODE_END
)
235 /* We reached the beginning of the node */
236 /* Skip the node headers */
239 return currentpoint
= p
+ 2; /* Skip the newline following the start of the node */
242 if (*(p
- 1) == '\n')
245 return currentpoint
= p
;
247 return currentpoint
= c
;
250 /* --------------------------------------------------------------------------------------------- */
256 currentpoint
= move_forward2 (currentpoint
, i
);
259 /* --------------------------------------------------------------------------------------------- */
262 move_backward (int i
)
264 currentpoint
= move_backward2 (currentpoint
, ++i
);
267 /* --------------------------------------------------------------------------------------------- */
272 while (((int) (currentpoint
> fdata
) > 0) && (*currentpoint
!= CHAR_NODE_END
))
275 while (*currentpoint
!= ']')
277 currentpoint
= currentpoint
+ 2; /* Skip the newline following the start of the node */
278 selected_item
= NULL
;
281 /* --------------------------------------------------------------------------------------------- */
284 move_to_bottom (void)
286 while ((*currentpoint
!= '\0') && (*currentpoint
!= CHAR_NODE_END
))
292 /* --------------------------------------------------------------------------------------------- */
295 help_follow_link (const char *start
, const char *lc_selected_item
)
297 char link_name
[MAXLINKNAME
];
301 if (lc_selected_item
== NULL
)
304 for (p
= lc_selected_item
; *p
&& *p
!= CHAR_NODE_END
&& *p
!= CHAR_LINK_POINTER
; p
++)
306 if (*p
== CHAR_LINK_POINTER
)
309 for (i
= 1; *p
!= CHAR_LINK_END
&& *p
&& *p
!= CHAR_NODE_END
&& i
< MAXLINKNAME
- 3;)
310 link_name
[i
++] = *++p
;
311 link_name
[i
- 1] = ']';
313 p
= search_string (fdata
, link_name
);
316 p
+= 1; /* Skip the newline following the start of the node */
321 /* Create a replacement page with the error message */
322 return _("Help file format error\n");
325 /* --------------------------------------------------------------------------------------------- */
328 select_next_link (const char *current_link
)
332 if (current_link
== NULL
)
335 p
= search_string_node (current_link
, STRING_LINK_END
);
338 p
= search_string_node (p
, STRING_LINK_START
);
344 /* --------------------------------------------------------------------------------------------- */
347 select_prev_link (const char *current_link
)
349 return current_link
== NULL
? NULL
: search_char_node (current_link
- 1, CHAR_LINK_START
, -1);
352 /* --------------------------------------------------------------------------------------------- */
355 start_link_area (int x
, int y
, const char *link_name
)
359 if (inside_link_area
)
360 message (D_NORMAL
, _("Warning"), _("Internal bug: Double start of link area"));
362 /* Allocate memory for a new link area */
363 la
= g_new (Link_Area
, 1);
364 /* Save the beginning coordinates of the link area */
367 /* Save the name of the destination anchor */
368 la
->link_name
= link_name
;
369 link_area
= g_slist_prepend (link_area
, la
);
371 inside_link_area
= TRUE
;
374 /* --------------------------------------------------------------------------------------------- */
377 end_link_area (int x
, int y
)
379 if (inside_link_area
)
381 Link_Area
*la
= (Link_Area
*) link_area
->data
;
382 /* Save the end coordinates of the link area */
385 inside_link_area
= FALSE
;
389 /* --------------------------------------------------------------------------------------------- */
392 clear_link_areas (void)
394 g_slist_foreach (link_area
, (GFunc
) g_free
, NULL
);
395 g_slist_free (link_area
);
397 inside_link_area
= FALSE
;
400 /* --------------------------------------------------------------------------------------------- */
403 help_print_word (Dlg_head
* 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 dlg_move (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 (Dlg_head
* 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
:
500 end_link_area (col
- 1, line
);
504 help_print_word (h
, word
, &col
, &line
, FALSE
);
505 tty_setcolor (HELP_NORMAL_COLOR
);
514 dlg_move (h
, line
+ 2, col
+ 2);
515 tty_print_string (VERSION
);
516 col
+= str_term_width1 (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
);
535 col
= (col
/ 8 + 1) * 8;
536 if (col
>= HELP_WINDOW_WIDTH
)
545 help_print_word (h
, word
, &col
, &line
, TRUE
);
548 if (painting
&& (line
< help_lines
))
551 /* accumulate symbols in a word */
552 g_string_append (word
, buff
);
553 else if (col
< HELP_WINDOW_WIDTH
)
555 dlg_move (h
, line
+ 2, col
+ 2);
557 if ((c
== ' ') || (c
== '.'))
561 tty_print_char (acs_map
[c
]);
563 SLsmg_draw_object (h
->y
+ line
+ 2, h
->x
+ col
+ 2, c
);
571 /* print last word */
572 if (n
[0] == CHAR_NODE_END
)
573 help_print_word (h
, word
, &col
, &line
, FALSE
);
576 end_of_node
= line
< help_lines
;
577 tty_setcolor (HELP_NORMAL_COLOR
);
578 if ((int) (selected_item
- last_shown
) >= 0)
580 if ((link_area
== NULL
) || (link_area
->data
== NULL
))
581 selected_item
= NULL
;
584 selected_item
= ((Link_Area
*) link_area
->data
)->link_name
;
589 while (repeat_paint
);
591 g_string_free (word
, TRUE
);
593 /* Position the cursor over a nice link */
595 dlg_move (h
, active_line
, active_col
);
598 /* --------------------------------------------------------------------------------------------- */
601 help_event (Gpm_Event
* event
, void *vp
)
604 GSList
*current_area
;
606 if ((event
->type
& GPM_UP
) == 0)
609 /* The event is relative to the dialog window, adjust it: */
613 if (event
->buttons
& GPM_B_RIGHT
)
615 currentpoint
= history
[history_ptr
].page
;
616 selected_item
= history
[history_ptr
].link
;
619 history_ptr
= HISTORY_SIZE
- 1;
621 help_callback (w
->owner
, NULL
, DLG_DRAW
, 0, NULL
);
625 /* Test whether the mouse click is inside one of the link areas */
626 for (current_area
= link_area
; current_area
!= NULL
; current_area
= g_slist_next (current_area
))
628 Link_Area
*la
= (Link_Area
*) current_area
->data
;
629 /* Test one line link area */
630 if (event
->y
== la
->y1
&& event
->x
>= la
->x1
&& event
->y
== la
->y2
&& event
->x
<= la
->x2
)
632 /* Test two line link area */
633 if (la
->y1
+ 1 == la
->y2
)
636 if (event
->y
== la
->y1
&& event
->x
>= la
->x1
)
638 /* The second line */
639 if (event
->y
== la
->y2
&& event
->x
<= la
->x2
)
642 /* Mouse will not work with link areas of more than two lines */
645 /* Test whether a link area was found */
646 if (current_area
!= NULL
)
648 Link_Area
*la
= (Link_Area
*) current_area
->data
;
650 /* The click was inside a link area -> follow the link */
651 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
652 history
[history_ptr
].page
= currentpoint
;
653 history
[history_ptr
].link
= la
->link_name
;
654 currentpoint
= help_follow_link (currentpoint
, la
->link_name
);
655 selected_item
= NULL
;
657 else if (event
->y
< 0)
658 move_backward (help_lines
- 1);
659 else if (event
->y
>= help_lines
)
660 move_forward (help_lines
- 1);
661 else if (event
->y
< help_lines
/ 2)
666 /* Show the new node */
667 help_callback (w
->owner
, NULL
, DLG_DRAW
, 0, NULL
);
672 /* --------------------------------------------------------------------------------------------- */
676 help_help (Dlg_head
* h
)
680 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
681 history
[history_ptr
].page
= currentpoint
;
682 history
[history_ptr
].link
= selected_item
;
684 p
= search_string (fdata
, "[How to use help]");
687 currentpoint
= p
+ 1; /* Skip the newline following the start of the node */
688 selected_item
= NULL
;
689 help_callback (h
, NULL
, DLG_DRAW
, 0, NULL
);
693 /* --------------------------------------------------------------------------------------------- */
696 help_index (Dlg_head
* h
)
698 const char *new_item
;
700 new_item
= search_string (fdata
, "[Contents]");
702 if (new_item
== NULL
)
703 message (D_ERROR
, MSG_ERROR
, _("Cannot find node %s in help file"), "[Contents]");
706 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
707 history
[history_ptr
].page
= currentpoint
;
708 history
[history_ptr
].link
= selected_item
;
710 currentpoint
= new_item
+ 1; /* Skip the newline following the start of the node */
711 selected_item
= NULL
;
712 help_callback (h
, NULL
, DLG_DRAW
, 0, NULL
);
716 /* --------------------------------------------------------------------------------------------- */
719 help_back (Dlg_head
* h
)
721 currentpoint
= history
[history_ptr
].page
;
722 selected_item
= history
[history_ptr
].link
;
725 history_ptr
= HISTORY_SIZE
- 1;
727 help_callback (h
, NULL
, DLG_DRAW
, 0, NULL
); /* FIXME: unneeded? */
730 /* --------------------------------------------------------------------------------------------- */
733 help_next_link (gboolean move_down
)
735 const char *new_item
;
737 new_item
= select_next_link (selected_item
);
738 if (new_item
!= NULL
)
740 selected_item
= new_item
;
741 if ((int) (selected_item
- last_shown
) >= 0)
746 selected_item
= NULL
;
752 selected_item
= NULL
;
755 /* --------------------------------------------------------------------------------------------- */
758 help_prev_link (gboolean move_up
)
760 const char *new_item
;
762 new_item
= select_prev_link (selected_item
);
763 selected_item
= new_item
;
764 if ((selected_item
== NULL
) || (selected_item
< currentpoint
))
768 else if ((link_area
!= NULL
) && (link_area
->data
!= NULL
))
769 selected_item
= ((Link_Area
*) link_area
->data
)->link_name
;
771 selected_item
= NULL
;
775 /* --------------------------------------------------------------------------------------------- */
778 help_next_node (void)
780 const char *new_item
;
782 new_item
= currentpoint
;
783 while ((*new_item
!= '\0') && (*new_item
!= CHAR_NODE_END
))
786 if (*++new_item
== '[')
787 while (*++new_item
!= '\0')
788 if ((*new_item
== ']') && (*++new_item
!= '\0') && (*++new_item
!= '\0'))
790 currentpoint
= new_item
;
791 selected_item
= NULL
;
796 /* --------------------------------------------------------------------------------------------- */
799 help_prev_node (void)
801 const char *new_item
;
803 new_item
= currentpoint
;
804 while (((int) (new_item
- fdata
) > 1) && (*new_item
!= CHAR_NODE_END
))
807 while (((int) (new_item
- fdata
) > 0) && (*new_item
!= CHAR_NODE_END
))
809 while (*new_item
!= ']')
811 currentpoint
= new_item
+ 2;
812 selected_item
= NULL
;
815 /* --------------------------------------------------------------------------------------------- */
818 help_select_link (void)
821 if (selected_item
== NULL
)
823 #ifdef WE_WANT_TO_GO_BACKWARD_ON_KEY_RIGHT
824 /* Is there any reason why the right key would take us
825 * backward if there are no links selected?, I agree
826 * with Torben than doing nothing in this case is better
828 /* If there are no links, go backward in history */
831 history_ptr
= HISTORY_SIZE
- 1;
833 currentpoint
= history
[history_ptr
].page
;
834 selected_item
= history
[history_ptr
].link
;
839 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
840 history
[history_ptr
].page
= currentpoint
;
841 history
[history_ptr
].link
= selected_item
;
842 currentpoint
= help_follow_link (currentpoint
, selected_item
);
845 selected_item
= NULL
;
848 /* --------------------------------------------------------------------------------------------- */
851 help_execute_cmd (unsigned long command
)
853 cb_ret_t ret
= MSG_HANDLED
;
867 help_prev_link (TRUE
);
870 help_next_link (TRUE
);
873 move_forward (help_lines
- 1);
876 move_backward (help_lines
- 1);
878 case CK_HalfPageDown
:
879 move_forward (help_lines
/ 2);
882 move_backward (help_lines
/ 2);
894 help_next_link (FALSE
);
897 help_prev_link (FALSE
);
909 /* don't close help due to SIGINT */
912 ret
= MSG_NOT_HANDLED
;
918 /* --------------------------------------------------------------------------------------------- */
921 help_handle_key (Dlg_head
* h
, int c
)
923 unsigned long command
;
925 command
= keybind_lookup_keymap_command (help_map
, c
);
926 if ((command
== CK_IgnoreKey
) || (help_execute_cmd (command
) == MSG_NOT_HANDLED
))
927 return MSG_NOT_HANDLED
;
929 help_callback (h
, NULL
, DLG_DRAW
, 0, NULL
);
933 /* --------------------------------------------------------------------------------------------- */
936 help_callback (Dlg_head
* h
, Widget
* sender
, dlg_msg_t msg
, int parm
, void *data
)
943 help_lines
= min (LINES
- 4, max (2 * LINES
/ 3, 18));
944 dlg_set_size (h
, help_lines
+ 4, HELP_WINDOW_WIDTH
+ 4);
945 bb
= find_buttonbar (h
);
946 widget_set_size (&bb
->widget
, LINES
- 1, 0, 1, COLS
);
950 common_dialog_repaint (h
);
951 help_show (h
, currentpoint
);
955 return help_handle_key (h
, parm
);
960 return help_execute_cmd (parm
);
961 /* message from buttonbar */
962 if (sender
== (Widget
*) find_buttonbar (h
))
965 return send_message ((Widget
*) data
, WIDGET_COMMAND
, parm
);
966 return help_execute_cmd (parm
);
968 return MSG_NOT_HANDLED
;
971 return default_dlg_callback (h
, sender
, msg
, parm
, data
);
975 /* --------------------------------------------------------------------------------------------- */
978 interactive_display_finish (void)
983 /* --------------------------------------------------------------------------------------------- */
984 /** translate help file into terminal encoding */
987 translate_file (char *filedata
)
990 GString
*translated_data
;
992 /* initial allocation for largest whole help file */
993 translated_data
= g_string_sized_new (32 * 1024);
995 conv
= str_crt_conv_from ("UTF-8");
997 if (conv
== INVALID_CONV
)
998 g_string_free (translated_data
, TRUE
);
1003 if (str_convert (conv
, filedata
, translated_data
) != ESTR_FAILURE
)
1004 fdata
= g_string_free (translated_data
, FALSE
);
1008 g_string_free (translated_data
, TRUE
);
1010 str_close_conv (conv
);
1014 /* --------------------------------------------------------------------------------------------- */
1017 md_callback (Widget
* w
, widget_msg_t msg
, int parm
)
1021 case WIDGET_RESIZED
:
1022 w
->lines
= help_lines
;
1026 return default_proc (msg
, parm
);
1030 /* --------------------------------------------------------------------------------------------- */
1033 mousedispatch_new (int y
, int x
, int yl
, int xl
)
1035 Widget
*w
= g_new (Widget
, 1);
1036 init_widget (w
, y
, x
, yl
, xl
, md_callback
, help_event
);
1040 /* --------------------------------------------------------------------------------------------- */
1041 /*** public functions ****************************************************************************/
1042 /* --------------------------------------------------------------------------------------------- */
1044 /* event callback */
1046 help_interactive_display (const gchar
* event_group_name
, const gchar
* event_name
,
1047 gpointer init_data
, gpointer data
)
1049 const dlg_colors_t help_colors
= {
1050 HELP_NORMAL_COLOR
, /* common text color */
1051 0, /* unused in help */
1052 HELP_BOLD_COLOR
, /* bold text color */
1053 0, /* unused in help */
1054 HELP_TITLE_COLOR
/* title color */
1057 WButtonBar
*help_bar
;
1059 char *hlpfile
= NULL
;
1061 ev_help_t
*event_data
= (ev_help_t
*) data
;
1063 (void) event_group_name
;
1067 if (event_data
->filename
!= NULL
)
1068 g_file_get_contents (event_data
->filename
, &filedata
, NULL
, NULL
);
1070 filedata
= load_mc_home_file (mc_global
.share_data_dir
, MC_HELP
, &hlpfile
);
1072 if (filedata
== NULL
)
1073 message (D_ERROR
, MSG_ERROR
, _("Cannot open file %s\n%s"),
1074 event_data
->filename
? event_data
->filename
: hlpfile
, unix_error_string (errno
));
1078 if (filedata
== NULL
)
1081 translate_file (filedata
);
1088 if ((event_data
->node
== NULL
) || (*event_data
->node
== '\0'))
1089 event_data
->node
= "[main]";
1091 main_node
= search_string (fdata
, event_data
->node
);
1093 if (main_node
== NULL
)
1095 message (D_ERROR
, MSG_ERROR
, _("Cannot find node %s in help file"), event_data
->node
);
1097 /* Fallback to [main], return if it also cannot be found */
1098 main_node
= search_string (fdata
, "[main]");
1099 if (main_node
== NULL
)
1101 interactive_display_finish ();
1106 help_lines
= min (LINES
- 4, max (2 * LINES
/ 3, 18));
1109 create_dlg (TRUE
, 0, 0, help_lines
+ 4, HELP_WINDOW_WIDTH
+ 4,
1110 help_colors
, help_callback
, "[Help]", _("Help"),
1111 DLG_TRYUP
| DLG_CENTER
| DLG_WANT_TAB
);
1113 selected_item
= search_string_node (main_node
, STRING_LINK_START
) - 1;
1114 currentpoint
= main_node
+ 1; /* Skip the newline following the start of the node */
1116 for (history_ptr
= HISTORY_SIZE
; history_ptr
;)
1119 history
[history_ptr
].page
= currentpoint
;
1120 history
[history_ptr
].link
= selected_item
;
1123 help_bar
= buttonbar_new (TRUE
);
1124 help_bar
->widget
.y
-= whelp
->y
;
1125 help_bar
->widget
.x
-= whelp
->x
;
1127 md
= mousedispatch_new (1, 1, help_lines
, HELP_WINDOW_WIDTH
- 2);
1129 add_widget (whelp
, md
);
1130 add_widget (whelp
, help_bar
);
1132 buttonbar_set_label (help_bar
, 1, Q_ ("ButtonBar|Help"), help_map
, NULL
);
1133 buttonbar_set_label (help_bar
, 2, Q_ ("ButtonBar|Index"), help_map
, NULL
);
1134 buttonbar_set_label (help_bar
, 3, Q_ ("ButtonBar|Prev"), help_map
, NULL
);
1135 buttonbar_set_label (help_bar
, 4, "", help_map
, NULL
);
1136 buttonbar_set_label (help_bar
, 5, "", help_map
, NULL
);
1137 buttonbar_set_label (help_bar
, 6, "", help_map
, NULL
);
1138 buttonbar_set_label (help_bar
, 7, "", help_map
, NULL
);
1139 buttonbar_set_label (help_bar
, 8, "", help_map
, NULL
);
1140 buttonbar_set_label (help_bar
, 9, "", help_map
, NULL
);
1141 buttonbar_set_label (help_bar
, 10, Q_ ("ButtonBar|Quit"), help_map
, NULL
);
1144 interactive_display_finish ();
1145 destroy_dlg (whelp
);
1149 /* --------------------------------------------------------------------------------------------- */