Lines Matching refs:progress_bar
81 VOID _gx_progress_bar_background_draw(GX_PROGRESS_BAR *progress_bar) in _gx_progress_bar_background_draw() argument
100 if (progress_bar -> gx_widget_style & GX_STYLE_ENABLED) in _gx_progress_bar_background_draw()
102 fill_color = progress_bar -> gx_widget_normal_fill_color; in _gx_progress_bar_background_draw()
106 fill_color = progress_bar -> gx_widget_disabled_fill_color; in _gx_progress_bar_background_draw()
110 _gx_widget_border_draw((GX_WIDGET *)progress_bar, GX_COLOR_ID_DEFAULT_BORDER, in _gx_progress_bar_background_draw()
113 min_value = progress_bar -> gx_progress_bar_info.gx_progress_bar_info_min_val; in _gx_progress_bar_background_draw()
114 max_value = progress_bar -> gx_progress_bar_info.gx_progress_bar_info_max_val; in _gx_progress_bar_background_draw()
122 _gx_widget_client_get((GX_WIDGET *)progress_bar, -1, &fill_rect); in _gx_progress_bar_background_draw()
126 cur_value = progress_bar -> gx_progress_bar_info.gx_progress_bar_info_current_val; in _gx_progress_bar_background_draw()
128 if (progress_bar -> gx_progress_bar_info.gx_progress_bar_fill_pixelmap) in _gx_progress_bar_background_draw()
130 …_gx_context_pixelmap_get(progress_bar -> gx_progress_bar_info.gx_progress_bar_fill_pixelmap, &fill… in _gx_progress_bar_background_draw()
134 if (progress_bar -> gx_widget_style & GX_STYLE_PROGRESS_VERTICAL) in _gx_progress_bar_background_draw()
150 _gx_context_fill_color_set(progress_bar -> gx_widget_selected_fill_color); in _gx_progress_bar_background_draw()
152 if (progress_bar -> gx_widget_style & GX_STYLE_PROGRESS_SEGMENTED_FILL) in _gx_progress_bar_background_draw()
154 if (progress_bar -> gx_widget_style & GX_STYLE_PROGRESS_VERTICAL) in _gx_progress_bar_background_draw()
156 _gx_widget_width_get((GX_WIDGET *)progress_bar, &widget_width); in _gx_progress_bar_background_draw()
172 _gx_widget_height_get((GX_WIDGET *)progress_bar, &widget_height); in _gx_progress_bar_background_draw()
190 if (progress_bar -> gx_widget_style & GX_STYLE_PROGRESS_VERTICAL) in _gx_progress_bar_background_draw()