summaryrefslogtreecommitdiffstats
path: root/contrib/dialog/help.c
blob: ea0fade3cd92f3b3be2e0c29f2341c8aaf05cb4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 *  $Id: help.c,v 1.3 2012/12/04 02:01:10 tom Exp $
 *
 *  help.c -- implements the help dialog
 *
 *  Copyright 2011,2012	Thomas E. Dickey
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License, version 2.1
 *  as published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful, but
 *  WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this program; if not, write to
 *	Free Software Foundation, Inc.
 *	51 Franklin St., Fifth Floor
 *	Boston, MA 02110, USA.
 */

#include <dialog.h>

/*
 * Display a help-file as a textbox widget.
 */
int
dialog_helpfile(const char *title,
		const char *file,
		int height,
		int width)
{
    int result = DLG_EXIT_ERROR;
    DIALOG_VARS save;

    if (!dialog_vars.in_helpfile && file != 0 && *file != '\0') {
	dlg_save_vars(&save);

	dialog_vars.no_label = NULL;
	dialog_vars.ok_label = NULL;
	dialog_vars.help_button = FALSE;
	dialog_vars.extra_button = FALSE;
	dialog_vars.nook = FALSE;

	dialog_vars.in_helpfile = TRUE;

	result = dialog_textbox(title, file, height, width);

	dlg_restore_vars(&save);
    }
    return (result);
}
OpenPOWER on IntegriCloud