2007-12-04 Emmanuele Bassi <ebassi@openedhand.com>
[clutter-gtk] / examples / gtk-clutter-events.c
1 #include <gtk/gtk.h>
2 #include <clutter/clutter.h>
3
4 #include <clutter-gtk/clutter-gtk.h>
5
6 typedef struct {
7
8   GtkWidget    *window;
9   GtkWidget    *popup;
10   GtkWidget    *gtk_entry;
11
12   ClutterActor *stage;
13   ClutterActor *hand;
14   ClutterActor *clutter_entry;
15
16 } EventApp;
17
18 static void
19 on_gtk_entry_changed (GtkEditable *editable, EventApp *app)
20 {
21   const gchar *text = gtk_entry_get_text (GTK_ENTRY (editable));
22
23   clutter_entry_set_text (CLUTTER_ENTRY (app->clutter_entry), text);
24 }
25
26 static void
27 on_x_changed (GtkSpinButton *button, EventApp *app)
28 {
29   clutter_actor_set_rotation (app->hand, CLUTTER_X_AXIS,
30                               gtk_spin_button_get_value (button),
31                               0,
32                               clutter_actor_get_height (app->hand) / 2,
33                               0);
34 }
35
36 static void
37 on_y_changed (GtkSpinButton *button, EventApp *app)
38 {
39   clutter_actor_set_rotation (app->hand, CLUTTER_Y_AXIS,
40                               gtk_spin_button_get_value (button),
41                               clutter_actor_get_width (app->hand) / 2,
42                               0,
43                               0);
44 }
45
46 static void
47 on_z_changed (GtkSpinButton *button, EventApp *app)
48 {
49   clutter_actor_set_rotation (app->hand, CLUTTER_Z_AXIS,
50                               gtk_spin_button_get_value (button),
51                               clutter_actor_get_width (app->hand) / 2,
52                               clutter_actor_get_height (app->hand) / 2,
53                               0);
54 }
55
56 static void
57 on_opacity_changed (GtkSpinButton *button, EventApp *app)
58 {
59   clutter_actor_set_opacity (app->hand, gtk_spin_button_get_value (button)); 
60 }
61
62 /* Set the clutter colors form the current gtk theme */
63 static void
64 create_colors (EventApp *app, ClutterColor *stage, ClutterColor *text)
65 {
66   GtkStyle *style = gtk_widget_get_style (app->window);
67   GdkColor color;
68
69   /* Set the stage color to base[NORMAL] */
70   color = style->bg[GTK_STATE_NORMAL];
71   stage->red = (guint8) ((color.red/65535.0) * 255);
72   stage->green = (guint8) ((color.green/65535.0) * 255);
73   stage->blue  = (guint8) ((color.blue/65535.0) * 255);
74   
75   /* Now the text color */
76   color = style->text[GTK_STATE_NORMAL];
77   text->red =(guint8) ((color.red/65535.0) * 255);
78   text->green = (guint8) ((color.green/65535.0) * 255);
79   text->blue = (guint8) ((color.blue/65535.0) * 255);
80 }
81   
82 gint
83 main (gint argc, gchar **argv)
84 {
85   EventApp      *app = g_new0 (EventApp, 1);
86   GtkWidget     *widget, *vbox, *hbox, *button, *label, *box;
87   ClutterActor  *actor;
88   GdkPixbuf     *pixbuf = NULL;
89   guint          width, height;
90   ClutterColor   stage_color = {255, 255, 255, 255};
91   ClutterColor   text_color = {0, 0, 0, 255};
92
93   clutter_init (&argc, &argv);
94   
95   gtk_init (&argc, &argv);
96
97   /* Create the inital gtk window and widgets, just like normal */
98   widget = gtk_window_new (GTK_WINDOW_TOPLEVEL);
99   app->window = widget;
100   gtk_window_set_title (GTK_WINDOW (widget), "Gtk-Clutter Interaction demo");
101   gtk_window_set_default_size (GTK_WINDOW (widget), 800, 600);
102   gtk_window_set_resizable (GTK_WINDOW (widget), FALSE);
103   gtk_container_set_border_width (GTK_CONTAINER (widget), 12);
104   g_signal_connect (widget, "destroy", G_CALLBACK (gtk_main_quit), NULL);
105  
106   /* Create our layout box */
107   vbox = gtk_vbox_new (FALSE, 12);
108   gtk_container_add (GTK_CONTAINER (app->window), vbox);
109
110   widget = gtk_entry_new ();
111   app->gtk_entry = widget;
112   gtk_entry_set_text (GTK_ENTRY (widget), "Enter some text");
113   gtk_box_pack_start (GTK_BOX (vbox), widget, FALSE, FALSE, 0);
114   g_signal_connect (widget, "changed", G_CALLBACK (on_gtk_entry_changed), app);
115
116   hbox = gtk_hbox_new (FALSE, 12);
117   gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 0);
118   
119   /* Set up clutter & create our stage */
120   create_colors (app, &stage_color, &text_color);
121   widget = gtk_clutter_new ();
122   gtk_box_pack_start (GTK_BOX (hbox), widget, TRUE, TRUE, 0);
123   app->stage = gtk_clutter_get_stage (GTK_CLUTTER (widget));
124   clutter_stage_set_color (CLUTTER_STAGE (app->stage), &stage_color);
125
126   /* Create the main texture that the spin buttons manipulate */
127   pixbuf = gdk_pixbuf_new_from_file ("redhand.png", NULL);
128   if (pixbuf == NULL)
129     g_error ("Unable to load pixbuf\n");
130
131   actor = clutter_texture_new_from_pixbuf (pixbuf);
132   app->hand = actor;
133   clutter_group_add (CLUTTER_GROUP (app->stage), actor);
134   clutter_actor_get_size (actor, &width, &height);
135   clutter_actor_set_position (actor,
136                               (CLUTTER_STAGE_WIDTH ()/2) - (width/2),
137                               (CLUTTER_STAGE_HEIGHT ()/2) - (height/2));
138
139   /* Setup the clutter entry */
140   actor = clutter_entry_new_full ("Sans 10", "", &text_color);
141   app->clutter_entry = actor;
142   clutter_group_add (CLUTTER_GROUP (app->stage), actor);
143   clutter_actor_set_position (actor, 0, 0);
144   clutter_actor_set_size (actor, 500, 20);
145
146   /* Create our adjustment widgets */
147   vbox = gtk_vbox_new (FALSE, 6);
148   gtk_box_pack_start (GTK_BOX (hbox), vbox, FALSE, FALSE, 0);
149
150   box = gtk_hbox_new (TRUE, 6);
151   gtk_box_pack_start (GTK_BOX (vbox), box, FALSE, TRUE, 0);
152   label = gtk_label_new ("Rotate x-axis");
153   gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0);
154   button = gtk_spin_button_new_with_range (0, 360, 1);
155   gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0);
156   g_signal_connect (button, "value-changed", G_CALLBACK (on_x_changed), app);
157   
158   box = gtk_hbox_new (TRUE, 6);
159   gtk_box_pack_start (GTK_BOX (vbox), box, FALSE, TRUE, 0);
160   label = gtk_label_new ("Rotate y-axis");
161   gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0);
162   button = gtk_spin_button_new_with_range (0, 360, 1);
163   gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0);
164   g_signal_connect (button, "value-changed", G_CALLBACK (on_y_changed), app);
165
166   box = gtk_hbox_new (TRUE, 6);
167   gtk_box_pack_start (GTK_BOX (vbox), box, FALSE, TRUE, 0);
168   label = gtk_label_new ("Rotate z-axis");
169   gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0);
170   button = gtk_spin_button_new_with_range (0, 360, 1);
171   gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0);
172   g_signal_connect (button, "value-changed", G_CALLBACK (on_z_changed), app);
173
174   box = gtk_hbox_new (TRUE, 6);
175   gtk_box_pack_start (GTK_BOX (vbox), box, FALSE, TRUE, 0);
176   label = gtk_label_new ("Adjust opacity");
177   gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0);
178   button = gtk_spin_button_new_with_range (0, 255, 1);
179   gtk_spin_button_set_value (GTK_SPIN_BUTTON (button), 255);
180   gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0);
181   g_signal_connect (button, "value-changed", G_CALLBACK (on_opacity_changed), app);
182
183   clutter_actor_show_all (app->stage);
184   gtk_widget_show_all (app->window);
185
186   gtk_main ();
187   
188   return 0;
189 }