Introducing GWIN_PROGRESSBAR_AUTO for the automatic incremental function of the progressbar widget
This commit is contained in:
parent
15baf7a5c7
commit
5979acc7f6
7 changed files with 88 additions and 73 deletions
|
@ -82,6 +82,7 @@
|
|||
#define GWIN_NEED_IMAGE_ANIMATION FALSE
|
||||
#define GWIN_NEED_LIST_IMAGES FALSE
|
||||
#define GWIN_NEED_PROGRESSBAR TRUE
|
||||
#define GWIN_PROGRESSBAR_AUTO TRUE
|
||||
|
||||
/* Features for the GINPUT sub-system. */
|
||||
#define GINPUT_NEED_MOUSE TRUE
|
||||
|
|
|
@ -65,6 +65,7 @@
|
|||
#define GWIN_NEED_LIST TRUE
|
||||
#define GWIN_NEED_LIST_IMAGES TRUE
|
||||
#define GWIN_NEED_PROGRESSBAR TRUE
|
||||
#define GWIN_PROGRESSBAR_AUTO TRUE
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
// GEVENT //
|
||||
|
|
|
@ -148,6 +148,7 @@
|
|||
#define GWIN_NEED_LIST FALSE
|
||||
#define GWIN_NEED_LIST_IMAGES FALSE
|
||||
#define GWIN_NEED_PROGRESSBAR FALSE
|
||||
#define GWIN_PROGRESSBAR_AUTO FALSE
|
||||
#define GWIN_NEED_FRAME FALSE
|
||||
#define GWIN_FLAT_STYLING FALSE
|
||||
|
||||
|
|
|
@ -84,6 +84,10 @@ GHandle gwinGProgressbarCreate(GDisplay *g, GProgressbarObject *gs, const GWidge
|
|||
gs->pos = 0;
|
||||
gs->delay = 0;
|
||||
|
||||
#if GWIN_PROGRESSBAR_AUTO
|
||||
gtimerInit(&gs->gt);
|
||||
#endif
|
||||
|
||||
ResetDisplayPos(gs);
|
||||
gwinSetVisible((GHandle)gs, pInit->g.show);
|
||||
|
||||
|
@ -179,8 +183,9 @@ void gwinProgressbarDecrement(GHandle gh) {
|
|||
#undef gsw
|
||||
}
|
||||
|
||||
// used by gwinProgressbarStart();
|
||||
static void _progressbarCallback(void *param) {
|
||||
#if GWIN_PROGRESSBAR_AUTO
|
||||
// used by gwinProgressbarStart();
|
||||
static void _progressbarCallback(void *param) {
|
||||
#define gsw ((GProgressbarObject *)gh)
|
||||
GHandle gh = (GHandle)param;
|
||||
|
||||
|
@ -193,9 +198,9 @@ static void _progressbarCallback(void *param) {
|
|||
gtimerStart(&(gsw->gt), _progressbarCallback, gh, FALSE, gsw->delay);
|
||||
|
||||
#undef gsw
|
||||
}
|
||||
}
|
||||
|
||||
void gwinProgressbarStart(GHandle gh, delaytime_t delay) {
|
||||
void gwinProgressbarStart(GHandle gh, delaytime_t delay) {
|
||||
#define gsw ((GProgressbarObject *)gh)
|
||||
|
||||
if (gh->vmt != (gwinVMT *)&progressbarVMT)
|
||||
|
@ -206,18 +211,10 @@ void gwinProgressbarStart(GHandle gh, delaytime_t delay) {
|
|||
gtimerInit(&(gsw->gt));
|
||||
gtimerStart(&(gsw->gt), _progressbarCallback, gh, FALSE, gsw->delay);
|
||||
|
||||
#if 0
|
||||
// if this is not made, the progressbar will not start when it's already visible
|
||||
if (gsw->w.g.flags & GWIN_FLG_VISIBLE) {
|
||||
gwinSetVisible(gh, FALSE);
|
||||
gwinSetVisible(gh, TRUE);
|
||||
}
|
||||
#endif
|
||||
|
||||
#undef gsw
|
||||
}
|
||||
}
|
||||
|
||||
void gwinProgressbarStop(GHandle gh) {
|
||||
void gwinProgressbarStop(GHandle gh) {
|
||||
#define gsw ((GProgressbarObject *)gh)
|
||||
|
||||
if (gh->vmt != (gwinVMT *)&progressbarVMT)
|
||||
|
@ -226,7 +223,8 @@ void gwinProgressbarStop(GHandle gh) {
|
|||
gtimerStop(&(gsw->gt));
|
||||
|
||||
#undef gsw
|
||||
}
|
||||
}
|
||||
#endif /* GWIN_PROGRESSBAR_AUTO */
|
||||
|
||||
/*----------------------------------------------------------
|
||||
* Custom Draw Routines
|
||||
|
|
|
@ -30,7 +30,7 @@ typedef struct GProgressbarObject {
|
|||
int max;
|
||||
int res;
|
||||
int pos;
|
||||
#if GFX_USE_GTIMER
|
||||
#if GWIN_PROGRESSBAR_AUTO
|
||||
GTimer gt;
|
||||
delaytime_t delay;
|
||||
#endif
|
||||
|
@ -147,7 +147,8 @@ void gwinProgressbarDecrement(GHandle gh);
|
|||
*/
|
||||
#define gwinProgressbarReset(gh) gwinProgressbarSetPosition(gh, ((GProgressbarObject *)(gh))->min)
|
||||
|
||||
/**
|
||||
#if GWIN_PROGRESSBAR_AUTO
|
||||
/**
|
||||
* @brief Automatically increments the progress bar
|
||||
*
|
||||
* @note The delay is generated using the GTIMER module which is based on software/virtual timer.
|
||||
|
@ -162,16 +163,17 @@ void gwinProgressbarDecrement(GHandle gh);
|
|||
*
|
||||
* @api
|
||||
*/
|
||||
void gwinProgressbarStart(GHandle gh, delaytime_t delay);
|
||||
void gwinProgressbarStart(GHandle gh, delaytime_t delay);
|
||||
|
||||
/**
|
||||
/**
|
||||
* @brief Stop the timer which is started by @p gwinProgressbarStart()
|
||||
*
|
||||
* @param[in] gh The window handle (must be a progressbar window)
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
void gwinProgressbarStop(GHandle gh);
|
||||
void gwinProgressbarStop(GHandle gh);
|
||||
#endif /* GWIN_PROGRESSBAR_AUTO */
|
||||
|
||||
/**
|
||||
* @brief Some custom progressbar drawing routines
|
||||
|
|
|
@ -214,6 +214,13 @@
|
|||
#ifndef GWIN_NEED_IMAGE_ANIMATION
|
||||
#define GWIN_NEED_IMAGE_ANIMATION FALSE
|
||||
#endif
|
||||
/**
|
||||
* @brief Enable the API to automatically increment the progressbar over time
|
||||
* @details Defaults to FALSE
|
||||
*/
|
||||
#ifndef GWIN_PROGRESSBAR_AUTO
|
||||
#define GWIN_PROGRESSBAR_AUTO FALSE
|
||||
#endif
|
||||
/** @} */
|
||||
|
||||
#endif /* _GWIN_OPTIONS_H */
|
||||
|
|
|
@ -93,6 +93,11 @@
|
|||
#endif
|
||||
#if GWIN_NEED_GRAPH
|
||||
#endif
|
||||
#if GWIN_PROGRESSBAR_AUTO
|
||||
#if !GFX_USE_GTIMER
|
||||
#error "GWIN: GFX_USE_GTIMER is required if GWIN_PROGRESSBAR_AUTO is TRUE."
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* _GWIN_RULES_H */
|
||||
|
|
Loading…
Add table
Reference in a new issue