summaryrefslogtreecommitdiffstats
path: root/source/widget.c
blob: fe788c97b4135acfd0c0ab76a8418b7cc5a8612c (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
#include <glib.h>
#include "widget.h"

int widget_intersect ( const Widget *widget, int x, int y )
{
    if ( widget == NULL ) {
        return FALSE;
    }

    if ( x >= ( widget->x ) && x < ( widget->x + widget->w ) ) {
        if ( y >= ( widget->y ) && y < ( widget->y + widget->h ) ) {
            return TRUE;
        }
    }
    return FALSE;
}

void widget_move ( Widget *widget, short x, short y )
{
    if ( widget != NULL ) {
        widget->x = x;
        widget->y = y;
    }
}

gboolean widget_enabled ( Widget *widget )
{
    if ( widget != NULL ) {
        return widget->enabled;
    }
    return FALSE;
}

void widget_enable ( Widget *widget )
{
    if ( widget ) {
        widget->enabled = TRUE;
    }
}
void widget_disable ( Widget *widget )
{
    if ( widget ) {
        widget->enabled = FALSE;
    }
}