]> Pileus Git - ~andy/gtk/blob - tests/simple.c
Remove property user_data which doesn't exist anymore
[~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   GtkWidget *button;
35
36   /* FIXME: This is not allowable - what is this supposed to be? */
37   /*  gdk_progclass = g_strdup ("XTerm"); */
38   gtk_init (&argc, &argv);
39   
40   window = g_object_connect (g_object_new (gtk_window_get_type (),
41                                              "type", GTK_WINDOW_TOPLEVEL,
42                                              "title", "hello world",
43                                              "resizable", FALSE,
44                                              "border_width", 10,
45                                              NULL),
46                              "signal::destroy", gtk_main_quit, NULL,
47                              NULL);
48   button = g_object_connect (g_object_new (gtk_button_get_type (),
49                                              "GtkButton::label", "hello world",
50                                              "GtkWidget::parent", window,
51                                              "GtkWidget::visible", TRUE,
52                                              NULL),
53                              "signal::clicked", hello, NULL,
54                              NULL);
55   gtk_widget_show (window);
56
57   gtk_main ();
58
59   return 0;
60 }