2011-05-11 13:48:21 +00:00
|
|
|
/* testfontchooserdialog.c
|
|
|
|
* Copyright (C) 2011 Alberto Ruiz <aruiz@gnome.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2011-09-11 22:29:08 +00:00
|
|
|
#include <string.h>
|
2011-05-11 13:48:21 +00:00
|
|
|
#include <gtk/gtk.h>
|
2011-09-05 12:10:08 +00:00
|
|
|
#include "prop-editor.h"
|
2011-05-11 13:48:21 +00:00
|
|
|
|
2011-09-11 22:29:08 +00:00
|
|
|
static gboolean
|
|
|
|
monospace_filter (const PangoFontFamily *family,
|
|
|
|
const PangoFontFace *face,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
return pango_font_family_is_monospace ((PangoFontFamily *) family);
|
|
|
|
}
|
|
|
|
|
2011-09-11 22:13:26 +00:00
|
|
|
static void
|
|
|
|
notify_font_cb (GtkFontChooser *fontchooser, GParamSpec *pspec, gpointer data)
|
|
|
|
{
|
|
|
|
PangoFontFamily *family;
|
|
|
|
PangoFontFace *face;
|
|
|
|
|
|
|
|
g_debug ("Changed font name %s", gtk_font_chooser_get_font (fontchooser));
|
|
|
|
|
2011-09-11 22:17:58 +00:00
|
|
|
family = gtk_font_chooser_get_font_family (fontchooser);
|
|
|
|
face = gtk_font_chooser_get_font_face (fontchooser);
|
2011-09-11 22:13:26 +00:00
|
|
|
if (family)
|
|
|
|
{
|
|
|
|
g_debug (" Family: %s is-monospace:%s",
|
|
|
|
pango_font_family_get_name (family),
|
|
|
|
pango_font_family_is_monospace (family) ? "true" : "false");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_debug (" No font family!");
|
|
|
|
|
|
|
|
if (face)
|
|
|
|
g_debug (" Face description: %s", pango_font_face_get_face_name (face));
|
|
|
|
else
|
|
|
|
g_debug (" No font face!");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
notify_preview_text_cb (GObject *fontchooser, GParamSpec *pspec, gpointer data)
|
|
|
|
{
|
|
|
|
g_debug ("Changed preview text %s", gtk_font_chooser_get_preview_text (GTK_FONT_CHOOSER (fontchooser)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
font_activated_cb (GtkFontChooser *chooser, const gchar *font_name, gpointer data)
|
|
|
|
{
|
|
|
|
g_debug ("font-activated: %s", font_name);
|
|
|
|
}
|
|
|
|
|
2011-05-11 13:48:21 +00:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
2011-07-27 23:22:22 +00:00
|
|
|
GtkWidget *window;
|
2011-09-05 12:10:08 +00:00
|
|
|
GtkWidget *font_button;
|
2011-05-11 13:48:21 +00:00
|
|
|
|
|
|
|
gtk_init (&argc, &argv);
|
|
|
|
|
2011-07-27 23:22:22 +00:00
|
|
|
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
2011-09-05 12:10:08 +00:00
|
|
|
font_button = gtk_font_button_new ();
|
|
|
|
gtk_container_add (GTK_CONTAINER (window), font_button);
|
2011-07-27 23:22:22 +00:00
|
|
|
gtk_widget_show_all (window);
|
2011-05-11 13:48:21 +00:00
|
|
|
|
2011-09-11 22:13:26 +00:00
|
|
|
g_signal_connect (font_button, "notify::font",
|
|
|
|
G_CALLBACK (notify_font_cb), NULL);
|
|
|
|
g_signal_connect (font_button, "notify::preview-text",
|
|
|
|
G_CALLBACK (notify_preview_text_cb), NULL);
|
|
|
|
g_signal_connect (font_button, "font-activated",
|
|
|
|
G_CALLBACK (font_activated_cb), NULL);
|
|
|
|
|
2011-09-11 22:29:08 +00:00
|
|
|
if (argc >= 2 && strcmp (argv[1], "--monospace") == 0)
|
|
|
|
{
|
|
|
|
gtk_font_chooser_set_filter_func (GTK_FONT_CHOOSER (font_button),
|
|
|
|
monospace_filter, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2011-09-05 12:10:08 +00:00
|
|
|
g_signal_connect (window, "delete-event",
|
|
|
|
G_CALLBACK (gtk_main_quit), NULL);
|
|
|
|
|
|
|
|
create_prop_editor (G_OBJECT (font_button), 0);
|
|
|
|
|
2011-07-27 23:22:22 +00:00
|
|
|
gtk_main ();
|
2011-08-09 00:02:55 +00:00
|
|
|
|
2011-05-11 13:48:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|