opnsense-src/gnu/lib/libodialog/TESTS/ftree1.c
Nathan Whitehorn 4c8945a06b Update dialog to version 20100428. This changes the license under which
dialog is distributed from GPLv2 to LGPLv2 and introduces a number of new
features and a new and better libdialog API. The existing libdialog will
be kept temporarily as libodialog for compatibility purposes until sade,
sysinstall and tzsetup have been either updated or replaced.

__FreeBSD_version is now 900030.

Discussed on:	-current
Approved by:	core
Obtained from:	http://invisible-island.net/dialog
2011-01-12 14:55:02 +00:00

45 lines
722 B
C

/*
* ftree1.c
*
* small test-driver for new dialog functionality
*
* Copyright (c) 1998, Anatoly A. Orehovsky
*
* file ./ftree1.test with xterm widget tree from
* direct editres(1) dump needed !!!
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <stdio.h>
#include <stdlib.h>
#include <dialog.h>
int
main(int argc, char **argv)
{
int retval;
unsigned char *tresult;
init_dialog();
retval = dialog_ftree("ftree1.test", '\t',
"ftree dialog box example",
"xterm widget tree from direct editres(1) dump",
-1, -1, 15,
&tresult);
dialog_update();
dialog_clear();
end_dialog();
if (!retval)
{
puts(tresult);
free(tresult);
}
exit(retval);
}