X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2Fgadgets.h;h=6482e44e3c6e19054b7e6ea89d16421ad5e00f2e;hp=7b8ce7f52853527b3bdc338511bce666bea9c77f;hb=3b6f0ed7443f58031823df29c1a7bd89d7d63a8d;hpb=61c3da024802ecc0268bab42d7499fc0346e4fd3 diff --git a/src/libgame/gadgets.h b/src/libgame/gadgets.h index 7b8ce7f5..6482e44e 100644 --- a/src/libgame/gadgets.h +++ b/src/libgame/gadgets.h @@ -1,15 +1,13 @@ -/*********************************************************** -* Artsoft Retro-Game Library * -*----------------------------------------------------------* -* (c) 1994-2006 Artsoft Entertainment * -* Holger Schemel * -* Detmolder Strasse 189 * -* 33604 Bielefeld * -* Germany * -* e-mail: info@artsoft.org * -*----------------------------------------------------------* -* gadgets.h * -***********************************************************/ +// ============================================================================ +// Artsoft Retro-Game Library +// ---------------------------------------------------------------------------- +// (c) 1995-2014 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// http://www.artsoft.org/ +// ---------------------------------------------------------------------------- +// gadgets.h +// ============================================================================ #ifndef GADGETS_H #define GADGETS_H @@ -80,35 +78,42 @@ #define GDI_TEXT_SIZE 15 #define GDI_TEXT_FONT 16 #define GDI_TEXT_FONT_ACTIVE 17 -#define GDI_SELECTBOX_OPTIONS 18 -#define GDI_SELECTBOX_INDEX 19 -#define GDI_DESIGN_UNPRESSED 20 -#define GDI_DESIGN_PRESSED 21 -#define GDI_ALT_DESIGN_UNPRESSED 22 -#define GDI_ALT_DESIGN_PRESSED 23 -#define GDI_BORDER_SIZE 24 -#define GDI_BORDER_SIZE_SELECTBUTTON 25 -#define GDI_DESIGN_WIDTH 26 -#define GDI_DECORATION_DESIGN 27 -#define GDI_DECORATION_POSITION 28 -#define GDI_DECORATION_SIZE 29 -#define GDI_DECORATION_SHIFTING 30 -#define GDI_EVENT_MASK 31 -#define GDI_EVENT 32 -#define GDI_CALLBACK_INFO 33 -#define GDI_CALLBACK_ACTION 34 -#define GDI_AREA_SIZE 35 -#define GDI_ITEM_SIZE 36 -#define GDI_SCROLLBAR_ITEMS_MAX 37 -#define GDI_SCROLLBAR_ITEMS_VISIBLE 38 -#define GDI_SCROLLBAR_ITEM_POSITION 39 -#define GDI_WHEEL_AREA_X 40 -#define GDI_WHEEL_AREA_Y 41 -#define GDI_WHEEL_AREA_WIDTH 42 -#define GDI_WHEEL_AREA_HEIGHT 43 -#define GDI_INFO_TEXT 44 -#define GDI_ACTIVE 45 -#define GDI_DIRECT_DRAW 46 +#define GDI_TEXT_FONT_UNSELECTABLE 18 +#define GDI_SELECTBOX_OPTIONS 19 +#define GDI_SELECTBOX_INDEX 20 +#define GDI_SELECTBOX_CHAR_UNSELECTABLE 21 +#define GDI_DESIGN_UNPRESSED 22 +#define GDI_DESIGN_PRESSED 23 +#define GDI_ALT_DESIGN_UNPRESSED 24 +#define GDI_ALT_DESIGN_PRESSED 25 +#define GDI_BORDER_SIZE 26 +#define GDI_BORDER_SIZE_SELECTBUTTON 27 +#define GDI_DESIGN_WIDTH 28 +#define GDI_DECORATION_DESIGN 29 +#define GDI_DECORATION_POSITION 30 +#define GDI_DECORATION_SIZE 31 +#define GDI_DECORATION_SHIFTING 32 +#define GDI_DECORATION_MASKED 33 +#define GDI_EVENT_MASK 34 +#define GDI_EVENT 35 +#define GDI_CALLBACK_INFO 36 +#define GDI_CALLBACK_ACTION 37 +#define GDI_AREA_SIZE 38 +#define GDI_ITEM_SIZE 39 +#define GDI_SCROLLBAR_ITEMS_MAX 40 +#define GDI_SCROLLBAR_ITEMS_VISIBLE 41 +#define GDI_SCROLLBAR_ITEM_POSITION 42 +#define GDI_WHEEL_AREA_X 43 +#define GDI_WHEEL_AREA_Y 44 +#define GDI_WHEEL_AREA_WIDTH 45 +#define GDI_WHEEL_AREA_HEIGHT 46 +#define GDI_INFO_TEXT 47 +#define GDI_ACTIVE 48 +#define GDI_DIRECT_DRAW 49 + +/* gadget deactivation hack */ +#define GDI_ACTIVE_POS(a) ((a) < 0 ? POS_OFFSCREEN : (a)) + typedef void (*gadget_function)(void *); @@ -131,6 +136,7 @@ struct GadgetDecoration int x, y; /* position of deco on the gadget */ int width, height; /* width and height of decoration */ int xshift, yshift; /* deco shifting when gadget pressed */ + boolean masked; /* draw decoration masked over button */ }; struct GadgetEvent @@ -182,6 +188,7 @@ struct GadgetSelectbox struct ValueTextInfo *options; /* pointer to text/value array */ int index; /* index of actual text string */ int size; /* maximal size of text strings */ + char char_unselectable; /* first char of unselectable options */ /* automatically determined values */ int x, y; /* open selectbox position */ @@ -233,6 +240,7 @@ struct GadgetInfo boolean direct_draw; /* directly draw to frontbuffer */ int font; /* font to use when inactive */ int font_active; /* font to use when active */ + int font_unselectable; /* font to use when unselectable */ struct GadgetBorder border; /* gadget border design */ struct GadgetDesign design[2]; /* 0: normal; 1: pressed */ struct GadgetDesign alt_design[2]; /* alternative design */