blob: b39fc7ccd065853fbeb940a03b53fb2949dc69c0 (
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
|
// 11 june 2015
#include "uipriv_unix.h"
struct uiLabel {
uiUnixControl c;
GtkWidget *widget;
GtkMisc *misc;
GtkLabel *label;
};
uiUnixControlAllDefaults(uiLabel)
char *uiLabelText(uiLabel *l)
{
return uiUnixStrdupText(gtk_label_get_text(l->label));
}
void uiLabelSetText(uiLabel *l, const char *text)
{
gtk_label_set_text(l->label, text);
}
uiLabel *uiNewLabel(const char *text)
{
uiLabel *l;
uiUnixNewControl(uiLabel, l);
l->widget = gtk_label_new(text);
l->misc = GTK_MISC(l->widget);
l->label = GTK_LABEL(l->widget);
gtk_misc_set_alignment(l->misc, 0, 0);
return l;
}
|