]> Pileus Git - ~andy/gtk/blob - tests/testnoscreen.c
cce8a5a3af5410d647a4145cf9bdbbc104f481c0
[~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, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include <gtk/gtk.h>
22
23 /* Very limited test to ensure that creating widgets works
24  * before opening a display connection
25  */
26 int main (int argc, char *argv[])
27 {
28   GtkWidget *window;
29   GtkWidget *button;
30   GdkDisplay *display;
31
32   gtk_parse_args (&argc, &argv);
33
34   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
35   button = gtk_button_new ();
36   gtk_container_add (GTK_CONTAINER (window), button);
37
38   display = gdk_display_open (NULL);
39
40   gtk_window_set_screen (GTK_WINDOW (window), gdk_display_get_default_screen (display));
41
42   gtk_widget_show_all (window);
43
44   gtk_main ();
45
46   return 0;
47 }