libui/redo/unix/label.c

56 lines
1.1 KiB
C
Raw Normal View History

2015-06-11 18:07:06 -05:00
// 11 june 2015
#include "uipriv_unix.h"
struct label {
uiLabel l;
GtkWidget *widget;
2015-06-27 18:46:11 -05:00
GtkMisc *misc;
GtkLabel *label;
2015-06-11 18:07:06 -05:00
};
uiDefineControlType(uiLabel, uiTypeLabel, struct label)
static uintptr_t labelHandle(uiControl *c)
{
struct label *l = (struct label *) c;
return (uintptr_t) (l->widget);
}
static char *labelText(uiLabel *ll)
{
struct label *l = (struct label *) ll;
2015-06-30 21:10:52 -05:00
return uiUnixStrdupText(gtk_label_get_text(l->label));
2015-06-11 18:07:06 -05:00
}
static void labelSetText(uiLabel *ll, const char *text)
{
struct label *l = (struct label *) ll;
2015-06-30 21:10:52 -05:00
gtk_label_set_text(l->label, text);
2015-06-11 18:07:06 -05:00
// changing the text might necessitate a change in the label's size
uiControlQueueResize(uiControl(l));
}
uiLabel *uiNewLabel(const char *text)
{
struct label *l;
l = (struct label *) uiNewControl(uiTypeLabel());
2015-06-11 18:07:06 -05:00
2015-06-27 18:46:11 -05:00
l->widget = gtk_label_new(text);
l->misc = GTK_MISC(l->widget);
l->label = GTK_LABEL(l->widget);
uiUnixMakeSingleWidgetControl(uiControl(l), l->widget);
gtk_misc_set_alignment(l->misc, 0, 0);
2015-06-11 18:07:06 -05:00
uiControl(l)->Handle = labelHandle;
uiLabel(l)->Text = labelText;
uiLabel(l)->SetText = labelSetText;
return uiLabel(l);
}