| /freebsd-src/contrib/dialog/samples/ |
| H A D | wheel | 27 --begin "`scaley 27`" "`scalex 98`" --infobox "pushd /var/log >/dev/null" 0 0 --and-widget \ 28 --begin "`scaley 35`" "`scalex 95`" --infobox "mkdir -p news -m 755" 0 0 --and-widget \ 29 --begin "`scaley 45`" "`scalex 86`" --infobox "chown news.news news" 0 0 --and-widget \ 30 --begin "`scaley 48`" "`scalex 78`" --infobox "cd /var/log/news" 0 0 --and-widget \ 31 --begin "`scaley 51`" "`scalex 61`" --infobox "mkdir -p OLD -m 755" 0 0 --and-widget \ 32 --begin "`scaley 52`" "`scalex 47`" --infobox "chown news.news OLD" 0 0 --and-widget \ 33 --begin "`scaley 51`" "`scalex 40`" --infobox "cd /var/spool" 0 0 --and-widget \ 34 --begin "`scaley 48`" "`scalex 25`" --infobox "mkdir -p news -m 775" 0 0 --and-widget \ 35 --begin "`scaley 42`" "`scalex 13`" --infobox "chown news.news news" 0 0 --and-widget \ 36 --begin "`scaley 35`" "`scalex 4`" --infobox "cd /var/spool/news" 0 0 --and-widget \ [all …]
|
| H A D | tailboxbg1 | 13 --and-widget \ 15 --and-widget \ 19 # The --and-widget causes a tab to be emitted, but our example will only
|
| H A D | tailboxbg2 | 14 --and-widget \ 16 --and-widget \ 20 # The --and-widget causes a tab to be emitted, but our example will only
|
| H A D | inputbox7 | 3 # An example which produces two widget outputs. 21 returntext=`$DIALOG --title "INPUT BOX" --clear --separate-widget "$SEP" "$@" \
|
| /freebsd-src/contrib/dialog/ |
| H A D | dialog.1 | 108 Use the "\fB\-\-and\-widget\fP" token to force \fB\*p\fP to proceed to the next 136 When a common (e.g., non-widget) option is repeated, 166 which can be used to automatically size the widget to accommodate 173 \fB\*l\fP uses minimum size for the widget to display the \fIprompt\fP 176 Otherwise, \fB\*l\fP uses the given size for the widget. 179 Most of the common options are reset before processing each widget. 204 Clears the widget screen, keeping only the screen_color background. 206 with \*(``\fB\-\-and\-widget\fR\*('' to erase the 207 contents of a previous widget on the screen, so it won't be seen 208 under the contents of a following widget. [all …]
|
| H A D | dialog.3 | 111 to the widget functions. 166 The \fBgauge\fP widget uses this feature. 170 for input, e.g., to handle the background tailbox widget. 200 which is called by each widget that writes text to the output. 204 between calls to each widget. 208 \fBgauge\fP widget, which must be the application's standard input. 250 This corresponds to the command-line option "\fB\-\-separate\-widget\fP". 253 each widget. 323 accepting options to invoke each widget. 347 If true, beep after a user has completed a widget [all …]
|
| H A D | CHANGES | 49 widget. 71 + amend initialization for dlg_getc to fix regression in pause widget 103 + fix repainting while resizing for the editbox widget. 195 + fix a memory leak in gauge widget (Andrew Kosteltsev). 226 + add traces for each widget to show its parameters. 229 + fix a too-small malloc in the mixedgauge widget. 243 adjust the widget size according to how the captions are formatted. 299 + modify buildlist widget to support option "--reorder" for to allow 380 + modify editbox widget to add a trailing newline if the text has none 385 + correct mapping of mouse-clicks on the day-grid in calendar widget [all …]
|
| H A D | dlg_keys.c | 35 WINDOW *win; /* window on which widget gets input */ 36 const char *name; /* widget name */ 46 * For a given named widget's window, associate a binding table. 74 * longer. Since compiled-in bindings are only visible when the widget is in dlg_register_window() 86 * Unlike dlg_lookup_key(), this looks for either widget-builtin or rc-file 110 * labels associated with the widget. 140 /* if it is not bound in the widget, skip it (no conflicts) */ in dlg_register_buttons() 162 /* put these at the beginning, to override the widget's table */ in dlg_register_buttons() 202 * If there is no binding associated with the widget, it simply returns 269 * buttons on the widget such as "OK". [all …]
|
| H A D | README | 11 like as Resolution-independence, Auto-sizing, Maximizing, more widget 12 on the same screen (multi-widget), etc. were added. New widget are 16 { --and-widget <Common options> <Box options> } 25 Global options: [--shadow] [--no-shadow] [--separate-widget "<str>"] 51 but it was made before of multi-widget. However this is not a big problem!
|
| H A D | textbox.c | 521 WINDOW *widget; in get_search_term() local 533 widget = dlg_new_modal_window(dialog, in get_search_term() 536 keypad(widget, TRUE); in get_search_term() 537 dlg_register_window(widget, "searchbox", binding); in get_search_term() 539 dlg_draw_box2(widget, 0, 0, box_height, box_width, in get_search_term() 543 dlg_attrset(widget, searchbox_title_attr); in get_search_term() 544 (void) wmove(widget, 0, (box_width - len_caption) / 2); in get_search_term() 548 (void) waddnstr(widget, caption + indx[0], indx[limit] - indx[0]); in get_search_term() 555 key = dlg_getc(widget, &fkey); in get_search_term() 576 dlg_show_string(widget, input, offset, searchbox_attr, in get_search_term() [all …]
|
| /freebsd-src/contrib/bsddialog/lib/ |
| H A D | textbox.c | 62 mvwvline(d->widget, (d->h / 2) - 2, 0, arrowch, 4); in updateborders() 64 wattron(d->widget, t.dialog.lineraisecolor); in updateborders() 65 mvwvline_set(d->widget, (d->h / 2) - 2, 0, &borderch, 4); in updateborders() 66 wattroff(d->widget, t.dialog.lineraisecolor); in updateborders() 71 mvwvline(d->widget, (d->h / 2) - 2, d->w - 1, arrowch, 4); in updateborders() 73 wattron(d->widget, t.dialog.linelowercolor); in updateborders() 74 mvwvline_set(d->widget, (d->h / 2) - 2, d->w - 1, &borderch, 4); in updateborders() 75 wattroff(d->widget, t.dialog.linelowercolor); in updateborders() 79 wattron(d->widget, t.dialog.arrowcolor); in updateborders() 80 mvwprintw(d->widget, d->h - 3, d->w - 6, in updateborders() [all …]
|
| H A D | lib_util.c | 80 * -5- (Dialog) Widget components and utils 290 draw_button(d->widget, y, startx + x, d->bs.sizebutton, in draw_buttons() 744 /* specific widget lines without text */ in widget_min_height() 774 /* specific widget min width */ in widget_min_width() 812 /* rows == AUTOSIZE: each widget has to set its size */ in set_widget_size() 823 /* cols == AUTOSIZE: each widget has to set its size */ in set_widget_size() 937 * -5- Widget components and utilities 944 RETURN_ERROR("Cannot hide the widget"); in hide_dialog() 1055 delwin(d->widget); in end_dialog() 1275 wclear(d->widget); in draw_dialog() [all …]
|
| H A D | lib_util.h | 68 /* widget utils */ 80 wnoutrefresh(d.widget); \ 101 WINDOW *widget; /* Size and position refer to widget */ member 129 /* widget utils */
|
| H A D | barbox.c | 286 b.win = d.widget; in do_mixedgauge() 295 wattron(d.widget, A_BOLD); in do_mixedgauge() 296 mvwaddcstr(d.widget, i+1, 2, CHECK_STR(minilabels[i]), d.w-20); in do_mixedgauge() 298 wattroff(d.widget, A_BOLD); in do_mixedgauge() 302 mvwaddstr(d.widget, i+1, d.w-2-15, "[ ]"); in do_mixedgauge() 315 wattron(d.widget, minicolor); in do_mixedgauge() 317 mvwaddstr(d.widget, i+1, 1+d.w-2-15, states[miniperc]); in do_mixedgauge() 318 wattroff(d.widget, minicolor); in do_mixedgauge() 321 wnoutrefresh(d.widget); in do_mixedgauge()
|
| H A D | messagebox.c | 44 wattron(d->widget, t.dialog.arrowcolor); in textupdate() 45 mvwprintw(d->widget, d->h - HBUTTONS - BORDER, in textupdate() 48 wattroff(d->widget, t.dialog.arrowcolor); in textupdate() 49 wnoutrefresh(d->widget); in textupdate()
|
| /freebsd-src/sys/contrib/device-tree/Bindings/sound/ |
| H A D | amlogic,gx-sound-card.yaml | 27 A list off component DAPM widget. Each entry is a pair of strings, 28 the first being the widget type, the second being the widget name
|
| H A D | widgets.txt | 9 The "template-wname" being the template widget name and currently includes: 12 The "user-supplied-wname" being the user specified widget name.
|
| H A D | audio-graph.yaml | 33 widget ("Microphone", "Line", "Headphone", "Speaker"), the 34 second being the machine specific name for the widget.
|
| H A D | amlogic,axg-sound-card.yaml | 26 A list off component DAPM widget. Each entry is a pair of strings, 27 the first being the widget type, the second being the widget name
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | AbstractBasicReader.h | 70 // auto &&widget = W.find("widget").readObject(); 71 // auto kind = widget.find("kind").readWidgetKind(); 72 // auto declaration = widget.find("declaration").readDeclRef(); 73 // return Widget(kind, declaration);
|
| H A D | AbstractBasicWriter.h | 70 // auto &&widget = W.find("widget").writeObject(); 71 // widget.find("kind").writeWidgetKind(...); 72 // widget.find("declaration").writeDeclRef(...);
|
| /freebsd-src/sys/dev/sound/pci/hda/ |
| H A D | hdaa.h | 77 /* Widget in playback receiving signal from recording. */ 79 /* Input mixer widget needs volume control as destination. */ 137 struct hdaa_widget *widget, *childwidget; member 208 struct hdaa_widget *widget; member
|
| /freebsd-src/lib/libdpv/ |
| H A D | dpv.3 | 74 char *title; /* Widget title */ 75 char *backtitle; /* Widget backtitle */ 148 argument will bump the width of the gauge widget. 490 widget in
|
| /freebsd-src/usr.sbin/bsdconfig/share/ |
| H A D | dialog.subr | 301 # Get the maximum height and width for a dialog widget and store the values in 331 # will render --backtitle behind the widget. In such a case, we 332 # should prevent a widget from obscuring the backtitle (unless 583 # width for the described widget (not exceeding the actual terminal height or 683 # width for the described widget (not exceeding the actual terminal height or 744 # width for the described widget (not exceeding the actual terminal height or 810 # optimal height and width for the described widget (not exceeding the actual 888 # optimal height, width, and rows for the described widget (not exceeding the 981 # optimal height, width, and rows for the described widget (not exceeding the 1012 # if using Xdialog(1), as it places the help string in the widget) -- [all …]
|
| /freebsd-src/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangSyntaxEmitter.cpp | 169 // This is a widget. Example: 170 // widget.explode() 173 // /// This is a widget. Example: 174 // /// widget.explode()
|