Initial import from FreeBSD RELENG_4:
[games.git] / gnu / lib / libdialog / TESTS / menu1.c
1 /*
2  * small test-driver for new dialog functionality
3  *
4  * Copyright (c) 1995, Jordan Hubbard
5  *
6  * All rights reserved.
7  *
8  * This source code may be used, modified, copied, distributed, and
9  * sold, in both source and binary form provided that the above
10  * copyright and these terms are retained, verbatim, as the first
11  * lines of this file.  Under no circumstances is the author
12  * responsible for the proper functioning of the software nor does
13  * the author assume any responsibility for damages incurred with
14  * its use.
15  *
16  * $FreeBSD: src/gnu/lib/libdialog/TESTS/menu1.c,v 1.8 2000/01/10 11:52:06 phantom Exp $
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <unistd.h>
23 #include <sys/wait.h>
24 #include <dialog.h>
25
26 /* Start of hook functions */
27 static enum { nowhere, berlin, rome, ny } where;
28
29 static int
30 _menu1_berlin_action(dialogMenuItem *self)
31 {
32     if (where == berlin) {
33         dialog_mesgbox("excuse me?", "But you're already *in* Berlin!", -1, -1);
34     }
35     else {
36         where = berlin;
37         dialog_mesgbox("whoosh!", "Welcome to Berlin!  Have a beer!", -1, -1);
38     }
39     return DITEM_SUCCESS | DITEM_RESTORE | DITEM_CONTINUE;
40 }
41
42 static int
43 _menu1_rome_action(dialogMenuItem *self)
44 {
45     if (where == rome) {
46         dialog_mesgbox("The wine must be getting to you..", "You're already in Rome!", -1, -1);
47     }
48     else {
49         where = rome;
50         dialog_mesgbox("whoosh!", "Welcome to Rome!  Have a coffee!", -1, -1);
51     }
52     return DITEM_SUCCESS | DITEM_RESTORE | DITEM_CONTINUE;
53 }
54
55 static int
56 _menu1_ny_action(dialogMenuItem *self)
57 {
58     if (where == ny) {
59         dialog_mesgbox("Say what?", "You're already there!", -1, -1);
60     }
61     else {
62         where = ny;
63         dialog_mesgbox("whoosh!", "Welcome to New York!  Now go someplace else!", -1, -1);
64     }
65     return DITEM_SUCCESS | DITEM_RESTORE | DITEM_CONTINUE;
66 }
67
68 /* menu1 - show off the "fire" action hook */
69 /* prompt       title                                   checked         fire */
70 static dialogMenuItem menu1[] = {
71     { "Berlin", "Go visit Germany's new capitol",       NULL,   _menu1_berlin_action    },
72     { "Rome",   "Go visit the Roman ruins",             NULL,   _menu1_rome_action      },
73     { "New York",       "Go visit the streets of New York",     NULL,   _menu1_ny_action        },
74 };
75
76 /* End of hook functions */
77
78 /* Kick it off, James! */
79 int
80 main(int argc, char **argv)
81 {
82     int retval;
83     
84     init_dialog();
85     
86     retval = dialog_menu("this is dialog_menu() in action, test #1",
87                          "this simple menu shows off some of the straight-forward features\n"
88                          "of the new menu system's action dispatch hooks.  Select Cancel to leave",
89                          -1, -1, 3, -3, menu1, NULL, NULL, NULL);
90     dialog_clear();
91     fprintf(stderr, "returned value for dialog_menu was %d\n", retval);
92     
93     end_dialog();
94     return 0;
95 }