Manual pages: mcmcdiffmceditmcview

root/lib/widget/wtools.c

/* [previous][next][first][last][top][bottom][index][help]  */

DEFINITIONS

This source file includes following definitions.
  1. query_default_callback
  2. bg_message
  3. fg_input_dialog_help
  4. wtools_parent_call
  5. wtools_parent_call_string
  6. query_dialog
  7. query_set_sel
  8. create_message
  9. message
  10. mc_error_message
  11. input_dialog_help
  12. input_dialog
  13. input_expand_dialog
  14. status_msg_create
  15. status_msg_destroy
  16. status_msg_init
  17. status_msg_deinit
  18. status_msg_common_update
  19. simple_status_msg_init_cb

   1 /*
   2    Widget based utility functions.
   3 
   4    Copyright (C) 1994-2025
   5    Free Software Foundation, Inc.
   6 
   7    Authors:
   8    Miguel de Icaza, 1994, 1995, 1996
   9    Radek Doulik, 1994, 1995
  10    Jakub Jelinek, 1995
  11    Andrej Borsenkow, 1995
  12    Andrew Borodin <aborodin@vmail.ru>, 2009-2022
  13 
  14    This file is part of the Midnight Commander.
  15 
  16    The Midnight Commander is free software: you can redistribute it
  17    and/or modify it under the terms of the GNU General Public License as
  18    published by the Free Software Foundation, either version 3 of the License,
  19    or (at your option) any later version.
  20 
  21    The Midnight Commander is distributed in the hope that it will be useful,
  22    but WITHOUT ANY WARRANTY; without even the implied warranty of
  23    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24    GNU General Public License for more details.
  25 
  26    You should have received a copy of the GNU General Public License
  27    along with this program.  If not, see <https://www.gnu.org/licenses/>.
  28  */
  29 
  30 /** \file wtools.c
  31  *  \brief Source: widget based utility functions
  32  */
  33 
  34 #include <config.h>
  35 
  36 #include <stdarg.h>
  37 #include <stdlib.h>
  38 
  39 #include "lib/global.h"
  40 #include "lib/tty/tty.h"
  41 #include "lib/tty/key.h"  // tty_getch()
  42 #include "lib/strutil.h"
  43 #include "lib/util.h"  // tilde_expand()
  44 #include "lib/widget.h"
  45 #include "lib/event.h"  // mc_event_raise()
  46 
  47 /*** global variables ****************************************************************************/
  48 
  49 /*** file scope macro definitions ****************************************************************/
  50 
  51 /*** file scope type declarations ****************************************************************/
  52 
  53 /*** forward declarations (file scope functions) *************************************************/
  54 
  55 /*** file scope variables ************************************************************************/
  56 
  57 static WDialog *last_query_dlg;
  58 
  59 static int sel_pos = 0;
  60 
  61 /* --------------------------------------------------------------------------------------------- */
  62 /*** file scope functions ************************************************************************/
  63 /* --------------------------------------------------------------------------------------------- */
  64 
  65 /** default query callback, used to reposition query */
  66 
  67 static cb_ret_t
  68 query_default_callback (Widget *w, Widget *sender, widget_msg_t msg, int parm, void *data)
     /* [previous][next][first][last][top][bottom][index][help]  */
  69 {
  70     WDialog *h = DIALOG (w);
  71 
  72     switch (msg)
  73     {
  74     case MSG_RESIZE:
  75         if ((w->pos_flags & WPOS_CENTER) == 0)
  76         {
  77             WDialog *prev_dlg = NULL;
  78             int ypos, xpos;
  79             WRect r;
  80 
  81             // get dialog under h
  82             if (top_dlg != NULL)
  83             {
  84                 if (top_dlg->data != (void *) h)
  85                     prev_dlg = DIALOG (top_dlg->data);
  86                 else
  87                 {
  88                     GList *p;
  89 
  90                     /* Top dialog is current if it is visible.
  91                        Get previous dialog in stack */
  92                     p = g_list_next (top_dlg);
  93                     if (p != NULL)
  94                         prev_dlg = DIALOG (p->data);
  95                 }
  96             }
  97 
  98             // if previous dialog is not fullscreen'd -- overlap it
  99             if (prev_dlg == NULL || (WIDGET (prev_dlg)->pos_flags & WPOS_FULLSCREEN) != 0)
 100                 ypos = LINES / 3 - (w->rect.lines - 3) / 2;
 101             else
 102                 ypos = WIDGET (prev_dlg)->rect.y + 2;
 103 
 104             // if dialog is too high, place it centered
 105             if (ypos + w->rect.lines < LINES / 2)
 106                 w->pos_flags |= WPOS_CENTER;
 107 
 108             xpos = COLS / 2 - w->rect.cols / 2;
 109 
 110             // set position
 111             rect_init (&r, ypos, xpos, w->rect.lines, w->rect.cols);
 112 
 113             return dlg_default_callback (w, NULL, MSG_RESIZE, 0, &r);
 114         }
 115         MC_FALLTHROUGH;
 116 
 117     default:
 118         return dlg_default_callback (w, sender, msg, parm, data);
 119     }
 120 }
 121 
 122 /* --------------------------------------------------------------------------------------------- */
 123 /** Show message box from background */
 124 
 125 #ifdef ENABLE_BACKGROUND
 126 static void
 127 bg_message (int dummy, int *flags, char *title, const char *text)
     /* [previous][next][first][last][top][bottom][index][help]  */
 128 {
 129     (void) dummy;
 130     title = g_strconcat (_ ("Background process:"), " ", title, (char *) NULL);
 131     query_dialog (title, text, *flags, 1, _ ("&OK"));
 132     g_free (title);
 133 }
 134 #endif
 135 
 136 /* --------------------------------------------------------------------------------------------- */
 137 
 138 /**
 139  * Show dialog, not background safe.
 140  *
 141  * If the arguments "header" and "text" should be translated,
 142  * that MUST be done by the caller of fg_input_dialog_help().
 143  *
 144  * The argument "history_name" holds the name of a section
 145  * in the history file. Data entered in the input field of
 146  * the dialog box will be stored there.
 147  *
 148  */
 149 static char *
 150 fg_input_dialog_help (const char *header, const char *text, const char *help,
     /* [previous][next][first][last][top][bottom][index][help]  */
 151                       const char *history_name, const char *def_text, gboolean strip_password,
 152                       input_complete_t completion_flags)
 153 {
 154     char *p_text;
 155     char histname[BUF_TINY] = "inp|";
 156     gboolean is_passwd = FALSE;
 157     char *my_str = NULL;
 158 
 159     // label text
 160     p_text = g_strstrip (g_strdup (text));
 161 
 162     // input history
 163     if (history_name != NULL && *history_name != '\0')
 164         g_strlcpy (histname + 3, history_name, sizeof (histname) - 3);
 165 
 166     /* The special value of def_text is used to identify password boxes
 167        and hide characters with "*".  Don't save passwords in history! */
 168     if (def_text == INPUT_PASSWORD)
 169     {
 170         is_passwd = TRUE;
 171         histname[3] = '\0';
 172         def_text = "";
 173     }
 174 
 175     quick_widget_t quick_widgets[] = {
 176         QUICK_LABELED_INPUT (p_text, input_label_above, def_text, histname, &my_str, NULL,
 177                              is_passwd, strip_password, completion_flags),
 178         QUICK_BUTTONS_OK_CANCEL,
 179         QUICK_END,
 180     };
 181 
 182     WRect r = { -1, -1, 0, COLS / 2 };
 183 
 184     quick_dialog_t qdlg = {
 185         .rect = r,
 186         .title = header,
 187         .help = help,
 188         .widgets = quick_widgets,
 189         .callback = NULL,
 190         .mouse_callback = NULL,
 191     };
 192 
 193     const int ret = quick_dialog (&qdlg);
 194 
 195     g_free (p_text);
 196 
 197     return (ret != B_CANCEL) ? my_str : NULL;
 198 }
 199 
 200 /* --------------------------------------------------------------------------------------------- */
 201 
 202 #ifdef ENABLE_BACKGROUND
 203 static int
 204 wtools_parent_call (void *routine, gpointer ctx, int argc, ...)
     /* [previous][next][first][last][top][bottom][index][help]  */
 205 {
 206     ev_background_parent_call_t event_data;
 207 
 208     event_data.routine = routine;
 209     event_data.ctx = ctx;
 210     event_data.argc = argc;
 211     va_start (event_data.ap, argc);
 212     mc_event_raise (MCEVENT_GROUP_CORE, "background_parent_call", (gpointer) &event_data);
 213     va_end (event_data.ap);
 214     return event_data.ret.i;
 215 }
 216 
 217 /* --------------------------------------------------------------------------------------------- */
 218 
 219 static char *
 220 wtools_parent_call_string (void *routine, int argc, ...)
     /* [previous][next][first][last][top][bottom][index][help]  */
 221 {
 222     ev_background_parent_call_t event_data;
 223 
 224     event_data.routine = routine;
 225     event_data.argc = argc;
 226     va_start (event_data.ap, argc);
 227     mc_event_raise (MCEVENT_GROUP_CORE, "background_parent_call_string", (gpointer) &event_data);
 228     va_end (event_data.ap);
 229     return event_data.ret.s;
 230 }
 231 #endif
 232 
 233 /* --------------------------------------------------------------------------------------------- */
 234 /*** public functions ****************************************************************************/
 235 /* --------------------------------------------------------------------------------------------- */
 236 
 237 /** Used to ask questions to the user */
 238 int
 239 query_dialog (const char *header, const char *text, int flags, int count, ...)
     /* [previous][next][first][last][top][bottom][index][help]  */
 240 {
 241     WDialog *query_dlg;
 242     WGroup *g;
 243     GPtrArray *buttons = NULL;
 244     WButton *button;
 245     int win_width = 0;
 246     int i;
 247     int result = -1;
 248     int cols, lines;
 249     const int *query_colors = (flags & D_ERROR) != 0 ? alarm_colors : dialog_colors;
 250     widget_pos_flags_t pos_flags =
 251         (flags & D_CENTER) != 0 ? (WPOS_CENTER | WPOS_TRYUP) : WPOS_KEEP_DEFAULT;
 252 
 253     if (header == MSG_ERROR)
 254         header = _ ("Error");
 255 
 256     if (count > 0)
 257     {
 258         va_list ap;
 259 
 260         buttons = g_ptr_array_sized_new ((guint) count);
 261 
 262         va_start (ap, count);
 263         for (i = 0; i < count; i++)
 264         {
 265             const char *cp = va_arg (ap, char *);
 266 
 267             button = button_new (1, 1, B_USER + i, NORMAL_BUTTON, cp, NULL);
 268             win_width += button_get_width (button) + 1;
 269             g_ptr_array_add (buttons, button);
 270         }
 271         va_end (ap);
 272     }
 273 
 274     const int header_cols = str_term_width1 (header);
 275 
 276     // count coordinates
 277     str_msg_term_size (text, &lines, &cols);
 278     cols = 6 + MAX (win_width, MAX (header_cols, cols));
 279     lines += 4 + (count > 0 ? 2 : 0);
 280 
 281     // prepare dialog
 282     query_dlg = dlg_create (TRUE, 0, 0, lines, cols, pos_flags, FALSE, query_colors,
 283                             query_default_callback, NULL, "[QueryBox]", header);
 284     g = GROUP (query_dlg);
 285 
 286     if (count > 0)
 287     {
 288         WButton *defbutton = NULL;
 289 
 290         group_add_widget_autopos (g, label_new (2, 3, text), WPOS_KEEP_TOP | WPOS_CENTER_HORZ,
 291                                   NULL);
 292         group_add_widget (g, hline_new (lines - 4, -1, -1));
 293 
 294         cols = (cols - win_width - 2) / 2 + 2;
 295 
 296         for (i = 0; i < count; i++)
 297         {
 298             button = BUTTON (g_ptr_array_index (buttons, i));
 299             WIDGET (button)->rect.y = lines - 3;
 300             WIDGET (button)->rect.x = cols;
 301             group_add_widget (g, button);
 302 
 303             cols += button_get_width (button) + 1;
 304 
 305             if (i == sel_pos)
 306                 defbutton = button;
 307         }
 308 
 309         g_ptr_array_free (buttons, FALSE);
 310 
 311         // do resize before running and selecting any widget
 312         send_message (query_dlg, NULL, MSG_RESIZE, 0, NULL);
 313 
 314         if (defbutton != NULL)
 315             widget_select (WIDGET (defbutton));
 316 
 317         // run dialog and make result
 318         switch (dlg_run (query_dlg))
 319         {
 320         case B_CANCEL:
 321             break;
 322         default:
 323             result = query_dlg->ret_value - B_USER;
 324         }
 325 
 326         // free used memory
 327         widget_destroy (WIDGET (query_dlg));
 328     }
 329     else
 330     {
 331         group_add_widget_autopos (g, label_new (2, 3, text), WPOS_KEEP_TOP | WPOS_CENTER_HORZ,
 332                                   NULL);
 333         group_add_widget (g, button_new (0, 0, 0, HIDDEN_BUTTON, "-", NULL));
 334         last_query_dlg = query_dlg;
 335     }
 336     sel_pos = 0;
 337     return result;
 338 }
 339 
 340 /* --------------------------------------------------------------------------------------------- */
 341 
 342 void
 343 query_set_sel (int new_sel)
     /* [previous][next][first][last][top][bottom][index][help]  */
 344 {
 345     sel_pos = new_sel;
 346 }
 347 
 348 /* --------------------------------------------------------------------------------------------- */
 349 /**
 350  * Create message dialog.  The caller must call dlg_run_done() and
 351  * widget_destroy() to dismiss it.  Not safe to call from background.
 352  */
 353 
 354 WDialog *
 355 create_message (int flags, const char *title, const char *text, ...)
     /* [previous][next][first][last][top][bottom][index][help]  */
 356 {
 357     va_list args;
 358     WDialog *d;
 359     char *p;
 360 
 361     va_start (args, text);
 362     p = g_strdup_vprintf (text, args);
 363     va_end (args);
 364 
 365     query_dialog (title, p, flags, 0);
 366     d = last_query_dlg;
 367 
 368     // do resize before initing and running
 369     send_message (d, NULL, MSG_RESIZE, 0, NULL);
 370 
 371     dlg_init (d);
 372     g_free (p);
 373 
 374     return d;
 375 }
 376 
 377 /* --------------------------------------------------------------------------------------------- */
 378 /** Show message box, background safe */
 379 
 380 void
 381 message (int flags, const char *title, const char *text, ...)
     /* [previous][next][first][last][top][bottom][index][help]  */
 382 {
 383     char *p;
 384     va_list ap;
 385 
 386     va_start (ap, text);
 387     p = g_strdup_vprintf (text, ap);
 388     va_end (ap);
 389 
 390     if (title == MSG_ERROR)
 391         title = _ ("Error");
 392 
 393 #ifdef ENABLE_BACKGROUND
 394     if (mc_global.we_are_background)
 395     {
 396         union
 397         {
 398             void *p;
 399             void (*f) (int, int *, char *, const char *);
 400         } func;
 401 
 402         func.f = bg_message;
 403 
 404         wtools_parent_call (func.p, NULL, 3, sizeof (flags), &flags, strlen (title), title,
 405                             strlen (p), p);
 406     }
 407     else
 408 #endif
 409         query_dialog (title, p, flags, 1, _ ("&OK"));
 410 
 411     g_free (p);
 412 }
 413 
 414 /* --------------------------------------------------------------------------------------------- */
 415 /** Show error message box */
 416 
 417 gboolean
 418 mc_error_message (GError **mcerror, int *code)
     /* [previous][next][first][last][top][bottom][index][help]  */
 419 {
 420     if (mcerror == NULL || *mcerror == NULL)
 421         return FALSE;
 422 
 423     if ((*mcerror)->code == 0)
 424         message (D_ERROR, MSG_ERROR, "%s", (*mcerror)->message);
 425     else
 426         message (D_ERROR, MSG_ERROR, _ ("%s (%d)"), (*mcerror)->message, (*mcerror)->code);
 427 
 428     if (code != NULL)
 429         *code = (*mcerror)->code;
 430 
 431     g_error_free (*mcerror);
 432     *mcerror = NULL;
 433 
 434     return TRUE;
 435 }
 436 
 437 /* --------------------------------------------------------------------------------------------- */
 438 /**
 439  * Show input dialog, background safe.
 440  *
 441  * If the arguments "header" and "text" should be translated,
 442  * that MUST be done by the caller of these wrappers.
 443  */
 444 
 445 char *
 446 input_dialog_help (const char *header, const char *text, const char *help, const char *history_name,
     /* [previous][next][first][last][top][bottom][index][help]  */
 447                    const char *def_text, gboolean strip_password, input_complete_t completion_flags)
 448 {
 449 #ifdef ENABLE_BACKGROUND
 450     if (mc_global.we_are_background)
 451     {
 452         union
 453         {
 454             void *p;
 455             char *(*f) (const char *, const char *, const char *, const char *, const char *,
 456                         gboolean, input_complete_t);
 457         } func;
 458         func.f = fg_input_dialog_help;
 459         return wtools_parent_call_string (
 460             func.p, 7, strlen (header), header, strlen (text), text, strlen (help), help,
 461             strlen (history_name), history_name, strlen (def_text), def_text, sizeof (gboolean),
 462             strip_password, sizeof (input_complete_t), completion_flags);
 463     }
 464     else
 465 #endif
 466         return fg_input_dialog_help (header, text, help, history_name, def_text, strip_password,
 467                                      completion_flags);
 468 }
 469 
 470 /* --------------------------------------------------------------------------------------------- */
 471 /** Show input dialog with default help, background safe */
 472 
 473 char *
 474 input_dialog (const char *header, const char *text, const char *history_name, const char *def_text,
     /* [previous][next][first][last][top][bottom][index][help]  */
 475               input_complete_t completion_flags)
 476 {
 477     return input_dialog_help (header, text, "[Input Line Keys]", history_name, def_text, FALSE,
 478                               completion_flags);
 479 }
 480 
 481 /* --------------------------------------------------------------------------------------------- */
 482 
 483 char *
 484 input_expand_dialog (const char *header, const char *text, const char *history_name,
     /* [previous][next][first][last][top][bottom][index][help]  */
 485                      const char *def_text, input_complete_t completion_flags)
 486 {
 487     char *result;
 488 
 489     result = input_dialog (header, text, history_name, def_text, completion_flags);
 490     if (result)
 491     {
 492         char *expanded;
 493 
 494         expanded = tilde_expand (result);
 495         g_free (result);
 496         return expanded;
 497     }
 498     return result;
 499 }
 500 
 501 /* --------------------------------------------------------------------------------------------- */
 502 /**
 503  * Create status message window object and initialize it
 504  *
 505  * @param title window title
 506  * @param delay initial delay to raise window in seconds
 507  * @param init_cb callback to initialize user-defined part of status message
 508  * @param update_cb callback to update of status message
 509  * @param deinit_cb callback to deinitialize user-defined part of status message
 510  *
 511  * @return newly allocate status message window
 512  */
 513 
 514 status_msg_t *
 515 status_msg_create (const char *title, double delay, status_msg_cb init_cb,
     /* [previous][next][first][last][top][bottom][index][help]  */
 516                    status_msg_update_cb update_cb, status_msg_cb deinit_cb)
 517 {
 518     status_msg_t *sm;
 519 
 520     sm = g_try_new (status_msg_t, 1);
 521     status_msg_init (sm, title, delay, init_cb, update_cb, deinit_cb);
 522 
 523     return sm;
 524 }
 525 
 526 /* --------------------------------------------------------------------------------------------- */
 527 /**
 528  * Destroy status message window object
 529  *
 530  * @param sm status message window object
 531  */
 532 
 533 void
 534 status_msg_destroy (status_msg_t *sm)
     /* [previous][next][first][last][top][bottom][index][help]  */
 535 {
 536     status_msg_deinit (sm);
 537     g_free (sm);
 538 }
 539 
 540 /* --------------------------------------------------------------------------------------------- */
 541 /**
 542  * Initialize already created status message window object
 543  *
 544  * @param sm status message window object
 545  * @param title window title
 546  * @param delay initial delay to raise window in seconds
 547  * @param init_cb callback to initialize user-defined part of status message
 548  * @param update_cb callback to update of status message
 549  * @param deinit_cb callback to deinitialize user-defined part of status message
 550  */
 551 
 552 void
 553 status_msg_init (status_msg_t *sm, const char *title, double delay, status_msg_cb init_cb,
     /* [previous][next][first][last][top][bottom][index][help]  */
 554                  status_msg_update_cb update_cb, status_msg_cb deinit_cb)
 555 {
 556     gint64 start;
 557 
 558     // repaint screen to remove previous finished dialog
 559     mc_refresh ();
 560 
 561     start = g_get_monotonic_time ();
 562 
 563     sm->dlg = dlg_create (TRUE, 0, 0, 7, MIN (MAX (40, COLS / 2), COLS), WPOS_CENTER, FALSE,
 564                           dialog_colors, NULL, NULL, NULL, title);
 565     sm->start = start;
 566     sm->delay = (gint64) (delay * G_USEC_PER_SEC);
 567     sm->block = FALSE;
 568 
 569     sm->init = init_cb;
 570     sm->update = update_cb;
 571     sm->deinit = deinit_cb;
 572 
 573     if (sm->init != NULL)
 574         sm->init (sm);
 575 
 576     if (mc_time_elapsed (&start, sm->delay))
 577     {
 578         // We will manage the dialog without any help, that's why we have to call dlg_init
 579         dlg_init (sm->dlg);
 580     }
 581 }
 582 
 583 /* --------------------------------------------------------------------------------------------- */
 584 /**
 585  * Deinitialize status message window object
 586  *
 587  * @param sm status message window object
 588  */
 589 
 590 void
 591 status_msg_deinit (status_msg_t *sm)
     /* [previous][next][first][last][top][bottom][index][help]  */
 592 {
 593     if (sm == NULL)
 594         return;
 595 
 596     if (sm->deinit != NULL)
 597         sm->deinit (sm);
 598 
 599     // close and destroy dialog
 600     dlg_run_done (sm->dlg);
 601     widget_destroy (WIDGET (sm->dlg));
 602 }
 603 
 604 /* --------------------------------------------------------------------------------------------- */
 605 /**
 606  * Update status message window
 607  *
 608  * @param sm status message window object
 609  *
 610  * @return value of pressed key
 611  */
 612 
 613 int
 614 status_msg_common_update (status_msg_t *sm)
     /* [previous][next][first][last][top][bottom][index][help]  */
 615 {
 616     int c;
 617     Gpm_Event event;
 618 
 619     if (sm == NULL)
 620         return B_ENTER;
 621 
 622     // This should not happen, but...
 623     if (sm->dlg == NULL)
 624         return B_ENTER;
 625 
 626     if (widget_get_state (WIDGET (sm->dlg), WST_CONSTRUCT))
 627     {
 628         // dialog is not shown yet
 629 
 630         // do not change sm->start
 631         gint64 start = sm->start;
 632 
 633         if (mc_time_elapsed (&start, sm->delay))
 634             dlg_init (sm->dlg);
 635 
 636         return B_ENTER;
 637     }
 638 
 639     event.x = -1;  // Don't show the GPM cursor
 640     c = tty_get_event (&event, FALSE, sm->block);
 641     if (c == EV_NONE)
 642         return B_ENTER;
 643 
 644     /* Reinitialize by non-B_CANCEL value to avoid old values
 645        after events other than selecting a button */
 646     sm->dlg->ret_value = B_ENTER;
 647     dlg_process_event (sm->dlg, c, &event);
 648 
 649     return sm->dlg->ret_value;
 650 }
 651 
 652 /* --------------------------------------------------------------------------------------------- */
 653 /**
 654  * Callback to initialize already created simple status message window object
 655  *
 656  * @param sm status message window object
 657  */
 658 
 659 void
 660 simple_status_msg_init_cb (status_msg_t *sm)
     /* [previous][next][first][last][top][bottom][index][help]  */
 661 {
 662     simple_status_msg_t *ssm = SIMPLE_STATUS_MSG (sm);
 663     Widget *wd = WIDGET (sm->dlg);
 664     WGroup *wg = GROUP (sm->dlg);
 665     WRect r;
 666 
 667     const char *b_name = N_ ("&Abort");
 668     int b_width;
 669     int wd_width, y;
 670     Widget *b;
 671 
 672 #ifdef ENABLE_NLS
 673     b_name = _ (b_name);
 674 #endif
 675 
 676     b_width = str_term_width1 (b_name) + 4;
 677     wd_width = MAX (wd->rect.cols, b_width + 6);
 678 
 679     y = 2;
 680     ssm->label = label_new (y++, 3, NULL);
 681     group_add_widget_autopos (wg, ssm->label, WPOS_KEEP_TOP | WPOS_CENTER_HORZ, NULL);
 682     group_add_widget (wg, hline_new (y++, -1, -1));
 683     b = WIDGET (button_new (y++, 3, B_CANCEL, NORMAL_BUTTON, b_name, NULL));
 684     group_add_widget_autopos (wg, b, WPOS_KEEP_TOP | WPOS_CENTER_HORZ, NULL);
 685 
 686     r = wd->rect;
 687     r.lines = y + 2;
 688     r.cols = wd_width;
 689     widget_set_size_rect (wd, &r);
 690 }
 691 
 692 /* --------------------------------------------------------------------------------------------- */

/* [previous][next][first][last][top][bottom][index][help]  */