* examples/hildon-bread-crumb-trail-example.c: * src/Makefile.am: * src/hildon-bread...
[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     HildonNote* note = HILDON_NOTE (hildon_note_new_confirmation (NULL, 
49             "Do you want to confirm?!"));
50
51     gtk_dialog_run (GTK_DIALOG (note));
52     gtk_object_destroy (GTK_OBJECT (note));
53     
54     return TRUE;
55 }
56
57 static gboolean
58 on_progress_clicked                             (GtkWidget *widget)
59 {
60     GtkProgressBar *bar = GTK_PROGRESS_BAR (gtk_progress_bar_new ());
61     HildonNote *note = HILDON_NOTE (hildon_note_new_cancel_with_progress_bar (NULL, 
62                 "Do you want to foo bar?", bar));
63
64     gtk_dialog_run (GTK_DIALOG (note));
65     gtk_object_destroy (GTK_OBJECT (note));
66
67     return TRUE;
68 }
69
70 int
71 main                                            (int argc, 
72                                                  char **args)
73 {
74     gtk_init (&argc, &args);
75     
76     HildonProgram *program = hildon_program_get_instance ();
77
78     GtkWidget *window = hildon_window_new ();
79     hildon_program_add_window (program, HILDON_WINDOW (window));    
80
81     gtk_container_set_border_width (GTK_CONTAINER (window), 6);
82
83     GtkVBox *vbox = GTK_VBOX (gtk_vbox_new (6, FALSE));
84     GtkButton *button1 = GTK_BUTTON (gtk_button_new_with_label ("Information note"));
85     g_signal_connect (G_OBJECT (button1), "clicked", G_CALLBACK (on_information_clicked), NULL);
86
87     GtkButton *button2 = GTK_BUTTON (gtk_button_new_with_label ("Confirmation note"));
88     g_signal_connect (G_OBJECT (button2), "clicked", G_CALLBACK (on_confirmation_clicked), NULL);
89
90     GtkButton *button3 = GTK_BUTTON (gtk_button_new_with_label ("Progress note"));
91     g_signal_connect (G_OBJECT (button3), "clicked", G_CALLBACK (on_progress_clicked), NULL);
92
93     g_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (gtk_main_quit), NULL);
94
95     gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button1), TRUE, TRUE, 0);
96     gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button2), TRUE, TRUE, 0);
97     gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button3), TRUE, TRUE, 0);
98
99     gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (vbox));
100
101     gtk_widget_show_all (GTK_WIDGET (window));
102     
103     gtk_main ();
104
105     return 0;
106 }
107
108