]> Pileus Git - ~andy/gtk/blob - tests/testnoscreen.c
stylecontext: Do invalidation on first resize container
[~andy/gtk] / tests / testnoscreen.c
1 /* testnoscreen.c
2  * Copyright (C) 2011 Red Hat, Inc.
3  * Authors: Matthias Clasen
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
19 #include <gtk/gtk.h>
20
21 /* Very limited test to ensure that creating widgets works
22  * before opening a display connection
23  */
24 int main (int argc, char *argv[])
25 {
26   GtkWidget *window;
27   GtkWidget *button;
28   GdkDisplay *display;
29
30   gtk_parse_args (&argc, &argv);
31
32   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
33   button = gtk_button_new ();
34   gtk_container_add (GTK_CONTAINER (window), button);
35
36   display = gdk_display_open (NULL);
37
38   gtk_window_set_screen (GTK_WINDOW (window), gdk_display_get_default_screen (display));
39
40   gtk_widget_show_all (window);
41
42   gtk_main ();
43
44   return 0;
45 }