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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/*
* small test-driver for new dialog functionality
*
* Copyright (c) 1995, Jordan Hubbard
*
* All rights reserved.
*
* This source code may be used, modified, copied, distributed, and
* sold, in both source and binary form provided that the above
* copyright and these terms are retained, verbatim, as the first
* lines of this file. Under no circumstances is the author
* responsible for the proper functioning of the software nor does
* the author assume any responsibility for damages incurred with
* its use.
*
* $Id$
*
*/
#include <sys/wait.h>
#include <dialog.h>
/* Hook functions */
static int
getBool(dialogMenuItem *self)
{
if (self->data && *((int *)self->data))
return TRUE;
return FALSE;
}
static int
setBool(dialogMenuItem *self)
{
if (self->data) {
*((int *)self->data) = !*((int *)self->data);
return DITEM_SUCCESS;
}
return DITEM_FAILURE;
}
static int german_book, italian_book, slang_book;
static int spending;
static int
check(dialogMenuItem *self)
{
return ((int)self->data == spending);
}
static int
spend(dialogMenuItem *self)
{
spending = (int)self->data;
return DITEM_SUCCESS | DITEM_REDRAW;
}
/* menu4 - Show off a simulated compound menu (group at top is checklist, group at bottom radio) */
/* prompt title checked fire sel, data lbra mark rbra */
static dialogMenuItem menu4[] = {
{ "German", "Buy books on learning German", getBool, setBool, NULL, &german_book },
{ "Italian","Buy books on learning Italian", getBool, setBool, NULL, &italian_book },
{ "Slang", "Buy books on commonly used insults", getBool, setBool, NULL, &slang_book },
{ "-----", "----------------------------------", NULL, NULL, NULL, NULL, ' ', ' ', ' ' },
{ "1000", "Spend $1,000", check, spend, NULL, (void *)1000, '(', '*', ')' },
{ "500", "Spend $500", check, spend, NULL, (void *)500, '(', '*', ')' },
{ "100", "Spend $100", check, spend, NULL, (void *)100, '(', '*', ')' },
};
/* End of hook functions */
/* Kick it off, James! */
int
main(int argc, unsigned char *argv[])
{
int retval;
init_dialog();
retval = dialog_checklist("this is dialog_checklist() in action, test #3",
"Now we show off some of the button 'styles' one can create.",
-1, -1, 7, -7, menu4, NULL);
dialog_clear();
fprintf(stderr, "spent $%d on %s%s%s books\n", spending, german_book ? " german" : "",
italian_book ? " italian" : "", slang_book ? " slang" : "");
end_dialog();
return 0;
}
|