]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/dialog/treeview.c
Merge bmake-20230909
[FreeBSD/FreeBSD.git] / contrib / dialog / treeview.c
1 /*
2  *  $Id: treeview.c,v 1.43 2020/11/23 00:38:31 tom Exp $
3  *
4  *  treeview.c -- implements the treeview dialog
5  *
6  *  Copyright 2012-2019,2020    Thomas E. Dickey
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU Lesser General Public License, version 2.1
10  *  as published by the Free Software Foundation.
11  *
12  *  This program is distributed in the hope that it will be useful, but
13  *  WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *  Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public
18  *  License along with this program; if not, write to
19  *      Free Software Foundation, Inc.
20  *      51 Franklin St., Fifth Floor
21  *      Boston, MA 02110, USA.
22  */
23
24 #include <dlg_internals.h>
25 #include <dlg_keys.h>
26
27 #define INDENT 3
28 #define MIN_HIGH  (1 + (5 * MARGIN))
29
30 typedef struct {
31     /* the outer-window */
32     WINDOW *dialog;
33     bool is_check;
34     int box_y;
35     int box_x;
36     int check_x;
37     int item_x;
38     int use_height;
39     int use_width;
40     /* the inner-window */
41     WINDOW *list;
42     DIALOG_LISTITEM *items;
43     int item_no;
44     int *depths;
45     const char *states;
46 } ALL_DATA;
47
48 /*
49  * Print list item.  The 'selected' parameter is true if 'choice' is the
50  * current item.  That one is colored differently from the other items.
51  */
52 static void
53 print_item(ALL_DATA * data,
54            DIALOG_LISTITEM * item,
55            const char *states,
56            int depths,
57            int choice,
58            int selected)
59 {
60     WINDOW *win = data->list;
61     chtype save = dlg_get_attrs(win);
62     int i;
63     bool first = TRUE;
64     int climit = (getmaxx(win) - data->check_x + 1);
65     const char *show = (dialog_vars.no_items
66                         ? item->name
67                         : item->text);
68
69     /* Clear 'residue' of last item */
70     dlg_attrset(win, menubox_attr);
71     (void) wmove(win, choice, 0);
72     for (i = 0; i < data->use_width; i++)
73         (void) waddch(win, ' ');
74
75     (void) wmove(win, choice, data->check_x);
76     dlg_attrset(win, selected ? check_selected_attr : check_attr);
77     (void) wprintw(win,
78                    data->is_check ? "[%c]" : "(%c)",
79                    states[item->state]);
80     dlg_attrset(win, menubox_attr);
81
82     dlg_attrset(win, selected ? item_selected_attr : item_attr);
83     for (i = 0; i < depths; ++i) {
84         int j;
85         (void) wmove(win, choice, data->item_x + INDENT * i);
86         (void) waddch(win, ACS_VLINE);
87         for (j = INDENT - 1; j > 0; --j)
88             (void) waddch(win, ' ');
89     }
90     (void) wmove(win, choice, data->item_x + INDENT * depths);
91
92     dlg_print_listitem(win, show, climit, first, selected);
93
94     if (selected) {
95         dlg_item_help(item->help);
96     }
97     dlg_attrset(win, save);
98 }
99
100 static void
101 print_list(ALL_DATA * data,
102            int choice,
103            int scrollamt,
104            int max_choice)
105 {
106     int i;
107     int cur_y, cur_x;
108
109     getyx(data->dialog, cur_y, cur_x);
110
111     for (i = 0; i < max_choice; i++) {
112         print_item(data,
113                    &data->items[scrollamt + i],
114                    data->states,
115                    data->depths[scrollamt + i],
116                    i, i == choice);
117     }
118     (void) wnoutrefresh(data->list);
119
120     dlg_draw_scrollbar(data->dialog,
121                        (long) (scrollamt),
122                        (long) (scrollamt),
123                        (long) (scrollamt + max_choice),
124                        (long) (data->item_no),
125                        data->box_x + data->check_x,
126                        data->box_x + data->use_width,
127                        data->box_y,
128                        data->box_y + data->use_height + 1,
129                        menubox_border2_attr,
130                        menubox_border_attr);
131
132     (void) wmove(data->dialog, cur_y, cur_x);
133 }
134
135 static bool
136 check_hotkey(DIALOG_LISTITEM * items, int choice)
137 {
138     bool result = FALSE;
139
140     if (dlg_match_char(dlg_last_getc(),
141                        (dialog_vars.no_tags
142                         ? items[choice].text
143                         : items[choice].name))) {
144         result = TRUE;
145     }
146     return result;
147 }
148
149 /*
150  * This is an alternate interface to 'treeview' which allows the application
151  * to read the list item states back directly without putting them in the
152  * output buffer.
153  */
154 int
155 dlg_treeview(const char *title,
156              const char *cprompt,
157              int height,
158              int width,
159              int list_height,
160              int item_no,
161              DIALOG_LISTITEM * items,
162              const char *states,
163              int *depths,
164              int flag,
165              int *current_item)
166 {
167     /* *INDENT-OFF* */
168     static DLG_KEYS_BINDING binding[] = {
169         HELPKEY_BINDINGS,
170         ENTERKEY_BINDINGS,
171         DLG_KEYS_DATA( DLGK_FIELD_NEXT, KEY_RIGHT ),
172         DLG_KEYS_DATA( DLGK_FIELD_NEXT, TAB ),
173         DLG_KEYS_DATA( DLGK_FIELD_PREV, KEY_BTAB ),
174         DLG_KEYS_DATA( DLGK_FIELD_PREV, KEY_LEFT ),
175         DLG_KEYS_DATA( DLGK_ITEM_FIRST, KEY_HOME ),
176         DLG_KEYS_DATA( DLGK_ITEM_LAST,  KEY_END ),
177         DLG_KEYS_DATA( DLGK_ITEM_LAST,  KEY_LL ),
178         DLG_KEYS_DATA( DLGK_ITEM_NEXT,  '+' ),
179         DLG_KEYS_DATA( DLGK_ITEM_NEXT,  KEY_DOWN ),
180         DLG_KEYS_DATA( DLGK_ITEM_NEXT,  CHR_NEXT ),
181         DLG_KEYS_DATA( DLGK_ITEM_PREV,  '-' ),
182         DLG_KEYS_DATA( DLGK_ITEM_PREV,  KEY_UP ),
183         DLG_KEYS_DATA( DLGK_ITEM_PREV,  CHR_PREVIOUS ),
184         DLG_KEYS_DATA( DLGK_PAGE_NEXT,  KEY_NPAGE ),
185         DLG_KEYS_DATA( DLGK_PAGE_NEXT,  DLGK_MOUSE(KEY_NPAGE) ),
186         DLG_KEYS_DATA( DLGK_PAGE_PREV,  KEY_PPAGE ),
187         DLG_KEYS_DATA( DLGK_PAGE_PREV,  DLGK_MOUSE(KEY_PPAGE) ),
188         TOGGLEKEY_BINDINGS,
189         END_KEYS_BINDING
190     };
191     /* *INDENT-ON* */
192
193 #ifdef KEY_RESIZE
194     int old_height = height;
195     int old_width = width;
196 #endif
197     ALL_DATA all;
198     int i, j, key2, found, x, y, cur_y, box_x, box_y;
199     int key, fkey;
200     int button = dialog_state.visit_items ? -1 : dlg_default_button();
201     int choice = dlg_default_listitem(items);
202     int scrollamt = 0;
203     int max_choice;
204     int use_height;
205     int use_width, name_width, text_width, tree_width;
206     int result = DLG_EXIT_UNKNOWN;
207     int num_states;
208     WINDOW *dialog, *list;
209     char *prompt = dlg_strclone(cprompt);
210     const char **buttons = dlg_ok_labels();
211     const char *widget_name;
212
213     /* we need at least two states */
214     if (states == 0 || strlen(states) < 2)
215         states = " *";
216     num_states = (int) strlen(states);
217
218     dialog_state.plain_buttons = TRUE;
219
220     memset(&all, 0, sizeof(all));
221     all.items = items;
222     all.item_no = item_no;
223     all.states = states;
224     all.depths = depths;
225
226     dlg_does_output();
227     dlg_tab_correct_str(prompt);
228
229     /*
230      * If this is a radiobutton list, ensure that no more than one item is
231      * selected initially.  Allow none to be selected, since some users may
232      * wish to provide this flavor.
233      */
234     if (flag == FLAG_RADIO) {
235         bool first = TRUE;
236
237         for (i = 0; i < item_no; i++) {
238             if (items[i].state) {
239                 if (first) {
240                     first = FALSE;
241                 } else {
242                     items[i].state = 0;
243                 }
244             }
245         }
246     } else {
247         all.is_check = TRUE;
248     }
249     widget_name = "treeview";
250 #ifdef KEY_RESIZE
251   retry:
252 #endif
253
254     use_height = list_height;
255     use_width = dlg_calc_list_width(item_no, items) + 10;
256     use_width = MAX(26, use_width);
257     if (use_height == 0) {
258         /* calculate height without items (4) */
259         dlg_auto_size(title, prompt, &height, &width, MIN_HIGH, use_width);
260         dlg_calc_listh(&height, &use_height, item_no);
261     } else {
262         dlg_auto_size(title, prompt, &height, &width, MIN_HIGH + use_height, use_width);
263     }
264     dlg_button_layout(buttons, &width);
265     dlg_print_size(height, width);
266     dlg_ctl_size(height, width);
267
268     x = dlg_box_x_ordinate(width);
269     y = dlg_box_y_ordinate(height);
270
271     dialog = dlg_new_window(height, width, y, x);
272     dlg_register_window(dialog, widget_name, binding);
273     dlg_register_buttons(dialog, widget_name, buttons);
274
275     dlg_mouse_setbase(x, y);
276
277     dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
278     dlg_draw_bottom_box2(dialog, border_attr, border2_attr, dialog_attr);
279     dlg_draw_title(dialog, title);
280
281     dlg_attrset(dialog, dialog_attr);
282     dlg_print_autowrap(dialog, prompt, height, width);
283
284     all.use_width = width - 4;
285     cur_y = getcury(dialog);
286     box_y = cur_y + 1;
287     box_x = (width - all.use_width) / 2 - 1;
288
289     /*
290      * After displaying the prompt, we know how much space we really have.
291      * Limit the list to avoid overwriting the ok-button.
292      */
293     use_height = height - MIN_HIGH - cur_y;
294     if (use_height <= 0)
295         use_height = 1;
296
297     max_choice = MIN(use_height, item_no);
298
299     /* create new window for the list */
300     list = dlg_sub_window(dialog, use_height, all.use_width,
301                           y + box_y + 1, x + box_x + 1);
302
303     /* draw a box around the list items */
304     dlg_draw_box(dialog, box_y, box_x,
305                  use_height + 2 * MARGIN,
306                  all.use_width + 2 * MARGIN,
307                  menubox_border_attr, menubox_border2_attr);
308
309     text_width = 0;
310     name_width = 0;
311     tree_width = 0;
312     /* Find length of longest item to center treeview */
313     for (i = 0; i < item_no; i++) {
314         tree_width = MAX(tree_width, INDENT * depths[i]);
315         text_width = MAX(text_width, dlg_count_columns(items[i].text));
316         name_width = MAX(name_width, dlg_count_columns(items[i].name));
317     }
318     if (dialog_vars.no_tags && !dialog_vars.no_items) {
319         tree_width += text_width;
320     } else if (dialog_vars.no_items) {
321         tree_width += name_width;
322     } else {
323         tree_width += (text_width + name_width);
324     }
325
326     use_width = (all.use_width - 4);
327     tree_width = MIN(tree_width, all.use_width);
328
329     all.check_x = (use_width - tree_width) / 2;
330     all.item_x = ((dialog_vars.no_tags
331                    ? 0
332                    : (dialog_vars.no_items
333                       ? 0
334                       : (2 + name_width)))
335                   + all.check_x + 4);
336
337     /* ensure we are scrolled to show the current choice */
338     if (choice >= (max_choice + scrollamt)) {
339         scrollamt = choice - max_choice + 1;
340         choice = max_choice - 1;
341     }
342
343     /* register the new window, along with its borders */
344     dlg_mouse_mkbigregion(box_y + 1, box_x,
345                           use_height, all.use_width + 2,
346                           KEY_MAX, 1, 1, 1 /* by lines */ );
347
348     all.dialog = dialog;
349     all.box_x = box_x;
350     all.box_y = box_y;
351     all.use_height = use_height;
352     all.list = list;
353     print_list(&all, choice, scrollamt, max_choice);
354
355     dlg_draw_buttons(dialog, height - 2, 0, buttons, button, FALSE, width);
356
357     dlg_trace_win(dialog);
358
359     while (result == DLG_EXIT_UNKNOWN) {
360         int was_mouse;
361
362         if (button < 0)         /* --visit-items */
363             wmove(dialog, box_y + choice + 1, box_x + all.check_x + 2);
364
365         key = dlg_mouse_wgetch(dialog, &fkey);
366         if (dlg_result_key(key, fkey, &result)) {
367             if (!dlg_button_key(result, &button, &key, &fkey))
368                 break;
369         }
370
371         was_mouse = (fkey && is_DLGK_MOUSE(key));
372         if (was_mouse)
373             key -= M_EVENT;
374
375         if (was_mouse && (key >= KEY_MAX)) {
376             i = (key - KEY_MAX);
377             if (i < max_choice) {
378                 choice = (key - KEY_MAX);
379                 print_list(&all, choice, scrollamt, max_choice);
380
381                 key = DLGK_TOGGLE;      /* force the selected item to toggle */
382             } else {
383                 beep();
384                 continue;
385             }
386             fkey = FALSE;
387         } else if (was_mouse && key >= KEY_MIN) {
388             key = dlg_lookup_key(dialog, key, &fkey);
389         }
390
391         /*
392          * A space toggles the item status.
393          */
394         if (key == DLGK_TOGGLE) {
395             int current = scrollamt + choice;
396             int next = items[current].state + 1;
397
398             if (next >= num_states)
399                 next = 0;
400
401             if (flag == FLAG_CHECK) {   /* checklist? */
402                 items[current].state = next;
403             } else {
404                 for (i = 0; i < item_no; i++) {
405                     if (i != current) {
406                         items[i].state = 0;
407                     }
408                 }
409                 if (items[current].state) {
410                     items[current].state = next ? next : 1;
411                 } else {
412                     items[current].state = 1;
413                 }
414             }
415             print_list(&all, choice, scrollamt, max_choice);
416             continue;           /* wait for another key press */
417         }
418
419         /*
420          * Check if key pressed matches first character of any item tag in
421          * list.  If there is more than one match, we will cycle through
422          * each one as the same key is pressed repeatedly.
423          */
424         found = FALSE;
425         if (!fkey) {
426             if (button < 0 || !dialog_state.visit_items) {
427                 for (j = scrollamt + choice + 1; j < item_no; j++) {
428                     if (check_hotkey(items, j)) {
429                         found = TRUE;
430                         i = j - scrollamt;
431                         break;
432                     }
433                 }
434                 if (!found) {
435                     for (j = 0; j <= scrollamt + choice; j++) {
436                         if (check_hotkey(items, j)) {
437                             found = TRUE;
438                             i = j - scrollamt;
439                             break;
440                         }
441                     }
442                 }
443                 if (found)
444                     dlg_flush_getc();
445             } else if ((j = dlg_char_to_button(key, buttons)) >= 0) {
446                 button = j;
447                 ungetch('\n');
448                 continue;
449             }
450         }
451
452         /*
453          * A single digit (1-9) positions the selection to that line in the
454          * current screen.
455          */
456         if (!found
457             && (key <= '9')
458             && (key > '0')
459             && (key - '1' < max_choice)) {
460             found = TRUE;
461             i = key - '1';
462         }
463
464         if (!found) {
465             if (fkey) {
466                 found = TRUE;
467                 switch (key) {
468                 case DLGK_ITEM_FIRST:
469                     i = -scrollamt;
470                     break;
471                 case DLGK_ITEM_LAST:
472                     i = item_no - 1 - scrollamt;
473                     break;
474                 case DLGK_PAGE_PREV:
475                     if (choice)
476                         i = 0;
477                     else if (scrollamt != 0)
478                         i = -MIN(scrollamt, max_choice);
479                     else
480                         continue;
481                     break;
482                 case DLGK_PAGE_NEXT:
483                     i = MIN(choice + max_choice, item_no - scrollamt - 1);
484                     break;
485                 case DLGK_ITEM_PREV:
486                     i = choice - 1;
487                     if (choice == 0 && scrollamt == 0)
488                         continue;
489                     break;
490                 case DLGK_ITEM_NEXT:
491                     i = choice + 1;
492                     if (scrollamt + choice >= item_no - 1)
493                         continue;
494                     break;
495                 default:
496                     found = FALSE;
497                     break;
498                 }
499             }
500         }
501
502         if (found) {
503             if (i != choice) {
504                 if (i < 0 || i >= max_choice) {
505                     if (i < 0) {
506                         scrollamt += i;
507                         choice = 0;
508                     } else {
509                         choice = max_choice - 1;
510                         scrollamt += (i - max_choice + 1);
511                     }
512                     print_list(&all, choice, scrollamt, max_choice);
513                 } else {
514                     choice = i;
515                     print_list(&all, choice, scrollamt, max_choice);
516                 }
517             }
518             continue;           /* wait for another key press */
519         }
520
521         if (fkey) {
522             switch (key) {
523             case DLGK_ENTER:
524                 result = dlg_enter_buttoncode(button);
525                 break;
526             case DLGK_LEAVE:
527                 result = dlg_ok_buttoncode(button);
528                 break;
529             case DLGK_FIELD_PREV:
530                 button = dlg_prev_button(buttons, button);
531                 dlg_draw_buttons(dialog, height - 2, 0, buttons, button,
532                                  FALSE, width);
533                 break;
534             case DLGK_FIELD_NEXT:
535                 button = dlg_next_button(buttons, button);
536                 dlg_draw_buttons(dialog, height - 2, 0, buttons, button,
537                                  FALSE, width);
538                 break;
539 #ifdef KEY_RESIZE
540             case KEY_RESIZE:
541                 dlg_will_resize(dialog);
542                 /* reset data */
543                 height = old_height;
544                 width = old_width;
545                 /* repaint */
546                 _dlg_resize_cleanup(dialog);
547                 goto retry;
548 #endif
549             default:
550                 if (was_mouse) {
551                     if ((key2 = dlg_ok_buttoncode(key)) >= 0) {
552                         result = key2;
553                         break;
554                     }
555                     beep();
556                 }
557             }
558         } else if (key > 0) {
559             beep();
560         }
561     }
562
563     dlg_del_window(dialog);
564     dlg_mouse_free_regions();
565     free(prompt);
566     *current_item = (scrollamt + choice);
567     return result;
568 }
569
570 /*
571  * Display a set of items as a tree.
572  */
573 int
574 dialog_treeview(const char *title,
575                 const char *cprompt,
576                 int height,
577                 int width,
578                 int list_height,
579                 int item_no,
580                 char **items,
581                 int flag)
582 {
583     int result;
584     int i, j;
585     DIALOG_LISTITEM *listitems;
586     int *depths;
587     bool show_status = FALSE;
588     int current = 0;
589     char *help_result;
590
591     DLG_TRACE(("# treeview args:\n"));
592     DLG_TRACE2S("title", title);
593     DLG_TRACE2S("message", cprompt);
594     DLG_TRACE2N("height", height);
595     DLG_TRACE2N("width", width);
596     DLG_TRACE2N("lheight", list_height);
597     DLG_TRACE2N("llength", item_no);
598     /* FIXME dump the items[][] too */
599     DLG_TRACE2N("flag", flag);
600
601     listitems = dlg_calloc(DIALOG_LISTITEM, (size_t) item_no + 1);
602     assert_ptr(listitems, "dialog_treeview");
603
604     depths = dlg_calloc(int, (size_t) item_no + 1);
605     assert_ptr(depths, "dialog_treeview");
606
607     for (i = j = 0; i < item_no; ++i) {
608         listitems[i].name = items[j++];
609         listitems[i].text = (dialog_vars.no_items
610                              ? dlg_strempty()
611                              : items[j++]);
612         listitems[i].state = !dlg_strcmp(items[j++], "on");
613         depths[i] = atoi(items[j++]);
614         listitems[i].help = ((dialog_vars.item_help)
615                              ? items[j++]
616                              : dlg_strempty());
617     }
618     dlg_align_columns(&listitems[0].text, (int) sizeof(DIALOG_LISTITEM), item_no);
619
620     result = dlg_treeview(title,
621                           cprompt,
622                           height,
623                           width,
624                           list_height,
625                           item_no,
626                           listitems,
627                           NULL,
628                           depths,
629                           flag,
630                           &current);
631
632     switch (result) {
633     case DLG_EXIT_OK:           /* FALLTHRU */
634     case DLG_EXIT_EXTRA:
635         show_status = TRUE;
636         break;
637     case DLG_EXIT_HELP:
638         dlg_add_help_listitem(&result, &help_result, &listitems[current]);
639         if ((show_status = dialog_vars.help_status)) {
640             if (dialog_vars.separate_output) {
641                 dlg_add_string(help_result);
642                 dlg_add_separator();
643             } else {
644                 dlg_add_quoted(help_result);
645             }
646         } else {
647             dlg_add_string(help_result);
648         }
649         break;
650     }
651
652     if (show_status) {
653         for (i = 0; i < item_no; i++) {
654             if (listitems[i].state) {
655                 if (dlg_need_separator())
656                     dlg_add_separator();
657                 if (dialog_vars.separate_output) {
658                     dlg_add_string(listitems[i].name);
659                 } else {
660                     if (flag == FLAG_CHECK)
661                         dlg_add_quoted(listitems[i].name);
662                     else
663                         dlg_add_string(listitems[i].name);
664                 }
665             }
666         }
667         AddLastKey();
668     }
669
670     dlg_free_columns(&listitems[0].text, (int) sizeof(DIALOG_LISTITEM), item_no);
671     free(depths);
672     free(listitems);
673     return result;
674 }