* doc/visual_index.xml Fix reference to HildonLoginDialog in documentation
[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: Victor Jaquez <vjaquez@igalia.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.h"
26
27 int
28 main                                            (int argc,
29                                                  char **args)
30 {
31     HildonDialog *d;
32     GtkWidget *label;
33
34     gtk_init (&argc, &args);
35
36     d = HILDON_DIALOG (hildon_dialog_new ());
37     label = gtk_label_new ("Hello, world!");
38
39     gtk_window_set_title (GTK_WINDOW (d), "Hi!");
40     gtk_dialog_add_button (GTK_DIALOG (d), GTK_STOCK_OK, GTK_RESPONSE_NONE);
41     gtk_container_add (GTK_CONTAINER (GTK_DIALOG(d)->vbox), label);
42
43     gtk_widget_show_all (GTK_WIDGET (d));
44
45     gtk_dialog_run (GTK_DIALOG (d));
46
47     return 0;
48 }