summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_progressbar_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/efl_ui_progressbar_private.h')
-rw-r--r--src/lib/elementary/efl_ui_progressbar_private.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/elementary/efl_ui_progressbar_private.h b/src/lib/elementary/efl_ui_progressbar_private.h
index c9b0c9b11f..7bdf8a98a0 100644
--- a/src/lib/elementary/efl_ui_progressbar_private.h
+++ b/src/lib/elementary/efl_ui_progressbar_private.h
@@ -32,6 +32,9 @@ struct _Efl_Ui_Progressbar_Data
Evas_Coord size; /**< Width or height of progressbar */
double val; /**< Value of progressbar */
+
+ double val_min;
+ double val_max;
Eina_List *progress_status; /**< The list of _Elm_Progress_Status. To save the progress value(in percentage) each part of given progress bar */
@@ -52,6 +55,7 @@ struct _Efl_Ui_Progress_Status
{
const char *part_name;
double val;
+ double val_min, val_max;
};
/**