summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve/widget/label.c
blob: 6013a223b181e3a9161b3f08a2e3449d5f5c7902 (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
#include <stdlib.h>
#include <string.h>

#include "eve.h"
#include "eve_kbd.h"

#include "screen/screen.h"
#include "screen/window.h"
#include "screen/page.h"
#include "screen/font.h"

#include "label.h"

void eve_label_init(EVELabel *label, EVERect *g, char *title, EVEFont *font) {
    memset(label, 0, sizeof(EVELabel));
    if (g) label->g = *g;
    label->title = title;
    label->font = font;
    if (label->g.w == 0) label->g.w = eve_font_string_width(font, label->title);
    if (label->g.h == 0) label->g.h = eve_font_height(font);
}

void eve_label_draw(EVELabel *label) {
    eve_cmd(CMD_TEXT, "hhhhs", label->g.x, label->g.y, label->font->id, 0, label->title);
}