-
Notifications
You must be signed in to change notification settings - Fork 5
/
support.c
53 lines (44 loc) · 1.44 KB
/
support.c
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
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <gtk/gtk.h>
#include "support.h"
#if !GTK_CHECK_VERSION(2,24,0)
#define GTK_COMBO_BOX_TEXT GTK_COMBO_BOX
GtkWidget *
gtk_combo_box_text_new () {
return gtk_combo_box_new_text ();
}
GtkWidget *
gtk_combo_box_text_new_with_entry (void) {
return gtk_combo_box_entry_new ();
}
void
gtk_combo_box_text_append_text (GtkComboBoxText *combo_box, const gchar *text) {
gtk_combo_box_append_text (combo_box, text);
}
void
gtk_combo_box_text_insert_text (GtkComboBoxText *combo_box, gint position, const gchar *text) {
gtk_combo_box_insert_text (combo_box, position, text);
}
void
gtk_combo_box_text_prepend_text (GtkComboBoxText *combo_box, const gchar *text) {
gtk_combo_box_prepend_text (combo_box, text);
}
gchar *
gtk_combo_box_text_get_active_text (GtkComboBoxText *combo_box) {
return gtk_combo_box_get_active_text (combo_box);
}
#endif
#if !GTK_CHECK_VERSION(2,18,0)
void
gtk_widget_get_allocation (GtkWidget *widget, GtkAllocation *allocation) {
(allocation)->x = widget->allocation.x;
(allocation)->y = widget->allocation.y;
(allocation)->width = widget->allocation.width;
(allocation)->height = widget->allocation.height;
}
#define gtk_widget_set_can_default(widget, candefault) {if (candefault) GTK_WIDGET_SET_FLAGS (widget, GTK_CAN_DEFAULT); else GTK_WIDGET_UNSET_FLAGS(widget, GTK_CAN_DEFAULT);}
#endif