summaryrefslogtreecommitdiff
path: root/textscreen/txt_button.c
blob: 93af529729e5e54f37e63290f12591080f47cd5d (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
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <string.h>

#include "txt_button.h"
#include "txt_io.h"
#include "txt_main.h"
#include "txt_widget.h"
#include "txt_window.h"

static int TXT_ButtonSizeCalc(txt_widget_t *widget)
{
    txt_button_t *button = (txt_button_t *) widget;

    // Minimum width is the string length + two spaces for padding

    return strlen(button->label) + 2;
}

static void TXT_ButtonDrawer(txt_widget_t *widget, int w, int selected)
{
    txt_button_t *button = (txt_button_t *) widget;
    int i;

    TXT_BGColor(TXT_COLOR_BLUE, 0);
    TXT_FGColor(TXT_COLOR_BRIGHT_WHITE);
    TXT_PutChar(' ');

    if (selected)
    {
        TXT_BGColor(TXT_COLOR_GREY, 0);
    }

    for (i=0; i<strlen(button->label); ++i)
    {
        TXT_PutChar(button->label[i]);
    }
    
    for (i=strlen(button->label); i < w-2; ++i)
    {
        TXT_PutChar(' ');
    }
}

static void TXT_ButtonDestructor(txt_widget_t *widget)
{
    txt_button_t *button = (txt_button_t *) widget;

    free(button->label);
}

txt_widget_class_t txt_button_class =
{
    TXT_ButtonSizeCalc,
    TXT_ButtonDrawer,
    TXT_ButtonDestructor,
};

txt_button_t *TXT_NewButton(char *label)
{
    txt_button_t *button;

    button = malloc(sizeof(txt_button_t));

    button->widget.widget_class = &txt_button_class;
    button->label = strdup(label);

    return button;
}