b5b13a64f5beb61c6749bb2da2f95f12c418f6d8
[hildon] / examples / hildon-banner-example.c
1 /*
2  * This file is a part of hildon examples
3  *
4  * Copyright (C) 2005, 2006, 2009 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                                        <hildon/hildon.h>
26
27 static gboolean
28 on_animation_idle                               (GtkWidget *banner)
29 {
30     gtk_widget_destroy (banner);
31     g_object_unref (banner);
32     return FALSE;
33 }
34
35 static gboolean
36 on_progress_idle                                (GtkWidget *banner)
37 {
38     gtk_widget_destroy (banner);
39     g_object_unref (banner);
40     return FALSE;
41 }
42
43 static gboolean
44 on_information_clicked                          (GtkWidget *widget)
45 {
46     GtkWidget* banner = hildon_banner_show_information (widget, NULL, "Information banner");
47     hildon_banner_set_timeout (HILDON_BANNER (banner), 9000);
48     return TRUE;
49 }
50
51 static gboolean
52 on_animation_clicked                            (GtkWidget *widget)
53 {
54     GtkWidget *banner = hildon_banner_show_animation (widget, NULL, "Animation banner");
55     g_object_ref (banner);
56     gdk_threads_add_timeout (5000, (GSourceFunc) on_animation_idle, banner);
57     return TRUE;
58 }
59
60 static gboolean
61 on_progress_clicked                             (GtkWidget *widget)
62 {
63     GtkWidget *banner = hildon_banner_show_progress (widget, NULL, "Progress banner");
64     g_object_ref (banner);
65     gdk_threads_add_timeout (5000, (GSourceFunc) on_progress_idle, banner);
66     return TRUE;
67 }
68
69 int
70 main                                            (int argc,
71                                                  char **argv)
72 {
73     HildonProgram *program;
74     GtkWidget *window, *vbox, *button1, *button2, *button3;
75
76     hildon_gtk_init (&argc, &argv);
77
78     window = hildon_window_new ();
79     program = hildon_program_get_instance ();
80     hildon_program_add_window (program, HILDON_WINDOW (window));
81
82     button1 = gtk_button_new_with_label ("Information");
83     g_signal_connect (button1, "clicked", G_CALLBACK (on_information_clicked), NULL);
84
85     button2 = gtk_button_new_with_label ("Animation");
86     g_signal_connect (button2, "clicked", G_CALLBACK (on_animation_clicked), NULL);
87
88     button3 = gtk_button_new_with_label ("Progress");
89     g_signal_connect (button3, "clicked", G_CALLBACK (on_progress_clicked), NULL);
90
91     vbox = gtk_vbox_new (6, FALSE);
92     gtk_box_pack_start (GTK_BOX (vbox), button1, TRUE, TRUE, 0);
93     gtk_box_pack_start (GTK_BOX (vbox), button2, TRUE, TRUE, 0);
94     gtk_box_pack_start (GTK_BOX (vbox), button3, TRUE, TRUE, 0);
95
96     gtk_container_set_border_width (GTK_CONTAINER (window), 6);
97     gtk_container_add (GTK_CONTAINER (window), vbox);
98
99     gtk_widget_show_all (window);
100
101     g_signal_connect (window, "destroy", G_CALLBACK (gtk_main_quit), NULL);
102
103     gtk_main ();
104     return 0;
105 }