From 0a30d42eaa4034d268c81541d3268714d96cbcc9 Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Sat, 10 May 2014 19:33:57 -0500 Subject: [PATCH] Restore wprogressindicator.c declarations to WINGs/WINGs.h In commit b4cb488, wprogressindicator.c was removed. It was restored in commit d435ea7, but the corresponding declarations in WINGs/WINGs.h were not. This patch fixes this oversight. --- WINGs/WINGs/WINGs.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/WINGs/WINGs/WINGs.h b/WINGs/WINGs/WINGs.h index dd3fac54..51252f52 100644 --- a/WINGs/WINGs/WINGs.h +++ b/WINGs/WINGs/WINGs.h @@ -1450,6 +1450,22 @@ void WMSetPopUpButtonEnabled(WMPopUpButton *bPtr, Bool flag); Bool WMGetPopUpButtonEnabled(WMPopUpButton *bPtr); +/* ---[ WINGs/wprogressindicator.c ]------------------------------------- */ + +WMProgressIndicator* WMCreateProgressIndicator(WMWidget *parent); + +void WMSetProgressIndicatorMinValue(WMProgressIndicator *progressindicator, int value); + +void WMSetProgressIndicatorMaxValue(WMProgressIndicator *progressindicator, int value); + +void WMSetProgressIndicatorValue(WMProgressIndicator *progressindicator, int value); + +int WMGetProgressIndicatorMinValue(WMProgressIndicator *progressindicator); + +int WMGetProgressIndicatorMaxValue(WMProgressIndicator *progressindicator); + +int WMGetProgressIndicatorValue(WMProgressIndicator *progressindicator); + /* ---[ WINGs/wcolorpanel.c ]--------------------------------------------- */ WMColorPanel* WMGetColorPanel(WMScreen *scrPtr);