2008-09-22 Claudio Saavedra <csaavedra@igalia.com>
[hildon] / examples / hildon-banner-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.h"
30
31 static gboolean
32 on_animation_idle                               (GtkWidget *banner)
33 {
34     gtk_widget_destroy (banner);
35     return FALSE;
36 }
37
38 static gboolean
39 on_progress_idle                                (GtkWidget *banner)
40 {
41     gtk_widget_destroy (banner);
42     return FALSE;
43 }
44
45 static gboolean
46 on_information_clicked                          (GtkWidget *widget)
47 {
48     GtkWidget* banner = hildon_banner_show_information (widget, NULL, "Information banner"); 
49     hildon_banner_set_timeout (HILDON_BANNER (banner), 9000);
50     return TRUE;
51 }
52
53 static gboolean
54 on_animation_clicked                            (GtkWidget *widget)
55 {
56     GtkWidget *banner = hildon_banner_show_animation (widget, NULL, "Animation banner"); 
57     g_timeout_add (2000, (gpointer) on_animation_idle, banner);
58     return TRUE;
59 }
60
61 static gboolean
62 on_progress_clicked                             (GtkWidget *widget)
63 {
64     GtkWidget *banner = hildon_banner_show_progress (widget, NULL, "Progress banner"); 
65     g_timeout_add (2000, (gpointer) on_progress_idle, banner);
66     return TRUE;
67 }
68
69 int
70 main                                            (int argc, 
71                                                  char **args)
72 {
73     gtk_init (&argc, &args);
74     
75     HildonProgram *program = hildon_program_get_instance ();
76
77     GtkWidget *window = hildon_window_new ();
78     hildon_program_add_window (program, HILDON_WINDOW (window));    
79
80     gtk_container_set_border_width (GTK_CONTAINER (window), 6);
81
82     GtkVBox *vbox = GTK_VBOX (gtk_vbox_new (6, FALSE));
83     GtkButton *button1 = GTK_BUTTON (gtk_button_new_with_label ("Information"));
84     g_signal_connect (G_OBJECT (button1), "clicked", G_CALLBACK (on_information_clicked), NULL);
85
86     GtkButton *button2 = GTK_BUTTON (gtk_button_new_with_label ("Animation"));
87     g_signal_connect (G_OBJECT (button2), "clicked", G_CALLBACK (on_animation_clicked), NULL);
88
89     GtkButton *button3 = GTK_BUTTON (gtk_button_new_with_label ("Progress"));
90     g_signal_connect (G_OBJECT (button3), "clicked", G_CALLBACK (on_progress_clicked), NULL);
91
92     g_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (gtk_main_quit), NULL);
93
94     gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button1), TRUE, TRUE, 0);
95     gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button2), TRUE, TRUE, 0);
96     gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button3), TRUE, TRUE, 0);
97     gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (vbox));
98
99     gtk_widget_show_all (GTK_WIDGET (window));
100     
101     gtk_main ();
102     return 0;
103 }
104
105