Files
FireBee_Setup/sources/z-tools/trunk/zview/infobox.h

30 lines
713 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

typedef struct slider
{
float min, max;
float sinc, linc;
int ori; /* HORI,VERT*/
int upd; /* */
float value; /* valeur courante */
void (*doslid)( WINDOW *win, int mode, float value, void *data); /* Pas fix sur les spcifs */
void *data; /* user data for user function */
int mode;
WINDOW *win;
int up, dn, sld, bsld;
} SLIDER;
typedef struct
{
txt_data *txt;
int32 ypos; /* relative data position in the window */
int32 ypos_max; /* Maximal values of previous variables */
int16 h_u; /* vertical and horizontal scroll offset */
int32 xpos;
int32 xpos_max;
int16 w_u;
} exif_box_data;
extern void infobox( void);