]> Pileus Git - ~andy/gtk/blob - tests/testinput.c
Initial revision
[~andy/gtk] / tests / testinput.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 #include "gtk.h"
20
21 /* Backing pixmap for drawing area */
22
23 static GdkPixmap *pixmap = NULL;
24
25 /* Information about cursor */
26
27 static gint need_cursor = FALSE;
28 static gint cursor_proximity = TRUE;
29 static gdouble cursor_x;
30 static gdouble cursor_y;
31
32 /* Unique ID of current device */
33 static guint32 current_device = GDK_CORE_POINTER;
34
35 /* Check to see if we need to draw a cursor for current device */
36 static void
37 check_cursor ()
38 {
39   GList *tmp_list;
40
41   /* gdk_input_list_devices returns an internal list, so we shouldn't
42      free it afterwards */
43   tmp_list = gdk_input_list_devices();
44
45   while (tmp_list)
46     {
47       GdkDeviceInfo *info = (GdkDeviceInfo *)tmp_list->data;
48
49       if (info->deviceid == current_device)
50         {
51           need_cursor = !info->has_cursor;
52           break;
53         }
54
55       tmp_list = tmp_list->next;
56     }
57 }
58
59 /* Erase the old cursor, and/or draw a new one, if necessary */
60 static void
61 update_cursor (GtkWidget *widget,  gdouble x, gdouble y)
62 {
63   static gint cursor_present = 0;
64   gint state = need_cursor && cursor_proximity;
65
66   if (pixmap != NULL)
67     {
68       if (cursor_present && (cursor_present != state ||
69                              x != cursor_x || y != cursor_y))
70         {
71           gdk_draw_pixmap(widget->window,
72                           widget->style->fg_gc[GTK_WIDGET_STATE (widget)],
73                           pixmap,
74                           cursor_x - 5, cursor_y - 5,
75                           cursor_x - 5, cursor_y - 5,
76                           10, 10);
77         }
78
79       cursor_present = state;
80       cursor_x = x;
81       cursor_y = y;
82
83       if (cursor_present)
84         {
85           gdk_draw_rectangle (widget->window,
86                               widget->style->black_gc,
87                               TRUE,
88                               cursor_x - 5, cursor_y -5,
89                               10, 10);
90         }
91     }
92 }
93
94 /* Create a new backing pixmap of the appropriate size */
95 static gint
96 configure_event (GtkWidget *widget, GdkEventConfigure *event)
97 {
98   if (pixmap)
99     {
100       gdk_pixmap_destroy(pixmap);
101     }
102   pixmap = gdk_pixmap_new(widget->window,
103                           widget->allocation.width,
104                           widget->allocation.height,
105                           -1);
106   gdk_draw_rectangle (pixmap,
107                       widget->style->white_gc,
108                       TRUE,
109                       0, 0,
110                       widget->allocation.width,
111                       widget->allocation.height);
112
113   return TRUE;
114 }
115
116 /* Refill the screen from the backing pixmap */
117 static gint
118 expose_event (GtkWidget *widget, GdkEventExpose *event)
119 {
120   gdk_draw_pixmap(widget->window,
121                   widget->style->fg_gc[GTK_WIDGET_STATE (widget)],
122                   pixmap,
123                   event->area.x, event->area.y,
124                   event->area.x, event->area.y,
125                   event->area.width, event->area.height);
126
127   return FALSE;
128 }
129
130 /* Draw a rectangle on the screen, size depending on pressure,
131    and color on the type of device */
132 static void
133 draw_brush (GtkWidget *widget, GdkInputSource source,
134             gdouble x, gdouble y, gdouble pressure)
135 {
136   GdkGC *gc;
137   GdkRectangle update_rect;
138
139   switch (source)
140     {
141     case GDK_SOURCE_MOUSE:
142       gc = widget->style->dark_gc[GTK_WIDGET_STATE (widget)];
143       break;
144     case GDK_SOURCE_PEN:
145       gc = widget->style->black_gc;
146       break;
147     case GDK_SOURCE_ERASER:
148       gc = widget->style->white_gc;
149       break;
150     default:
151       gc = widget->style->light_gc[GTK_WIDGET_STATE (widget)];
152     }
153
154   update_rect.x = x - 10 * pressure;
155   update_rect.y = y - 10 * pressure;
156   update_rect.width = 20 * pressure;
157   update_rect.height = 20 * pressure;
158   gdk_draw_rectangle (pixmap, gc, TRUE,
159                       update_rect.x, update_rect.y,
160                       update_rect.width, update_rect.height);
161   gtk_widget_draw (widget, &update_rect);
162 }
163
164 static guint32 motion_time;
165
166 static gint
167 button_press_event (GtkWidget *widget, GdkEventButton *event)
168 {
169   if (event->deviceid != current_device)
170     {
171       current_device = event->deviceid;
172       check_cursor ();
173     }
174
175   cursor_proximity = TRUE;
176
177   if (event->button == 1 && pixmap != NULL)
178     {
179       draw_brush (widget, event->source, event->x, event->y,
180                   event->pressure);
181       motion_time = event->time;
182     }
183
184   update_cursor (widget, event->x, event->y);
185
186   return TRUE;
187 }
188
189 static gint
190 motion_notify_event (GtkWidget *widget, GdkEventMotion *event)
191 {
192   GdkTimeCoord *coords;
193   int nevents;
194   int i;
195
196   if (event->deviceid != current_device)
197     {
198       current_device = event->deviceid;
199       check_cursor ();
200     }
201
202   cursor_proximity = TRUE;
203
204   if (event->state & GDK_BUTTON1_MASK && pixmap != NULL)
205     {
206       coords = gdk_input_motion_events (event->window, event->deviceid,
207                                         motion_time, event->time,
208                                         &nevents);
209       motion_time = event->time;
210       if (coords)
211         {
212           for (i=0; i<nevents; i++)
213             draw_brush (widget,  event->source, coords[i].x, coords[i].y,
214                         coords[i].pressure);
215           g_free (coords);
216         }
217       else
218         {
219           if (event->is_hint)
220             gdk_input_window_get_pointer (event->window, event->deviceid,
221                                           NULL, NULL, NULL, NULL, NULL, NULL);
222           draw_brush (widget,  event->source, event->x, event->y,
223                       event->pressure);
224         }
225     }
226   else
227     {
228       gdk_input_window_get_pointer (event->window, event->deviceid,
229                                     &event->x, &event->y,
230                                     NULL, NULL, NULL, NULL);
231     }
232
233   update_cursor (widget, event->x, event->y);
234
235   return TRUE;
236 }
237
238 /* We track the next two events to know when we need to draw a
239    cursor */
240
241 static gint
242 proximity_out_event (GtkWidget *widget, GdkEventProximity *event)
243 {
244   cursor_proximity = FALSE;
245   update_cursor (widget, cursor_x, cursor_y);
246   return TRUE;
247 }
248
249 static gint
250 leave_notify_event (GtkWidget *widget, GdkEventCrossing *event)
251 {
252   cursor_proximity = FALSE;
253   update_cursor (widget, cursor_x, cursor_y);
254   return TRUE;
255 }
256
257 void
258 input_dialog_destroy (GtkWidget *w, gpointer data)
259 {
260   *((GtkWidget **)data) = NULL;
261 }
262
263 void
264 create_input_dialog ()
265 {
266   static GtkWidget *inputd = NULL;
267
268   if (!inputd)
269     {
270       inputd = gtk_input_dialog_new();
271
272       gtk_signal_connect (GTK_OBJECT(inputd), "destroy",
273                           (GtkSignalFunc)input_dialog_destroy, &inputd);
274       gtk_signal_connect_object (GTK_OBJECT(GTK_INPUT_DIALOG(inputd)->close_button),
275                           "clicked",
276                           (GtkSignalFunc)gtk_widget_hide,
277                           GTK_OBJECT(inputd));
278       gtk_widget_hide ( GTK_INPUT_DIALOG(inputd)->save_button);
279
280       gtk_signal_connect (GTK_OBJECT(inputd), "enable_device",
281                           (GtkSignalFunc)check_cursor, NULL);
282       gtk_widget_show (inputd);
283     }
284   else
285     {
286       if (!GTK_WIDGET_MAPPED(inputd))
287         gtk_widget_show(inputd);
288       else
289         gdk_window_raise(inputd->window);
290     }
291 }
292
293 void
294 quit ()
295 {
296   gtk_exit (0);
297 }
298
299 int
300 main (int argc, char *argv[])
301 {
302   GtkWidget *window;
303   GtkWidget *drawing_area;
304   GtkWidget *vbox;
305
306   GtkWidget *button;
307
308   gtk_init (&argc, &argv);
309
310   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
311   gtk_widget_set_name (window, "Test Input");
312
313   vbox = gtk_vbox_new (FALSE, 0);
314   gtk_container_add (GTK_CONTAINER (window), vbox);
315   gtk_widget_show (vbox);
316
317   gtk_signal_connect (GTK_OBJECT (window), "destroy",
318                       GTK_SIGNAL_FUNC (quit), NULL);
319
320   /* Create the drawing area */
321
322   drawing_area = gtk_drawing_area_new ();
323   gtk_drawing_area_size (GTK_DRAWING_AREA (drawing_area), 200, 200);
324   gtk_box_pack_start (GTK_BOX (vbox), drawing_area, TRUE, TRUE, 0);
325
326   gtk_widget_show (drawing_area);
327
328   /* Signals used to handle backing pixmap */
329
330   gtk_signal_connect (GTK_OBJECT (drawing_area), "expose_event",
331                       (GtkSignalFunc) expose_event, NULL);
332   gtk_signal_connect (GTK_OBJECT(drawing_area),"configure_event",
333                       (GtkSignalFunc) configure_event, NULL);
334
335   /* Event signals */
336
337   gtk_signal_connect (GTK_OBJECT (drawing_area), "motion_notify_event",
338                       (GtkSignalFunc) motion_notify_event, NULL);
339   gtk_signal_connect (GTK_OBJECT (drawing_area), "button_press_event",
340                       (GtkSignalFunc) button_press_event, NULL);
341
342   gtk_signal_connect (GTK_OBJECT (drawing_area), "leave_notify_event",
343                       (GtkSignalFunc) leave_notify_event, NULL);
344   gtk_signal_connect (GTK_OBJECT (drawing_area), "proximity_out_event",
345                       (GtkSignalFunc) proximity_out_event, NULL);
346
347   gtk_widget_set_events (drawing_area, GDK_EXPOSURE_MASK
348                          | GDK_LEAVE_NOTIFY_MASK
349                          | GDK_BUTTON_PRESS_MASK
350                          | GDK_POINTER_MOTION_MASK
351                          | GDK_POINTER_MOTION_HINT_MASK
352                          | GDK_PROXIMITY_OUT_MASK);
353
354   /* The following call enables tracking and processing of extension
355      events for the drawing area */
356   gtk_widget_set_extension_events (drawing_area, GDK_EXTENSION_EVENTS_ALL);
357
358   /* .. And create some buttons */
359   button = gtk_button_new_with_label ("Input Dialog");
360   gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
361
362   gtk_signal_connect (GTK_OBJECT (button), "clicked",
363                       GTK_SIGNAL_FUNC (create_input_dialog), NULL);
364   gtk_widget_show (button);
365
366   button = gtk_button_new_with_label ("Quit");
367   gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
368
369   gtk_signal_connect_object (GTK_OBJECT (button), "clicked",
370                              GTK_SIGNAL_FUNC (gtk_widget_destroy),
371                              GTK_OBJECT (window));
372   gtk_widget_show (button);
373
374   gtk_widget_show (window);
375
376   gtk_main ();
377
378   return 0;
379 }