]> Pileus Git - ~andy/gtk/blob - tests/testfontselection.c
GtkFontChooser: Add a property to control whether the preview entry is shown or not
[~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 static void
37 notify_show_preview_entry_cb (GObject *fontsel, GParamSpec *pspec, gpointer data)
38 {
39   g_debug ("Changed show preview_entry %d",
40            gtk_font_selection_get_show_preview_entry (GTK_FONT_SELECTION (fontsel)));
41 }
42
43 int
44 main (int argc, char *argv[])
45 {
46   GtkWidget *window;
47   GtkWidget *hbox;
48   GtkWidget *fontsel;
49   
50   gtk_init (NULL, NULL);
51     
52   fontsel = gtk_font_selection_new ();
53
54   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
55   gtk_widget_set_size_request (window, 600, 600);
56   hbox = gtk_hbox_new (FALSE, 6);
57   gtk_container_add (GTK_CONTAINER (window), hbox);
58
59 #ifndef GTK_DISABLE_DEPRECATED
60   g_object_ref (gtk_font_selection_get_size_list (GTK_FONT_SELECTION (fontsel)));
61   g_object_ref (gtk_font_selection_get_family_list (GTK_FONT_SELECTION (fontsel)));
62   g_object_ref (gtk_font_selection_get_face_list (GTK_FONT_SELECTION (fontsel)));
63
64   gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_size_list (GTK_FONT_SELECTION (fontsel)));
65   gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_family_list (GTK_FONT_SELECTION (fontsel)));
66   gtk_container_add (GTK_CONTAINER (hbox), gtk_font_selection_get_face_list (GTK_FONT_SELECTION (fontsel)));
67 #endif 
68
69   gtk_container_add (GTK_CONTAINER (hbox), fontsel);
70
71   gtk_widget_show_all (window);
72
73   g_signal_connect (G_OBJECT (window), "delete-event",          G_CALLBACK(gtk_main_quit), NULL);
74   g_signal_connect (G_OBJECT (fontsel), "notify::font-name",    G_CALLBACK(notify_font_name_cb), NULL);
75   g_signal_connect (G_OBJECT (fontsel), "notify::preview-text", G_CALLBACK(notify_preview_text_cb), NULL);
76   g_signal_connect (G_OBJECT (fontsel), "notify::show-preview-entry",
77                     G_CALLBACK(notify_show_preview_entry_cb), NULL);
78
79   gtk_font_selection_set_font_name (GTK_FONT_SELECTION (fontsel), "Bitstream Vera Sans 45");
80   gtk_font_selection_set_preview_text (GTK_FONT_SELECTION (fontsel), "[user@host ~]$ ");
81
82   gtk_font_selection_set_show_preview_entry (GTK_FONT_SELECTION (fontsel), FALSE);
83
84   gtk_main ();
85
86   gtk_widget_destroy (window);
87
88   return 0;
89 }