Microchip® Advanced Software Framework

 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Progress bar widget options

These options can be ORed together to specify the behaviour of a progress bar widget when creating it with wtk_progress_bar_create.

Progress bar orientation configuration options.

For use with the option parameter of wtk_progress_bar_create

#define WTK_PROGRESS_BAR_HORIZONTAL   (0 << 0)
 Progress bar is horizontally oriented. More...
 
#define WTK_PROGRESS_BAR_VERTICAL   (1 << 0)
 Progress bar is vertically oriented. More...
 

Progress bar widget invert configuration options.

For use with the option parameter of wtk_progress_bar_create

#define WTK_PROGRESS_BAR_INVERT   (1 << 1)
 Progress bar is inverted. More...
 

#define WTK_PROGRESS_BAR_HORIZONTAL   (0 << 0)

Progress bar is horizontally oriented.

Referenced by app_widget_launch().

#define WTK_PROGRESS_BAR_INVERT   (1 << 1)
#define WTK_PROGRESS_BAR_VERTICAL   (1 << 0)

Progress bar is vertically oriented.

Referenced by wtk_progress_bar_create(), wtk_progress_bar_handler(), and wtk_progress_bar_set_value().