]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - scripts/lxdialog/lxdialog.c
kconfig: truncate too long menu lines in menuconfig
[linux-2.6-omap-h63xx.git] / scripts / lxdialog / lxdialog.c
1 /*
2  *  dialog - Display simple dialog boxes from shell scripts
3  *
4  *  ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
5  *  MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcap@cfw.com)
6  *
7  *  This program is free software; you can redistribute it and/or
8  *  modify it under the terms of the GNU General Public License
9  *  as published by the Free Software Foundation; either version 2
10  *  of the License, or (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #include "dialog.h"
23
24 static void Usage(const char *name);
25
26 typedef int (jumperFn) (const char *title, int argc, const char *const *argv);
27
28 struct Mode {
29         char *name;
30         int argmin, argmax, argmod;
31         jumperFn *jumper;
32 };
33
34 jumperFn j_menu, j_checklist, j_radiolist, j_yesno, j_textbox, j_inputbox;
35 jumperFn j_msgbox, j_infobox;
36
37 static struct Mode modes[] = {
38         {"--menu", 9, 0, 3, j_menu},
39         {"--checklist", 9, 0, 3, j_checklist},
40         {"--radiolist", 9, 0, 3, j_radiolist},
41         {"--yesno", 5, 5, 1, j_yesno},
42         {"--textbox", 5, 5, 1, j_textbox},
43         {"--inputbox", 5, 6, 1, j_inputbox},
44         {"--msgbox", 5, 5, 1, j_msgbox},
45         {"--infobox", 5, 5, 1, j_infobox},
46         {NULL, 0, 0, 0, NULL}
47 };
48
49 static struct Mode *modePtr;
50
51 #ifdef LOCALE
52 #include <locale.h>
53 #endif
54
55 int main(int argc, const char *const *argv)
56 {
57         int offset = 0, opt_clear = 0, end_common_opts = 0, retval;
58         const char *title = NULL;
59
60 #ifdef LOCALE
61         (void)setlocale(LC_ALL, "");
62 #endif
63
64 #ifdef TRACE
65         trace(TRACE_CALLS | TRACE_UPDATE);
66 #endif
67         if (argc < 2) {
68                 Usage(argv[0]);
69                 exit(-1);
70         }
71
72         while (offset < argc - 1 && !end_common_opts) { /* Common options */
73                 if (!strcmp(argv[offset + 1], "--title")) {
74                         if (argc - offset < 3 || title != NULL) {
75                                 Usage(argv[0]);
76                                 exit(-1);
77                         } else {
78                                 title = argv[offset + 2];
79                                 offset += 2;
80                         }
81                 } else if (!strcmp(argv[offset + 1], "--backtitle")) {
82                         if (backtitle != NULL) {
83                                 Usage(argv[0]);
84                                 exit(-1);
85                         } else {
86                                 backtitle = argv[offset + 2];
87                                 offset += 2;
88                         }
89                 } else if (!strcmp(argv[offset + 1], "--clear")) {
90                         if (opt_clear) {        /* Hey, "--clear" can't appear twice! */
91                                 Usage(argv[0]);
92                                 exit(-1);
93                         } else if (argc == 2) { /* we only want to clear the screen */
94                                 init_dialog();
95                                 refresh();      /* init_dialog() will clear the screen for us */
96                                 end_dialog();
97                                 return 0;
98                         } else {
99                                 opt_clear = 1;
100                                 offset++;
101                         }
102                 } else          /* no more common options */
103                         end_common_opts = 1;
104         }
105
106         if (argc - 1 == offset) {       /* no more options */
107                 Usage(argv[0]);
108                 exit(-1);
109         }
110         /* use a table to look for the requested mode, to avoid code duplication */
111
112         for (modePtr = modes; modePtr->name; modePtr++) /* look for the mode */
113                 if (!strcmp(argv[offset + 1], modePtr->name))
114                         break;
115
116         if (!modePtr->name)
117                 Usage(argv[0]);
118         if (argc - offset < modePtr->argmin)
119                 Usage(argv[0]);
120         if (modePtr->argmax && argc - offset > modePtr->argmax)
121                 Usage(argv[0]);
122
123         init_dialog();
124         retval = (*(modePtr->jumper)) (title, argc - offset, argv + offset);
125
126         if (opt_clear) {        /* clear screen before exit */
127                 attr_clear(stdscr, LINES, COLS, screen_attr);
128                 refresh();
129         }
130         end_dialog();
131
132         exit(retval);
133 }
134
135 /*
136  * Print program usage
137  */
138 static void Usage(const char *name)
139 {
140         fprintf(stderr, "\
141 \ndialog, by Savio Lam (lam836@cs.cuhk.hk).\
142 \n  patched by Stuart Herbert (S.Herbert@shef.ac.uk)\
143 \n  modified/gutted for use as a Linux kernel config tool by \
144 \n  William Roadcap (roadcapw@cfw.com)\
145 \n\
146 \n* Display dialog boxes from shell scripts *\
147 \n\
148 \nUsage: %s --clear\
149 \n       %s [--title <title>] [--backtitle <backtitle>] --clear <Box options>\
150 \n\
151 \nBox options:\
152 \n\
153 \n  --menu      <text> <height> <width> <menu height> <tag1> <item1>...\
154 \n  --checklist <text> <height> <width> <list height> <tag1> <item1> <status1>...\
155 \n  --radiolist <text> <height> <width> <list height> <tag1> <item1> <status1>...\
156 \n  --textbox   <file> <height> <width>\
157 \n  --inputbox  <text> <height> <width> [<init>]\
158 \n  --yesno     <text> <height> <width>\
159 \n", name, name);
160         exit(-1);
161 }
162
163 /*
164  * These are the program jumpers
165  */
166
167 int j_menu(const char *t, int ac, const char *const *av)
168 {
169         return dialog_menu(t, av[2], atoi(av[3]), atoi(av[4]),
170                            atoi(av[5]), av[6], (ac - 6) / 2, av + 7);
171 }
172
173 int j_checklist(const char *t, int ac, const char *const *av)
174 {
175         return dialog_checklist(t, av[2], atoi(av[3]), atoi(av[4]),
176                                 atoi(av[5]), (ac - 6) / 3, av + 6, FLAG_CHECK);
177 }
178
179 int j_radiolist(const char *t, int ac, const char *const *av)
180 {
181         return dialog_checklist(t, av[2], atoi(av[3]), atoi(av[4]),
182                                 atoi(av[5]), (ac - 6) / 3, av + 6, FLAG_RADIO);
183 }
184
185 int j_textbox(const char *t, int ac, const char *const *av)
186 {
187         return dialog_textbox(t, av[2], atoi(av[3]), atoi(av[4]));
188 }
189
190 int j_yesno(const char *t, int ac, const char *const *av)
191 {
192         return dialog_yesno(t, av[2], atoi(av[3]), atoi(av[4]));
193 }
194
195 int j_inputbox(const char *t, int ac, const char *const *av)
196 {
197         int ret = dialog_inputbox(t, av[2], atoi(av[3]), atoi(av[4]),
198                                   ac == 6 ? av[5] : (char *)NULL);
199         if (ret == 0)
200                 fprintf(stderr, dialog_input_result);
201         return ret;
202 }
203
204 int j_msgbox(const char *t, int ac, const char *const *av)
205 {
206         return dialog_msgbox(t, av[2], atoi(av[3]), atoi(av[4]), 1);
207 }
208
209 int j_infobox(const char *t, int ac, const char *const *av)
210 {
211         return dialog_msgbox(t, av[2], atoi(av[3]), atoi(av[4]), 0);
212 }