view src/ui3/bmi/mmiProgressBar.h @ 695:530f71d65c20

uartfax.c: pull from Tourmaline (GTM900 RI output) In addition to the primary intent of bringing in GTM900 RI output support, pulling uartfax.c wholesale from Tourmaline also changes the initial_time argument in the two NU_Create_Timer() calls from 0 to 1. This change is required for the new version of Nucleus used in Tourmaline and Selenite (and apparently also used by TI in LoCosto), and it is harmless (no effect) for the original TCS211 version of Nucleus used in Magnetite. The new philosophical model being adopted is that Tourmaline is our new development head firmware, whereas Magnetite will now be maintained similarly to how Linux maintainers treat stable kernels: changes will be backported from Tourmaline if they are deemed appropriate for stable modem firmware.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 24 Oct 2020 17:33:10 +0000
parents 6a4d9f47793e
children
line wrap: on
line source


#ifndef _DEF_MMI_PROGRESSBAR_H_
#define _DEF_MMI_PROGRESSBAR_H_


#include "MmiDialogs.h"
#include "mfw_mnu.h"

//#define bar_width 150
#define bar_width 100
#define bar_height 20

#define x_screen 35
#define y_screen 150

#define download_percentage 100
#define playback_percentage 25

#define COLOR_RGB_DARK_RED         "#8B0000"
#define COLOR_RGB_DARK_BLUE        "#00008B"
#define COLOR_RGB_DARK_YELLOW      "#FFD700"
#define COLOR_RGB_DARK_GREEN       "#006400"
#define COLOR_RGB_DARK_GREY        "#A9A9A9"
#define COLOR_RGB_DARK_CYAN        "#008B8B"
#define COLOR_RGB_DARK_MAGENTA     "#8B008B"
#define COLOR_RGB_BLACK            "#000000"
#define COLOR_RGB_GREY             "#808080"
#define COLOR_RGB_WHITE            "#FFFFFF"
#define COLOR_RGB_BRIGHT_RED       "#FF0000"
#define COLOR_RGB_BRIGHT_YELLOW    "#FFFF00"
#define COLOR_RGB_BRIGHT_GREEN     "#008000"
#define COLOR_RGB_BRIGHT_CYAN      "#00FFFF"
#define COLOR_RGB_BRIGHT_BLUE      "#0000FF"
#define COLOR_RGB_BRIGHT_MAGENTA   "#FF00FF"
typedef float				Float;

typedef struct _tProgressData_
{
    /* administrative data */

    T_MMI_CONTROL     mmi_control;
    T_MFW_HND            win;
    T_MFW_HND            parent_win;
    MfwHnd   kbd; 

    /* associated handlers */

} tProgressData;



/********************************************************************

					Prototypes

********************************************************************/

T_MFW_HND progress_bar(T_MFW_HND	 parent );
static int ProgressBar_cb(MfwEvt , MfwWin * );

void MmiProgressIndication (UBYTE , UBYTE , UBYTE , UBYTE, int , int );


#endif /* _DEF_MMI_PROGRESSBAR */