X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fbuttons.h;h=91ec8f1e58e7c40059c0657bbd5f94f4c8c5db65;hb=b4045ec83a11b71b7348575d2c76783cde14dccd;hp=94616e069e54daad16fc8584a1e4b071dde7ff89;hpb=c5728b1ebc2a1d3753a6eea5a0f6335d077eef6b;p=rocksndiamonds.git diff --git a/src/buttons.h b/src/buttons.h index 94616e06..91ec8f1e 100644 --- a/src/buttons.h +++ b/src/buttons.h @@ -273,7 +273,7 @@ int CheckCountButtons(int, int, int); /* gadget types */ #define GD_TYPE_NORMAL_BUTTON (1<<0) -#define GD_TYPE_TWO_STATE_BUTTON (1<<1) +#define GD_TYPE_RADIO_BUTTON (1<<1) #define GD_TYPE_DRAWING_AREA (1<<2) #define GD_TYPE_TEXTINPUT (1<<3) #define GD_TYPE_TEXTOUTPUT (1<<4) @@ -286,6 +286,8 @@ int CheckCountButtons(int, int, int); #define GD_EVENT_PRESSED (1<<0) #define GD_EVENT_RELEASED (1<<1) #define GD_EVENT_MOVING (1<<2) +#define GD_EVENT_REPEATED (1<<3) +#define GD_EVENT_OFF_BORDERS (1<<4) /* gadget button states */ #define GD_BUTTON_UNPRESSED 0 @@ -296,23 +298,26 @@ int CheckCountButtons(int, int, int); /* gadget creation tags */ #define GDI_END 0 -#define GDI_ID 1 +#define GDI_CUSTOM_ID 1 #define GDI_X 2 #define GDI_Y 3 #define GDI_WIDTH 4 #define GDI_HEIGHT 5 #define GDI_TYPE 6 #define GDI_STATE 7 -#define GDI_ALT_STATE 8 -#define GDI_NUMBER_VALUE 9 -#define GDI_TEXT_VALUE 10 -#define GDI_DESIGN_UNPRESSED 11 -#define GDI_DESIGN_PRESSED 12 -#define GDI_ALT_DESIGN_UNPRESSED 13 -#define GDI_ALT_DESIGN_PRESSED 14 -#define GDI_EVENT_MASK 15 -#define GDI_EVENT 16 -#define GDI_CALLBACK 17 +#define GDI_RADIO_NR 8 +#define GDI_RADIO_PRESSED 9 +#define GDI_NUMBER_VALUE 10 +#define GDI_TEXT_VALUE 11 +#define GDI_DESIGN_UNPRESSED 12 +#define GDI_DESIGN_PRESSED 13 +#define GDI_ALT_DESIGN_UNPRESSED 14 +#define GDI_ALT_DESIGN_PRESSED 15 +#define GDI_EVENT_MASK 16 +#define GDI_EVENT 17 +#define GDI_CALLBACK 18 +#define GDI_AREA_SIZE 19 +#define GDI_ITEM_SIZE 20 typedef void (*gadget_callback_function)(void *); @@ -326,16 +331,26 @@ struct GadgetEvent { unsigned long type; /* event type */ int button; /* button number for button events */ + int x, y; /* gadget position at event time */ + boolean off_borders; /* mouse pointer outside gadget? */ +}; + +struct GadgetDrawingArea +{ + int area_xsize, area_ysize; /* size of drawing area (in items) */ + int item_xsize, item_ysize; /* size of each item in drawing area */ }; struct GadgetInfo { - int id; /* gadget identifier */ + int id; /* internal gadget identifier */ + int custom_id; /* custom gadget identifier */ int x, y; /* gadget position */ int width, height; /* gadget size */ unsigned long type; /* type (button, text input, ...) */ unsigned long state; /* state (pressed, released, ...) */ - boolean alt_state; /* alternative state */ + int radio_nr; /* number of radio button series */ + boolean radio_pressed; /* radio button state */ boolean mapped; /* gadget is active */ long number_value; char text_value[MAX_GADGET_TEXTSIZE]; @@ -344,6 +359,7 @@ struct GadgetInfo unsigned long event_mask; /* possible events for this gadget */ struct GadgetEvent event; /* actual gadget event */ gadget_callback_function callback; + struct GadgetDrawingArea drawing; /* fields for drawing area gadget */ struct GadgetInfo *next; /* next list entry */ };