2 Hypertext file browser.
4 Copyright (C) 1994-2016
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 faciliate
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 * Lazyness/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.
54 #include <sys/types.h>
57 #include "lib/global.h"
59 #include "lib/tty/tty.h"
61 #include "lib/strutil.h"
62 #include "lib/fileloc.h"
64 #include "lib/widget.h"
65 #include "lib/event-types.h"
67 #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 WDialog
*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 (Widget
* w
, Widget
* sender
, widget_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 * @return NULL 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
)
299 if (lc_selected_item
== NULL
)
302 for (p
= lc_selected_item
; *p
&& *p
!= CHAR_NODE_END
&& *p
!= CHAR_LINK_POINTER
; p
++)
304 if (*p
== CHAR_LINK_POINTER
)
307 char link_name
[MAXLINKNAME
];
310 for (i
= 1; *p
!= CHAR_LINK_END
&& *p
&& *p
!= CHAR_NODE_END
&& i
< MAXLINKNAME
- 3;)
311 link_name
[i
++] = *++p
;
312 link_name
[i
- 1] = ']';
314 p
= search_string (fdata
, link_name
);
317 p
+= 1; /* Skip the newline following the start of the node */
322 /* Create a replacement page with the error message */
323 return _("Help file format error\n");
326 /* --------------------------------------------------------------------------------------------- */
329 select_next_link (const char *current_link
)
333 if (current_link
== NULL
)
336 p
= search_string_node (current_link
, STRING_LINK_END
);
339 p
= search_string_node (p
, STRING_LINK_START
);
345 /* --------------------------------------------------------------------------------------------- */
348 select_prev_link (const char *current_link
)
350 return current_link
== NULL
? NULL
: search_char_node (current_link
- 1, CHAR_LINK_START
, -1);
353 /* --------------------------------------------------------------------------------------------- */
356 start_link_area (int x
, int y
, const char *link_name
)
360 if (inside_link_area
)
361 message (D_NORMAL
, _("Warning"), _("Internal bug: Double start of link area"));
363 /* Allocate memory for a new link area */
364 la
= g_new (Link_Area
, 1);
365 /* Save the beginning coordinates of the link area */
368 /* Save the name of the destination anchor */
369 la
->link_name
= link_name
;
370 link_area
= g_slist_prepend (link_area
, la
);
372 inside_link_area
= TRUE
;
375 /* --------------------------------------------------------------------------------------------- */
378 end_link_area (int x
, int y
)
380 if (inside_link_area
)
382 Link_Area
*la
= (Link_Area
*) link_area
->data
;
383 /* Save the end coordinates of the link area */
386 inside_link_area
= FALSE
;
390 /* --------------------------------------------------------------------------------------------- */
393 clear_link_areas (void)
395 g_slist_free_full (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_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 (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_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 widget_move (h
, line
+ 2, col
+ 2);
557 if ((c
== ' ') || (c
== '.'))
561 tty_print_char (acs_map
[c
]);
563 SLsmg_draw_object (WIDGET (h
)->y
+ line
+ 2, WIDGET (h
)->x
+ col
+ 2,
572 /* print last word */
573 if (n
[0] == CHAR_NODE_END
)
574 help_print_word (h
, word
, &col
, &line
, FALSE
);
577 end_of_node
= line
< help_lines
;
578 tty_setcolor (HELP_NORMAL_COLOR
);
579 if ((int) (selected_item
- last_shown
) >= 0)
581 if ((link_area
== NULL
) || (link_area
->data
== NULL
))
582 selected_item
= NULL
;
585 selected_item
= ((Link_Area
*) link_area
->data
)->link_name
;
590 while (repeat_paint
);
592 g_string_free (word
, TRUE
);
594 /* Position the cursor over a nice link */
596 widget_move (h
, active_line
, active_col
);
599 /* --------------------------------------------------------------------------------------------- */
603 help_help (WDialog
* h
)
607 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
608 history
[history_ptr
].page
= currentpoint
;
609 history
[history_ptr
].link
= selected_item
;
611 p
= search_string (fdata
, "[How to use help]");
614 currentpoint
= p
+ 1; /* Skip the newline following the start of the node */
615 selected_item
= NULL
;
616 send_message (h
, NULL
, MSG_DRAW
, 0, NULL
);
620 /* --------------------------------------------------------------------------------------------- */
623 help_index (WDialog
* h
)
625 const char *new_item
;
627 new_item
= search_string (fdata
, "[Contents]");
629 if (new_item
== NULL
)
630 message (D_ERROR
, MSG_ERROR
, _("Cannot find node %s in help file"), "[Contents]");
633 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
634 history
[history_ptr
].page
= currentpoint
;
635 history
[history_ptr
].link
= selected_item
;
637 currentpoint
= new_item
+ 1; /* Skip the newline following the start of the node */
638 selected_item
= NULL
;
639 send_message (h
, NULL
, MSG_DRAW
, 0, NULL
);
643 /* --------------------------------------------------------------------------------------------- */
646 help_back (WDialog
* h
)
648 currentpoint
= history
[history_ptr
].page
;
649 selected_item
= history
[history_ptr
].link
;
652 history_ptr
= HISTORY_SIZE
- 1;
654 send_message (h
, NULL
, MSG_DRAW
, 0, NULL
); /* FIXME: unneeded? */
657 /* --------------------------------------------------------------------------------------------- */
660 help_next_link (gboolean move_down
)
662 const char *new_item
;
664 new_item
= select_next_link (selected_item
);
665 if (new_item
!= NULL
)
667 selected_item
= new_item
;
668 if ((int) (selected_item
- last_shown
) >= 0)
673 selected_item
= NULL
;
679 selected_item
= NULL
;
682 /* --------------------------------------------------------------------------------------------- */
685 help_prev_link (gboolean move_up
)
687 const char *new_item
;
689 new_item
= select_prev_link (selected_item
);
690 selected_item
= new_item
;
691 if ((selected_item
== NULL
) || (selected_item
< currentpoint
))
695 else if ((link_area
!= NULL
) && (link_area
->data
!= NULL
))
696 selected_item
= ((Link_Area
*) link_area
->data
)->link_name
;
698 selected_item
= NULL
;
702 /* --------------------------------------------------------------------------------------------- */
705 help_next_node (void)
707 const char *new_item
;
709 new_item
= currentpoint
;
710 while ((*new_item
!= '\0') && (*new_item
!= CHAR_NODE_END
))
713 if (*++new_item
== '[')
714 while (*++new_item
!= '\0')
715 if ((*new_item
== ']') && (*++new_item
!= '\0') && (*++new_item
!= '\0'))
717 currentpoint
= new_item
;
718 selected_item
= NULL
;
723 /* --------------------------------------------------------------------------------------------- */
726 help_prev_node (void)
728 const char *new_item
;
730 new_item
= currentpoint
;
731 while (((int) (new_item
- fdata
) > 1) && (*new_item
!= CHAR_NODE_END
))
734 while (((int) (new_item
- fdata
) > 0) && (*new_item
!= CHAR_NODE_END
))
736 while (*new_item
!= ']')
738 currentpoint
= new_item
+ 2;
739 selected_item
= NULL
;
742 /* --------------------------------------------------------------------------------------------- */
745 help_select_link (void)
748 if (selected_item
== NULL
)
750 #ifdef WE_WANT_TO_GO_BACKWARD_ON_KEY_RIGHT
751 /* Is there any reason why the right key would take us
752 * backward if there are no links selected?, I agree
753 * with Torben than doing nothing in this case is better
755 /* If there are no links, go backward in history */
758 history_ptr
= HISTORY_SIZE
- 1;
760 currentpoint
= history
[history_ptr
].page
;
761 selected_item
= history
[history_ptr
].link
;
766 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
767 history
[history_ptr
].page
= currentpoint
;
768 history
[history_ptr
].link
= selected_item
;
769 currentpoint
= help_follow_link (currentpoint
, selected_item
);
772 selected_item
= NULL
;
775 /* --------------------------------------------------------------------------------------------- */
778 help_execute_cmd (long command
)
780 cb_ret_t ret
= MSG_HANDLED
;
794 help_prev_link (TRUE
);
797 help_next_link (TRUE
);
800 move_forward (help_lines
- 1);
803 move_backward (help_lines
- 1);
805 case CK_HalfPageDown
:
806 move_forward (help_lines
/ 2);
809 move_backward (help_lines
/ 2);
821 help_next_link (FALSE
);
824 help_prev_link (FALSE
);
836 ret
= MSG_NOT_HANDLED
;
842 /* --------------------------------------------------------------------------------------------- */
845 help_handle_key (WDialog
* h
, int c
)
849 command
= keybind_lookup_keymap_command (help_map
, c
);
850 if ((command
== CK_IgnoreKey
) || (help_execute_cmd (command
) == MSG_NOT_HANDLED
))
851 return MSG_NOT_HANDLED
;
853 send_message (h
, NULL
, MSG_DRAW
, 0, NULL
);
857 /* --------------------------------------------------------------------------------------------- */
860 help_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
862 WDialog
*h
= DIALOG (w
);
870 help_lines
= MIN (LINES
- 4, MAX (2 * LINES
/ 3, 18));
871 dlg_set_size (h
, help_lines
+ 4, HELP_WINDOW_WIDTH
+ 4);
872 bb
= find_buttonbar (h
);
873 widget_set_size (WIDGET (bb
), LINES
- 1, 0, 1, COLS
);
878 dlg_default_repaint (h
);
879 help_show (h
, currentpoint
);
883 return help_handle_key (h
, parm
);
886 /* Handle shortcuts and buttonbar. */
887 return help_execute_cmd (parm
);
890 return dlg_default_callback (w
, sender
, msg
, parm
, data
);
894 /* --------------------------------------------------------------------------------------------- */
897 interactive_display_finish (void)
902 /* --------------------------------------------------------------------------------------------- */
903 /** translate help file into terminal encoding */
906 translate_file (char *filedata
)
909 GString
*translated_data
;
911 /* initial allocation for largest whole help file */
912 translated_data
= g_string_sized_new (32 * 1024);
914 conv
= str_crt_conv_from ("UTF-8");
916 if (conv
== INVALID_CONV
)
917 g_string_free (translated_data
, TRUE
);
922 if (str_convert (conv
, filedata
, translated_data
) != ESTR_FAILURE
)
923 fdata
= g_string_free (translated_data
, FALSE
);
927 g_string_free (translated_data
, TRUE
);
929 str_close_conv (conv
);
933 /* --------------------------------------------------------------------------------------------- */
936 md_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
941 w
->lines
= help_lines
;
945 return widget_default_callback (w
, sender
, msg
, parm
, data
);
949 /* --------------------------------------------------------------------------------------------- */
952 help_mouse_callback (Widget
* w
, mouse_msg_t msg
, mouse_event_t
* event
)
955 GSList
*current_area
;
957 if (msg
!= MSG_MOUSE_CLICK
)
960 if ((event
->buttons
& GPM_B_RIGHT
) != 0)
962 /* Right button click */
967 /* Left bytton click */
969 /* The event is relative to the dialog window, adjust it: */
973 /* Test whether the mouse click is inside one of the link areas */
974 for (current_area
= link_area
; current_area
!= NULL
; current_area
= g_slist_next (current_area
))
976 Link_Area
*la
= (Link_Area
*) current_area
->data
;
978 /* Test one line link area */
979 if (y
== la
->y1
&& x
>= la
->x1
&& y
== la
->y2
&& x
<= la
->x2
)
982 /* Test two line link area */
983 if (la
->y1
+ 1 == la
->y2
)
985 /* The first line || The second line */
986 if ((y
== la
->y1
&& x
>= la
->x1
) || (y
== la
->y2
&& x
<= la
->x2
))
989 /* Mouse will not work with link areas of more than two lines */
992 /* Test whether a link area was found */
993 if (current_area
!= NULL
)
995 Link_Area
*la
= (Link_Area
*) current_area
->data
;
997 /* The click was inside a link area -> follow the link */
998 history_ptr
= (history_ptr
+ 1) % HISTORY_SIZE
;
999 history
[history_ptr
].page
= currentpoint
;
1000 history
[history_ptr
].link
= la
->link_name
;
1001 currentpoint
= help_follow_link (currentpoint
, la
->link_name
);
1002 selected_item
= NULL
;
1005 move_backward (help_lines
- 1);
1006 else if (y
>= help_lines
)
1007 move_forward (help_lines
- 1);
1008 else if (y
< help_lines
/ 2)
1013 /* Show the new node */
1014 send_message (w
->owner
, NULL
, MSG_DRAW
, 0, NULL
);
1017 /* --------------------------------------------------------------------------------------------- */
1020 mousedispatch_new (int y
, int x
, int yl
, int xl
)
1024 w
= g_new0 (Widget
, 1);
1025 widget_init (w
, y
, x
, yl
, xl
, md_callback
, help_mouse_callback
);
1026 w
->options
|= WOP_SELECTABLE
| WOP_WANT_CURSOR
;
1031 /* --------------------------------------------------------------------------------------------- */
1032 /*** public functions ****************************************************************************/
1033 /* --------------------------------------------------------------------------------------------- */
1035 /* event callback */
1037 help_interactive_display (const gchar
* event_group_name
, const gchar
* event_name
,
1038 gpointer init_data
, gpointer data
)
1040 const dlg_colors_t help_colors
= {
1041 HELP_NORMAL_COLOR
, /* common text color */
1042 0, /* unused in help */
1043 HELP_BOLD_COLOR
, /* bold text color */
1044 0, /* unused in help */
1045 HELP_TITLE_COLOR
/* title color */
1048 WButtonBar
*help_bar
;
1050 char *hlpfile
= NULL
;
1052 ev_help_t
*event_data
= (ev_help_t
*) data
;
1054 (void) event_group_name
;
1058 if (event_data
->filename
!= NULL
)
1059 g_file_get_contents (event_data
->filename
, &filedata
, NULL
, NULL
);
1061 filedata
= load_mc_home_file (mc_global
.share_data_dir
, MC_HELP
, &hlpfile
, NULL
);
1063 if (filedata
== NULL
)
1064 message (D_ERROR
, MSG_ERROR
, _("Cannot open file %s\n%s"),
1065 event_data
->filename
? event_data
->filename
: hlpfile
, unix_error_string (errno
));
1069 if (filedata
== NULL
)
1072 translate_file (filedata
);
1079 if ((event_data
->node
== NULL
) || (*event_data
->node
== '\0'))
1080 event_data
->node
= "[main]";
1082 main_node
= search_string (fdata
, event_data
->node
);
1084 if (main_node
== NULL
)
1086 message (D_ERROR
, MSG_ERROR
, _("Cannot find node %s in help file"), event_data
->node
);
1088 /* Fallback to [main], return if it also cannot be found */
1089 main_node
= search_string (fdata
, "[main]");
1090 if (main_node
== NULL
)
1092 interactive_display_finish ();
1097 help_lines
= MIN (LINES
- 4, MAX (2 * LINES
/ 3, 18));
1100 dlg_create (TRUE
, 0, 0, help_lines
+ 4, HELP_WINDOW_WIDTH
+ 4, WPOS_CENTER
| WPOS_TRYUP
,
1101 FALSE
, help_colors
, help_callback
, NULL
, "[Help]", _("Help"));
1102 widget_want_tab (WIDGET (whelp
), TRUE
);
1104 selected_item
= search_string_node (main_node
, STRING_LINK_START
) - 1;
1105 currentpoint
= main_node
+ 1; /* Skip the newline following the start of the node */
1107 for (history_ptr
= HISTORY_SIZE
; history_ptr
;)
1110 history
[history_ptr
].page
= currentpoint
;
1111 history
[history_ptr
].link
= selected_item
;
1114 help_bar
= buttonbar_new (TRUE
);
1115 WIDGET (help_bar
)->y
-= WIDGET (whelp
)->y
;
1116 WIDGET (help_bar
)->x
-= WIDGET (whelp
)->x
;
1118 md
= mousedispatch_new (1, 1, help_lines
, HELP_WINDOW_WIDTH
- 2);
1120 add_widget (whelp
, md
);
1121 add_widget (whelp
, help_bar
);
1123 buttonbar_set_label (help_bar
, 1, Q_ ("ButtonBar|Help"), help_map
, NULL
);
1124 buttonbar_set_label (help_bar
, 2, Q_ ("ButtonBar|Index"), help_map
, NULL
);
1125 buttonbar_set_label (help_bar
, 3, Q_ ("ButtonBar|Prev"), help_map
, NULL
);
1126 buttonbar_set_label (help_bar
, 4, "", help_map
, NULL
);
1127 buttonbar_set_label (help_bar
, 5, "", help_map
, NULL
);
1128 buttonbar_set_label (help_bar
, 6, "", help_map
, NULL
);
1129 buttonbar_set_label (help_bar
, 7, "", help_map
, NULL
);
1130 buttonbar_set_label (help_bar
, 8, "", help_map
, NULL
);
1131 buttonbar_set_label (help_bar
, 9, "", help_map
, NULL
);
1132 buttonbar_set_label (help_bar
, 10, Q_ ("ButtonBar|Quit"), help_map
, NULL
);
1135 interactive_display_finish ();
1136 dlg_destroy (whelp
);
1140 /* --------------------------------------------------------------------------------------------- */