Make sure that all timeouts in HildonBanner are removed
[hildon] / examples / hildon-dialog-example.c
1 /*
2  * This file is a part of hildon examples
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * Author: Karl Lattimer <karl.lattimer@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 int
28 main                                            (int argc,
29                                                  char **argv)
30 {
31     HildonDialog *d, *d2;
32     GtkWidget *label, *label2;
33
34     hildon_gtk_init (&argc, &argv);
35
36     /* First dialog, using hildon_dialog_new() */
37
38     d = HILDON_DIALOG (hildon_dialog_new ());
39     label = gtk_label_new ("Hello, world!");
40
41     gtk_window_set_title (GTK_WINDOW (d), "Hi!");
42     hildon_dialog_add_button (HILDON_DIALOG (d), GTK_STOCK_OK, GTK_RESPONSE_NONE);
43     gtk_container_add (GTK_CONTAINER (GTK_DIALOG(d)->vbox), label);
44
45     gtk_widget_show_all (GTK_WIDGET (d));
46
47     gtk_dialog_run (GTK_DIALOG (d));
48
49     /* Second dialog, using hildon_dialog_new_with_buttons() */
50
51     d2 = HILDON_DIALOG (hildon_dialog_new_with_buttons ("Hi again!",
52                                                         GTK_WINDOW (d),
53                                                         GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
54                                                         GTK_STOCK_OK,
55                                                         GTK_RESPONSE_ACCEPT,
56                                                         GTK_STOCK_CANCEL,
57                                                         GTK_RESPONSE_REJECT,
58                                                         NULL));
59
60     label2 = gtk_label_new ("Hello, again!");
61
62     gtk_container_add (GTK_CONTAINER (GTK_DIALOG(d2)->vbox), label2);
63
64     gtk_widget_show_all (GTK_WIDGET (d2));
65
66     gtk_dialog_run (GTK_DIALOG (d2));
67
68     return 0;
69 }