Make sure that all timeouts in HildonBanner are removed
[hildon] / examples / hildon-finger-example.c
1 /*
2  * This file is a part of hildon examples
3  *
4  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
5  *
6  * Author: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #include                                        <stdio.h>
26 #include                                        <stdlib.h>
27 #include                                        <glib.h>
28 #include                                        <gtk/gtk.h>
29 #include                                        <hildon/hildon.h>
30
31 gboolean
32 on_button_press                                 (GtkWidget *widget, 
33                                                  GdkEventButton *event);
34
35 gboolean
36 on_button_press                                 (GtkWidget *widget, 
37                                                  GdkEventButton *event)
38 {
39     HildonNote *note;
40     if (hildon_helper_event_button_is_finger (event)) 
41         note = HILDON_NOTE (hildon_note_new_information (NULL, "You clicked with finger!"));
42     else
43         note = HILDON_NOTE (hildon_note_new_information (NULL, "You clicked with stylus!"));
44
45     gtk_dialog_run (GTK_DIALOG (note));
46     gtk_object_destroy (GTK_OBJECT (note));
47
48     return TRUE;
49 }
50
51 int
52 main                                            (int argc,
53                                                  char **argv)
54 {
55     hildon_gtk_init (&argc, &argv);
56
57     HildonProgram *program = hildon_program_get_instance ();
58     GtkDrawingArea *area = GTK_DRAWING_AREA (gtk_drawing_area_new ());
59     gtk_widget_set_size_request (GTK_WIDGET (area), 320, 240);
60
61     gtk_widget_set_events (GTK_WIDGET (area), 
62                            GDK_BUTTON_PRESS_MASK);
63
64     gtk_widget_set_extension_events (GTK_WIDGET (area), GDK_EXTENSION_EVENTS_ALL);
65  
66     GtkWidget *window = hildon_window_new ();
67     hildon_program_add_window (program, HILDON_WINDOW (window));    
68
69     gtk_window_set_title (GTK_WINDOW (window), "world");
70     g_set_application_name ("hello");
71
72     gtk_container_set_border_width (GTK_CONTAINER (window), 6);
73     
74     g_signal_connect (G_OBJECT (window), "delete-event", G_CALLBACK (gtk_main_quit), NULL);
75     g_signal_connect (G_OBJECT (area), "button-press-event", G_CALLBACK (on_button_press), NULL);
76     gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (area));
77     gtk_widget_show_all (GTK_WIDGET (window));
78     
79     gtk_main ();
80     return 0;
81 }
82
83