Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / gnu / lib / libdialog / TESTS / menu2.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/menu2.c,v 1.8 2000/01/10 11:52:07 phantom Exp $
17  * $DragonFly: src/gnu/lib/libdialog/TESTS/menu2.c,v 1.2 2003/06/17 04:25:44 dillon Exp $
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <unistd.h>
24 #include <sys/wait.h>
25 #include <dialog.h>
26
27 /* Start of hook functions */
28 static enum { nowhere, berlin, rome, ny } where;
29
30 static int
31 _menu1_berlin_action(dialogMenuItem *self)
32 {
33     if (where == berlin)
34         dialog_mesgbox("excuse me?", "But you're already *in* Berlin!", -1, -1);
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     else {
48         where = rome;
49         dialog_mesgbox("whoosh!", "Welcome to Rome!  Have a coffee!", -1, -1);
50     }
51     return DITEM_SUCCESS | DITEM_RESTORE | DITEM_CONTINUE;
52 }
53
54 static int
55 _menu1_ny_action(dialogMenuItem *self)
56 {
57     if (where == ny)
58         dialog_mesgbox("Say what?", "You're already there!", -1, -1);
59     else {
60         where = ny;
61         dialog_mesgbox("whoosh!", "Welcome to New York!  Now go someplace else!", -1, -1);
62     }
63     return DITEM_SUCCESS | DITEM_RESTORE | DITEM_CONTINUE;
64 }
65
66 /* menu1 - show off the "fire" action hook */
67 /* prompt       title                                   checked         fire */
68 static dialogMenuItem menu1[] = {
69     { "Berlin", "Go visit Germany's new capitol",       NULL,   _menu1_berlin_action    },
70     { "Rome",   "Go visit the Roman ruins",             NULL,   _menu1_rome_action      },
71     { "New York",       "Go visit the streets of New York",     NULL,   _menu1_ny_action        },
72 };
73
74 /* End of hook functions */
75
76 /* Kick it off, James! */
77 int
78 main(int argc, char **argv)
79 {
80     int retval;
81     
82     init_dialog();
83     
84     use_helpfile("menu2.c");
85     use_helpline("Type F1 to view the source for this demo");
86     retval = dialog_menu("this is dialog_menu() in action, test #2",
87                          "this simple menu shows off some of the straight-forward features\n"
88                          "of the new menu system's action dispatch hooks as well as a helpline\n"
89                          "and a helpfile.  Select Cancel to leave",
90                          -1, -1, 3, -3, menu1, NULL, NULL, NULL);
91     dialog_clear();
92     fprintf(stderr, "returned value for dialog_menu was %d\n", retval);
93     
94     end_dialog();
95     return 0;
96 }