Lines Matching refs:title
42 char *title; member
130 dlg_draw_title(dialog, obj->title); in repaint_text()
274 free(obj->title); in my_cleanup()
298 const char *title, in dlg_reallocate_gauge() argument
316 dlg_auto_size(title, prompt, &height, &width, MIN_HIGH, MIN_WIDE); in dlg_reallocate_gauge()
341 if (obj->title == 0 || strcmp(obj->title, title)) { in dlg_reallocate_gauge()
342 dlg_finish_string(obj->title); in dlg_reallocate_gauge()
343 free(obj->title); in dlg_reallocate_gauge()
344 obj->title = dlg_strclone(title); in dlg_reallocate_gauge()
366 dlg_allocate_gauge(const char *title, in dlg_allocate_gauge() argument
372 return dlg_reallocate_gauge(NULL, title, cprompt, height, width, percent); in dlg_allocate_gauge()
381 if (obj->title) in dlg_free_gauge()
382 free(obj->title); in dlg_free_gauge()
401 dialog_gauge(const char *title, in dialog_gauge() argument
409 void *objptr = dlg_allocate_gauge(title, cprompt, height, width, percent); in dialog_gauge()
413 DLG_TRACE2S("title", title); in dialog_gauge()
431 obj = dlg_allocate_gauge(title, in dialog_gauge()