blob: 4731f68d38e0462217d05d09bd78b8b236d73b41 (
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
|
// 8 april 2015
#include "uipriv_unix.h"
struct entry {
uiEntry e;
};
static void onDestroy(GtkWidget *widget, gpointer data)
{
struct entry *e = (struct entry *) data;
uiFree(e);
}
#define ENTRY(e) GTK_ENTRY(uiControlHandle(uiControl(e)))
static char *getText(uiEntry *e)
{
return g_strdup(gtk_entry_get_text(ENTRY(e)));
}
static void setText(uiEntry *e, const char *text)
{
gtk_entry_set_text(ENTRY(e), text);
}
uiEntry *uiNewEntry(void)
{
struct entry *e;
GtkWidget *widget;
e = uiNew(struct entry);
uiUnixNewControl(uiControl(e), GTK_TYPE_ENTRY,
FALSE, FALSE,
NULL);
widget = GTK_WIDGET(ENTRY(e));
g_signal_connect(widget, "destroy", G_CALLBACK(onDestroy), e);
uiEntry(e)->Text = getText;
uiEntry(e)->SetText = setText;
return uiEntry(e);
}
|