]> Pileus Git - ~andy/gtk/blob - tests/testfontselection.c
GtkFontChooser: implement gtk_font_selection_set/get_preview_text
[~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 #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 //  g_object_ref (gtk_font_selection_get_size_list (GTK_FONT_SELECTION (fontsel)));
53 //  g_object_ref (gtk_font_selection_get_family_list (GTK_FONT_SELECTION (fontsel)));
54 //  g_object_ref (gtk_font_selection_get_face_list (GTK_FONT_SELECTION (fontsel)));
55
56 //  gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_size_list (GTK_FONT_SELECTION (fontsel)));
57 //  gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_family_list (GTK_FONT_SELECTION (fontsel)));
58 //  gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_face_list (GTK_FONT_SELECTION (fontsel)));
59   gtk_container_add (GTK_CONTAINER (hbox), fontsel);
60
61   gtk_widget_show_all (window);
62
63   g_signal_connect (G_OBJECT (window), "delete-event",          G_CALLBACK(gtk_main_quit), NULL);
64   g_signal_connect (G_OBJECT (fontsel), "notify::font-name",    G_CALLBACK(notify_font_name_cb), NULL);
65   g_signal_connect (G_OBJECT (fontsel), "notify::preview-text", G_CALLBACK(notify_preview_text_cb), NULL);
66
67   gtk_font_selection_set_font_name (GTK_FONT_SELECTION (fontsel), "Bitstream Vera Sans 45");
68   gtk_font_selection_set_preview_text (GTK_FONT_SELECTION (fontsel), "Siete caballos vienen de bonanza");
69
70   gtk_main ();
71
72   gtk_widget_destroy (window);
73
74   return 0;
75 }