Lines Matching refs:pinfo

414     PROGRESS_INFO *pinfo;  in task_progress_information_init()  local
419 pinfo = &left_progress_info_list[stage]; in task_progress_information_init()
421 pinfo->current_val = 0; in task_progress_information_init()
424 gx_progress_bar_value_set(pinfo->progress_bar, 0); in task_progress_information_init()
427 gx_numeric_prompt_value_set(pinfo->value_prompt, 0); in task_progress_information_init()
430 gx_widget_show(pinfo->value_prompt); in task_progress_information_init()
433 gx_widget_show(pinfo->percent_flag_prompt); in task_progress_information_init()
436 gx_widget_hide(pinfo->complete_icon); in task_progress_information_init()
450 PROGRESS_INFO *pinfo; in task_progress_information_update() local
465 pinfo = &left_progress_info_list[stage]; in task_progress_information_update()
467 if (pinfo->current_val < 100) in task_progress_information_update()
469 pinfo->current_val += LEFT_PROGRESS_BAR_INCREMENT; in task_progress_information_update()
472 gx_progress_bar_value_set(pinfo->progress_bar, pinfo->current_val); in task_progress_information_update()
473 gx_numeric_prompt_value_set(pinfo->value_prompt, pinfo->current_val); in task_progress_information_update()
475 if (pinfo->current_val >= 100) in task_progress_information_update()
477 gx_widget_hide(pinfo->value_prompt); in task_progress_information_update()
478 gx_widget_hide(pinfo->percent_flag_prompt); in task_progress_information_update()
479 gx_widget_show(pinfo->complete_icon); in task_progress_information_update()
579 PROPERTY_INFO *pinfo; in task_properties_init() local
583 pinfo = &property_prompt_value_list[index]; in task_properties_init()
585 gx_numeric_prompt_value_set((GX_NUMERIC_PROMPT *)pinfo->widget, pinfo->values[0]); in task_properties_init()
590 pinfo = &property_radial_progress_value_list[index]; in task_properties_init()
592 gx_radial_progress_bar_value_set((GX_RADIAL_PROGRESS_BAR *)pinfo->widget, 0); in task_properties_init()
607 PROPERTY_INFO *pinfo; in task_properties_update() local
615 pinfo = &property_prompt_value_list[index]; in task_properties_update()
617 target_val = pinfo->values[current_task_id]; in task_properties_update()
621 start_val = pinfo->values[TASK_COUNT - 1]; in task_properties_update()
625 start_val = pinfo->values[current_task_id - 1]; in task_properties_update()
630 gx_numeric_prompt_value_set((GX_NUMERIC_PROMPT*)pinfo->widget, value); in task_properties_update()
635 pinfo = &property_radial_progress_value_list[index]; in task_properties_update()
637 target_val = pinfo->values[current_task_id]; in task_properties_update()
642 gx_radial_progress_bar_value_set((GX_RADIAL_PROGRESS_BAR*)pinfo->widget, value); in task_properties_update()