]> Pileus Git - ~andy/gtk/blob - tests/testfontselection.c
stylecontext: Do invalidation on first resize container
[~andy/gtk] / tests / testfontselection.c
1 /* testfontselection.c
2  * Copyright (C) 2011 Alberto Ruiz <aruiz@gnome.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include "config.h"
19
20 #define GDK_DISABLE_DEPRECATION_WARNINGS
21
22 #include <gtk/gtk.h>
23
24 static void
25 notify_font_name_cb (GObject *fontsel, GParamSpec *pspec, gpointer data)
26 {
27   g_debug ("Changed font name %s", gtk_font_selection_get_font_name (GTK_FONT_SELECTION (fontsel)));
28 }
29
30 static void
31 notify_preview_text_cb (GObject *fontsel, GParamSpec *pspec, gpointer data)
32 {
33   g_debug ("Changed preview text %s", gtk_font_selection_get_preview_text (GTK_FONT_SELECTION (fontsel)));
34 }
35
36 int
37 main (int argc, char *argv[])
38 {
39   GtkWidget *window;
40   GtkWidget *hbox;
41   GtkWidget *fontsel;
42   
43   gtk_init (NULL, NULL);
44     
45   fontsel = gtk_font_selection_new ();
46
47   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
48   gtk_widget_set_size_request (window, 600, 600);
49   hbox = gtk_hbox_new (FALSE, 6);
50   gtk_container_add (GTK_CONTAINER (window), hbox);
51
52 #ifndef GTK_DISABLE_DEPRECATED
53   g_object_ref (gtk_font_selection_get_size_list (GTK_FONT_SELECTION (fontsel)));
54   g_object_ref (gtk_font_selection_get_family_list (GTK_FONT_SELECTION (fontsel)));
55   g_object_ref (gtk_font_selection_get_face_list (GTK_FONT_SELECTION (fontsel)));
56
57   gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_size_list (GTK_FONT_SELECTION (fontsel)));
58   gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_family_list (GTK_FONT_SELECTION (fontsel)));
59   gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_face_list (GTK_FONT_SELECTION (fontsel)));
60 #endif 
61
62   gtk_container_add (GTK_CONTAINER (hbox), fontsel);
63
64   gtk_widget_show_all (window);
65
66   g_signal_connect (G_OBJECT (window), "delete-event",          G_CALLBACK(gtk_main_quit), NULL);
67   g_signal_connect (G_OBJECT (fontsel), "notify::font-name",    G_CALLBACK(notify_font_name_cb), NULL);
68   g_signal_connect (G_OBJECT (fontsel), "notify::preview-text", G_CALLBACK(notify_preview_text_cb), NULL);
69
70   gtk_font_selection_set_font_name (GTK_FONT_SELECTION (fontsel), "Bitstream Vera Sans 45");
71   gtk_font_selection_set_preview_text (GTK_FONT_SELECTION (fontsel), "[user@host ~]$ ");
72
73   gtk_main ();
74
75   gtk_widget_destroy (window);
76
77   return 0;
78 }