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