3
3
4
4
typedef struct {
5
5
wbcffi_module * waybar_module ;
6
- GtkBox * container ;
7
6
GtkButton * button ;
8
7
} ExampleMod ;
9
8
@@ -30,24 +29,22 @@ void* wbcffi_init(const wbcffi_init_info* init_info, const wbcffi_config_entry*
30
29
ExampleMod * inst = malloc (sizeof (ExampleMod ));
31
30
inst -> waybar_module = init_info -> obj ;
32
31
33
- GtkContainer * root = init_info -> get_root_widget (init_info -> obj );
34
-
35
- // Add a container for displaying the next widgets
36
- inst -> container = GTK_BOX (gtk_box_new (GTK_ORIENTATION_HORIZONTAL , 5 ));
37
- gtk_container_add (GTK_CONTAINER (root ), GTK_WIDGET (inst -> container ));
32
+ GtkWidget * root = init_info -> get_root_widget (init_info -> obj );
33
+ gtk_box_set_spacing (GTK_BOX (root ), 5 );
34
+ gtk_orientable_set_orientation (GTK_ORIENTABLE (root ), GTK_ORIENTATION_HORIZONTAL );
38
35
39
36
// Add a label
40
37
GtkLabel * label = GTK_LABEL (gtk_label_new ("[Example C FFI Module:" ));
41
- gtk_container_add ( GTK_CONTAINER ( inst -> container ), GTK_WIDGET (label ));
38
+ gtk_box_append ( GTK_BOX ( root ), GTK_WIDGET (label ));
42
39
43
40
// Add a button
44
41
inst -> button = GTK_BUTTON (gtk_button_new_with_label ("click me !" ));
45
42
g_signal_connect (inst -> button , "clicked" , G_CALLBACK (onclicked ), NULL );
46
- gtk_container_add ( GTK_CONTAINER ( inst -> container ), GTK_WIDGET (inst -> button ));
43
+ gtk_box_append ( GTK_BOX ( root ), GTK_WIDGET (inst -> button ));
47
44
48
45
// Add a label
49
46
label = GTK_LABEL (gtk_label_new ("]" ));
50
- gtk_container_add ( GTK_CONTAINER ( inst -> container ), GTK_WIDGET (label ));
47
+ gtk_box_append ( GTK_BOX ( root ), GTK_WIDGET (label ));
51
48
52
49
// Return instance object
53
50
printf ("cffi_example inst=%p: init success ! (%d total instances)\n" , inst , ++ instance_count );
@@ -67,4 +64,4 @@ void wbcffi_refresh(void* instance, int signal) {
67
64
68
65
void wbcffi_doaction (void * instance , const char * name ) {
69
66
printf ("cffi_example inst=%p: doAction(%s)\n" , instance , name );
70
- }
67
+ }
0 commit comments