]> Pileus Git - ~andy/gtk/blob - tests/simple.c
Merge remote-tracking branch 'origin/master' into gdk-backend-wayland
[~andy/gtk] / tests / simple.c
1 /* simple.c
2  * Copyright (C) 1997  Red Hat, Inc
3  * Author: Elliot Lee
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20 #include "config.h"
21 #include <gtk/gtk.h>
22
23
24 void
25 hello (void)
26 {
27   g_print ("hello world\n");
28 }
29
30 int
31 main (int argc, char *argv[])
32 {
33   GtkWidget *window;
34
35   gtk_init (&argc, &argv);
36
37   window = g_object_connect (g_object_new (gtk_window_get_type (),
38                                            "type", GTK_WINDOW_TOPLEVEL,
39                                            "title", "hello world",
40                                            "resizable", FALSE,
41                                            "border_width", 10,
42                                            NULL),
43                              "signal::destroy", gtk_main_quit, NULL,
44                              NULL);
45   g_object_connect (g_object_new (gtk_button_get_type (),
46                                   "GtkButton::label", "hello world",
47                                   "GtkWidget::parent", window,
48                                   "GtkWidget::visible", TRUE,
49                                   NULL),
50                     "signal::clicked", hello, NULL,
51                     NULL);
52   gtk_widget_show (window);
53
54   gtk_main ();
55
56   return 0;
57 }