]> Pileus Git - ~andy/gtk/blob - tests/simple.c
stylecontext: Do invalidation on first resize container
[~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, see <http://www.gnu.org/licenses/>.
17  */
18 #include "config.h"
19 #include <gtk/gtk.h>
20
21
22 void
23 hello (void)
24 {
25   g_print ("hello world\n");
26 }
27
28 int
29 main (int argc, char *argv[])
30 {
31   GtkWidget *window;
32
33   gtk_init (&argc, &argv);
34
35   window = g_object_connect (g_object_new (gtk_window_get_type (),
36                                            "type", GTK_WINDOW_TOPLEVEL,
37                                            "title", "hello world",
38                                            "resizable", FALSE,
39                                            "border_width", 10,
40                                            NULL),
41                              "signal::destroy", gtk_main_quit, NULL,
42                              NULL);
43   g_object_connect (g_object_new (gtk_button_get_type (),
44                                   "GtkButton::label", "hello world",
45                                   "GtkWidget::parent", window,
46                                   "GtkWidget::visible", TRUE,
47                                   NULL),
48                     "signal::clicked", hello, NULL,
49                     NULL);
50   gtk_widget_show (window);
51
52   gtk_main ();
53
54   return 0;
55 }