summaryrefslogtreecommitdiff
path: root/src/widget_buttonimage.c
blob: db7e5379a0fcf1f7877059c2a907b70ea53d7fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56

#include <stdlib.h>

#include "main.h"
#include "interface.h"
#include "font.h"
#include "widget_buttonimage.h"
#include "image.h"

widget_buttonimage_t* newWidgetButtonimage(SDL_Surface *image, int x, int y, void (*fce_event)(void *))
{
	widget_buttonimage_t *new;

	new = malloc( sizeof(widget_buttonimage_t) );
	new->image = image;
	new->x = x;
	new->y = y;
	new->w = image->w/2;
	new->h = image->h;
	new->active = 0;
	new->fce_event = fce_event;

	return new;
}

void drawWidgetButtonimage(widget_buttonimage_t *p)
{
 	drawImage(p->image, p->x, p->y, p->active*p->w, 0, p->w, p->h);
}

void eventWidgetButtonimage(widget_buttonimage_t *p)
{
	static int time = 0;
	int x, y;

	if( time > 0)
	{
		time--;
		return;
	}

	getMousePosition(&x, &y);

	if( x >= p->x && x <= p->x+p->w && 
	    y >= p->y && y <= p->y+p->h &&
	    isMouseClicked() )
	{
		time = WIDGET_BUTTONIMAGE_TIME;
		p->fce_event(p);
	}
}

void destroyWidgetButtonimage(widget_buttonimage_t *p)
{
	free(p);
}