]> Pileus Git - ~andy/gtk/blob - tests/testfontselection.c
Merge branch 'bgo593793-filechooser-recent-folders-master'
[~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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include "config.h"
21
22 #undef GTK_DISABLE_DEPRECATED
23
24 #include <gtk/gtk.h>
25
26 static void
27 notify_font_name_cb (GObject *fontsel, GParamSpec *pspec, gpointer data)
28 {
29   g_debug ("Changed font name %s", gtk_font_selection_get_font_name (GTK_FONT_SELECTION (fontsel)));
30 }
31
32 static void
33 notify_preview_text_cb (GObject *fontsel, GParamSpec *pspec, gpointer data)
34 {
35   g_debug ("Changed preview text %s", gtk_font_selection_get_preview_text (GTK_FONT_SELECTION (fontsel)));
36 }
37
38 int
39 main (int argc, char *argv[])
40 {
41   GtkWidget *window;
42   GtkWidget *hbox;
43   GtkWidget *fontsel;
44   
45   gtk_init (NULL, NULL);
46     
47   fontsel = gtk_font_selection_new ();
48
49   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
50   gtk_widget_set_size_request (window, 600, 600);
51   hbox = gtk_hbox_new (FALSE, 6);
52   gtk_container_add (GTK_CONTAINER (window), hbox);
53
54 #ifndef GTK_DISABLE_DEPRECATED
55   g_object_ref (gtk_font_selection_get_size_list (GTK_FONT_SELECTION (fontsel)));
56   g_object_ref (gtk_font_selection_get_family_list (GTK_FONT_SELECTION (fontsel)));
57   g_object_ref (gtk_font_selection_get_face_list (GTK_FONT_SELECTION (fontsel)));
58
59   gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_size_list (GTK_FONT_SELECTION (fontsel)));
60   gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_family_list (GTK_FONT_SELECTION (fontsel)));
61   gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_face_list (GTK_FONT_SELECTION (fontsel)));
62 #endif 
63
64   gtk_container_add (GTK_CONTAINER (hbox), fontsel);
65
66   gtk_widget_show_all (window);
67
68   g_signal_connect (G_OBJECT (window), "delete-event",          G_CALLBACK(gtk_main_quit), NULL);
69   g_signal_connect (G_OBJECT (fontsel), "notify::font-name",    G_CALLBACK(notify_font_name_cb), NULL);
70   g_signal_connect (G_OBJECT (fontsel), "notify::preview-text", G_CALLBACK(notify_preview_text_cb), NULL);
71
72   gtk_font_selection_set_font_name (GTK_FONT_SELECTION (fontsel), "Bitstream Vera Sans 45");
73   gtk_font_selection_set_preview_text (GTK_FONT_SELECTION (fontsel), "[user@host ~]$ ");
74
75   gtk_main ();
76
77   gtk_widget_destroy (window);
78
79   return 0;
80 }