2008-09-22 Claudio Saavedra <csaavedra@igalia.com>
[hildon] / examples / hildon-note-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_information_clicked                          (GtkWidget *widget)
33 {
34     HildonNote* note = HILDON_NOTE (hildon_note_new_information (NULL, 
35             "This is a really really really long text that should " 
36             "get wrapped but never truncated because truncating stuff "
37             "automatically is really really bad! Blah blah blah!"));
38
39     gtk_dialog_run (GTK_DIALOG (note));
40     gtk_object_destroy (GTK_OBJECT (note));
41     
42     return TRUE;
43 }
44
45 static gboolean
46 on_confirmation_clicked                         (GtkWidget *widget)
47 {
48     gint i;
49     HildonNote* note = HILDON_NOTE (hildon_note_new_confirmation (NULL, 
50             "Do you want to confirm?!"));
51
52     i = gtk_dialog_run (GTK_DIALOG (note));
53     gtk_object_destroy (GTK_OBJECT (note));
54     
55     if (i == GTK_RESPONSE_OK)
56         g_debug ("Button 'OK' pressed");
57     else
58         g_debug ("Button 'Cancel' pressed");
59
60     return TRUE;
61 }
62
63 static gboolean
64 on_progress_clicked                             (GtkWidget *widget)
65 {
66     GtkProgressBar *bar = GTK_PROGRESS_BAR (gtk_progress_bar_new ());
67     HildonNote *note = HILDON_NOTE (hildon_note_new_cancel_with_progress_bar (NULL, 
68                 "Do you want to foo bar?", bar));
69
70     gtk_dialog_run (GTK_DIALOG (note));
71     gtk_object_destroy (GTK_OBJECT (note));
72
73     return TRUE;
74 }
75
76 int
77 main                                            (int argc, 
78                                                  char **args)
79 {
80     gtk_init (&argc, &args);
81     
82     HildonProgram *program = hildon_program_get_instance ();
83
84     GtkWidget *window = hildon_window_new ();
85     hildon_program_add_window (program, HILDON_WINDOW (window));    
86
87     gtk_container_set_border_width (GTK_CONTAINER (window), 6);
88
89     GtkVBox *vbox = GTK_VBOX (gtk_vbox_new (6, FALSE));
90     GtkButton *button1 = GTK_BUTTON (gtk_button_new_with_label ("Information note"));
91     g_signal_connect (G_OBJECT (button1), "clicked", G_CALLBACK (on_information_clicked), NULL);
92
93     GtkButton *button2 = GTK_BUTTON (gtk_button_new_with_label ("Confirmation note"));
94     g_signal_connect (G_OBJECT (button2), "clicked", G_CALLBACK (on_confirmation_clicked), NULL);
95
96     GtkButton *button3 = GTK_BUTTON (gtk_button_new_with_label ("Progress note"));
97     g_signal_connect (G_OBJECT (button3), "clicked", G_CALLBACK (on_progress_clicked), NULL);
98
99     g_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (gtk_main_quit), NULL);
100
101     gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button1), TRUE, TRUE, 0);
102     gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button2), TRUE, TRUE, 0);
103     gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button3), TRUE, TRUE, 0);
104
105     gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (vbox));
106
107     gtk_widget_show_all (GTK_WIDGET (window));
108     
109     gtk_main ();
110
111     return 0;
112 }
113
114