2003-07-01 19:52:07 +00:00
|
|
|
/*
|
2008-07-01 22:57:50 +00:00
|
|
|
* GTK - The GIMP Toolkit
|
2003-07-01 19:52:07 +00:00
|
|
|
* Copyright (C) 1998 David Abilleira Freijeiro <odaf@nexo.es>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Based on gnome-color-picker by Federico Mena <federico@nuclecu.unam.mx>
|
|
|
|
*
|
|
|
|
* 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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2003-07-01 19:52:07 +00:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 2003. See the AUTHORS
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
#include "gtkfontbutton.h"
|
|
|
|
|
|
|
|
#include "gtkmain.h"
|
2011-08-28 05:54:55 +00:00
|
|
|
#include "gtkbox.h"
|
2003-07-01 19:52:07 +00:00
|
|
|
#include "gtklabel.h"
|
2011-09-11 23:49:26 +00:00
|
|
|
#include "gtkfontchooser.h"
|
2011-07-27 23:22:22 +00:00
|
|
|
#include "gtkfontchooserdialog.h"
|
2003-07-01 19:52:07 +00:00
|
|
|
#include "gtkimage.h"
|
|
|
|
#include "gtkmarshalers.h"
|
2011-06-08 01:50:00 +00:00
|
|
|
#include "gtkseparator.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
#include "gtkprivate.h"
|
2003-07-01 19:52:07 +00:00
|
|
|
#include "gtkintl.h"
|
2014-10-02 04:05:43 +00:00
|
|
|
#include "gtkcssprovider.h"
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2011-09-05 12:10:20 +00:00
|
|
|
#include "gtkfontchooserutils.h"
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2003-09-30 22:48:10 +00:00
|
|
|
|
2011-04-11 01:47:43 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkfontbutton
|
2011-07-27 23:22:22 +00:00
|
|
|
* @Short_description: A button to launch a font chooser dialog
|
2011-04-11 01:47:43 +00:00
|
|
|
* @Title: GtkFontButton
|
2011-07-27 23:22:22 +00:00
|
|
|
* @See_also: #GtkFontChooserDialog, #GtkColorButton.
|
2011-04-11 01:47:43 +00:00
|
|
|
*
|
|
|
|
* The #GtkFontButton is a button which displays the currently selected
|
2011-07-27 23:22:22 +00:00
|
|
|
* font an allows to open a font chooser dialog to change the font.
|
2011-04-11 01:47:43 +00:00
|
|
|
* It is suitable widget for selecting a font in a preference dialog.
|
2015-10-30 21:09:59 +00:00
|
|
|
*
|
|
|
|
* # CSS nodes
|
|
|
|
*
|
2017-05-04 07:36:22 +00:00
|
|
|
* GtkFontButton has a single CSS node with name fontbutton.
|
2011-04-11 01:47:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
typedef struct
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
|
|
|
gchar *title;
|
2011-09-11 22:13:26 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
gchar *fontname;
|
2015-05-05 03:21:17 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
guint use_font : 1;
|
|
|
|
guint use_size : 1;
|
2011-09-05 12:10:20 +00:00
|
|
|
guint show_preview_entry : 1;
|
2015-05-05 03:21:17 +00:00
|
|
|
|
2017-01-19 19:15:43 +00:00
|
|
|
GtkWidget *button;
|
2003-07-01 19:52:07 +00:00
|
|
|
GtkWidget *font_dialog;
|
|
|
|
GtkWidget *font_label;
|
|
|
|
GtkWidget *size_label;
|
2013-03-30 08:35:54 +00:00
|
|
|
GtkWidget *font_size_box;
|
2011-09-05 12:10:20 +00:00
|
|
|
|
2011-09-11 22:13:26 +00:00
|
|
|
PangoFontDescription *font_desc;
|
|
|
|
PangoFontFamily *font_family;
|
|
|
|
PangoFontFace *font_face;
|
2015-05-05 03:21:17 +00:00
|
|
|
PangoFontMap *font_map;
|
2011-09-11 22:13:26 +00:00
|
|
|
gint font_size;
|
2018-01-03 04:52:24 +00:00
|
|
|
char *font_features;
|
2018-04-02 17:34:22 +00:00
|
|
|
PangoLanguage *language;
|
2011-09-11 22:13:26 +00:00
|
|
|
gchar *preview_text;
|
|
|
|
GtkFontFilterFunc font_filter;
|
|
|
|
gpointer font_filter_data;
|
|
|
|
GDestroyNotify font_filter_data_destroy;
|
2014-10-02 04:05:43 +00:00
|
|
|
GtkCssProvider *provider;
|
2017-12-21 15:51:04 +00:00
|
|
|
|
|
|
|
GtkFontChooserLevel level;
|
2018-06-18 11:11:06 +00:00
|
|
|
} GtkFontButtonPrivate;
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
/* Signals */
|
2015-05-05 03:21:17 +00:00
|
|
|
enum
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
|
|
|
FONT_SET,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_TITLE,
|
|
|
|
PROP_USE_FONT,
|
2017-12-21 16:58:20 +00:00
|
|
|
PROP_USE_SIZE
|
2003-07-01 19:52:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Prototypes */
|
|
|
|
static void gtk_font_button_finalize (GObject *object);
|
|
|
|
static void gtk_font_button_get_property (GObject *object,
|
|
|
|
guint param_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_font_button_set_property (GObject *object,
|
|
|
|
guint param_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
2017-01-19 19:15:43 +00:00
|
|
|
static void gtk_font_button_clicked (GtkButton *button,
|
|
|
|
gpointer user_data);
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
/* Dialog response functions */
|
2011-07-27 23:22:22 +00:00
|
|
|
static void response_cb (GtkDialog *dialog,
|
|
|
|
gint response_id,
|
2003-07-01 19:52:07 +00:00
|
|
|
gpointer data);
|
|
|
|
static void dialog_destroy (GtkWidget *widget,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
/* Auxiliary functions */
|
|
|
|
static void gtk_font_button_label_use_font (GtkFontButton *gfs);
|
|
|
|
static void gtk_font_button_update_font_info (GtkFontButton *gfs);
|
|
|
|
|
2017-12-21 16:10:44 +00:00
|
|
|
static void gtk_font_button_set_font_name (GtkFontButton *button,
|
|
|
|
const char *fontname);
|
|
|
|
static const char *gtk_font_button_get_font_name (GtkFontButton *button);
|
2017-12-21 15:51:04 +00:00
|
|
|
static void gtk_font_button_set_level (GtkFontButton *font_button,
|
|
|
|
GtkFontChooserLevel level);
|
2018-04-02 17:34:22 +00:00
|
|
|
static void gtk_font_button_set_language (GtkFontButton *button,
|
|
|
|
const char *language);
|
2017-12-21 16:10:44 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
static guint font_button_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
static PangoFontFamily * gtk_font_button_font_chooser_get_font_family (GtkFontChooser *chooser);
|
|
|
|
static PangoFontFace * gtk_font_button_font_chooser_get_font_face (GtkFontChooser *chooser);
|
|
|
|
static int gtk_font_button_font_chooser_get_font_size (GtkFontChooser *chooser);
|
|
|
|
static void gtk_font_button_font_chooser_set_filter_func (GtkFontChooser *chooser,
|
|
|
|
GtkFontFilterFunc filter_func,
|
|
|
|
gpointer filter_data,
|
|
|
|
GDestroyNotify data_destroy);
|
|
|
|
static void gtk_font_button_font_chooser_set_font_map (GtkFontChooser *chooser,
|
|
|
|
PangoFontMap *font_map);
|
|
|
|
static PangoFontMap * gtk_font_button_font_chooser_get_font_map (GtkFontChooser *chooser);
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_font_chooser_iface_init (GtkFontChooserIface *iface)
|
|
|
|
{
|
|
|
|
iface->get_font_family = gtk_font_button_font_chooser_get_font_family;
|
|
|
|
iface->get_font_face = gtk_font_button_font_chooser_get_font_face;
|
|
|
|
iface->get_font_size = gtk_font_button_font_chooser_get_font_size;
|
|
|
|
iface->set_filter_func = gtk_font_button_font_chooser_set_filter_func;
|
|
|
|
iface->set_font_map = gtk_font_button_font_chooser_set_font_map;
|
|
|
|
iface->get_font_map = gtk_font_button_font_chooser_get_font_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkFontButton, gtk_font_button, GTK_TYPE_WIDGET,
|
|
|
|
G_ADD_PRIVATE (GtkFontButton)
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_FONT_CHOOSER,
|
|
|
|
gtk_font_button_font_chooser_iface_init))
|
|
|
|
|
2011-09-11 23:18:58 +00:00
|
|
|
static void
|
|
|
|
clear_font_data (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-11 23:18:58 +00:00
|
|
|
|
|
|
|
if (priv->font_family)
|
|
|
|
g_object_unref (priv->font_family);
|
|
|
|
priv->font_family = NULL;
|
|
|
|
|
|
|
|
if (priv->font_face)
|
|
|
|
g_object_unref (priv->font_face);
|
|
|
|
priv->font_face = NULL;
|
|
|
|
|
|
|
|
if (priv->font_desc)
|
|
|
|
pango_font_description_free (priv->font_desc);
|
|
|
|
priv->font_desc = NULL;
|
|
|
|
|
|
|
|
g_free (priv->fontname);
|
|
|
|
priv->fontname = NULL;
|
2018-01-03 04:52:24 +00:00
|
|
|
|
|
|
|
g_free (priv->font_features);
|
|
|
|
priv->font_features = NULL;
|
2011-09-11 23:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-09-05 12:10:20 +00:00
|
|
|
static void
|
|
|
|
clear_font_filter_data (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
if (priv->font_filter_data_destroy)
|
|
|
|
priv->font_filter_data_destroy (priv->font_filter_data);
|
|
|
|
priv->font_filter = NULL;
|
|
|
|
priv->font_filter_data = NULL;
|
|
|
|
priv->font_filter_data_destroy = NULL;
|
|
|
|
}
|
|
|
|
|
2011-09-11 23:18:58 +00:00
|
|
|
static gboolean
|
|
|
|
font_description_style_equal (const PangoFontDescription *a,
|
|
|
|
const PangoFontDescription *b)
|
|
|
|
{
|
|
|
|
return (pango_font_description_get_weight (a) == pango_font_description_get_weight (b) &&
|
|
|
|
pango_font_description_get_style (a) == pango_font_description_get_style (b) &&
|
|
|
|
pango_font_description_get_stretch (a) == pango_font_description_get_stretch (b) &&
|
|
|
|
pango_font_description_get_variant (a) == pango_font_description_get_variant (b));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_update_font_data (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-11 23:18:58 +00:00
|
|
|
PangoFontFamily **families;
|
|
|
|
PangoFontFace **faces;
|
|
|
|
gint n_families, n_faces, i;
|
|
|
|
const gchar *family;
|
|
|
|
|
|
|
|
g_assert (priv->font_desc != NULL);
|
|
|
|
|
|
|
|
priv->fontname = pango_font_description_to_string (priv->font_desc);
|
|
|
|
|
|
|
|
family = pango_font_description_get_family (priv->font_desc);
|
|
|
|
if (family == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
n_families = 0;
|
|
|
|
families = NULL;
|
|
|
|
pango_context_list_families (gtk_widget_get_pango_context (GTK_WIDGET (font_button)),
|
|
|
|
&families, &n_families);
|
|
|
|
n_faces = 0;
|
|
|
|
faces = NULL;
|
|
|
|
for (i = 0; i < n_families; i++)
|
|
|
|
{
|
|
|
|
const gchar *name = pango_font_family_get_name (families[i]);
|
|
|
|
|
|
|
|
if (!g_ascii_strcasecmp (name, family))
|
|
|
|
{
|
|
|
|
priv->font_family = g_object_ref (families[i]);
|
|
|
|
|
|
|
|
pango_font_family_list_faces (families[i], &faces, &n_faces);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_free (families);
|
|
|
|
|
|
|
|
for (i = 0; i < n_faces; i++)
|
|
|
|
{
|
|
|
|
PangoFontDescription *tmp_desc = pango_font_face_describe (faces[i]);
|
|
|
|
|
|
|
|
if (font_description_style_equal (tmp_desc, priv->font_desc))
|
|
|
|
{
|
|
|
|
priv->font_face = g_object_ref (faces[i]);
|
|
|
|
|
|
|
|
pango_font_description_free (tmp_desc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pango_font_description_free (tmp_desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (faces);
|
|
|
|
}
|
|
|
|
|
2011-09-05 12:10:20 +00:00
|
|
|
static gchar *
|
|
|
|
gtk_font_button_get_preview_text (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
if (priv->font_dialog)
|
|
|
|
return gtk_font_chooser_get_preview_text (GTK_FONT_CHOOSER (priv->font_dialog));
|
|
|
|
|
|
|
|
return g_strdup (priv->preview_text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_set_preview_text (GtkFontButton *font_button,
|
|
|
|
const gchar *preview_text)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
if (priv->font_dialog)
|
|
|
|
{
|
|
|
|
gtk_font_chooser_set_preview_text (GTK_FONT_CHOOSER (priv->font_dialog),
|
|
|
|
preview_text);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (priv->preview_text);
|
|
|
|
priv->preview_text = g_strdup (preview_text);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_font_button_get_show_preview_entry (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
if (priv->font_dialog)
|
|
|
|
return gtk_font_chooser_get_show_preview_entry (GTK_FONT_CHOOSER (priv->font_dialog));
|
|
|
|
|
|
|
|
return priv->show_preview_entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_set_show_preview_entry (GtkFontButton *font_button,
|
|
|
|
gboolean show)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
2014-06-08 15:57:47 +00:00
|
|
|
show = show != FALSE;
|
|
|
|
|
|
|
|
if (priv->show_preview_entry != show)
|
|
|
|
{
|
|
|
|
priv->show_preview_entry = show;
|
|
|
|
if (priv->font_dialog)
|
|
|
|
gtk_font_chooser_set_show_preview_entry (GTK_FONT_CHOOSER (priv->font_dialog), show);
|
|
|
|
g_object_notify (G_OBJECT (font_button), "show-preview-entry");
|
|
|
|
}
|
2011-09-05 12:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static PangoFontFamily *
|
|
|
|
gtk_font_button_font_chooser_get_font_family (GtkFontChooser *chooser)
|
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (chooser);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
return priv->font_family;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PangoFontFace *
|
|
|
|
gtk_font_button_font_chooser_get_font_face (GtkFontChooser *chooser)
|
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (chooser);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
return priv->font_face;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
gtk_font_button_font_chooser_get_font_size (GtkFontChooser *chooser)
|
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (chooser);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
return priv->font_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_font_chooser_set_filter_func (GtkFontChooser *chooser,
|
|
|
|
GtkFontFilterFunc filter_func,
|
|
|
|
gpointer filter_data,
|
|
|
|
GDestroyNotify data_destroy)
|
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (chooser);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
if (priv->font_dialog)
|
|
|
|
{
|
|
|
|
gtk_font_chooser_set_filter_func (GTK_FONT_CHOOSER (priv->font_dialog),
|
|
|
|
filter_func,
|
|
|
|
filter_data,
|
|
|
|
data_destroy);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
clear_font_filter_data (font_button);
|
|
|
|
priv->font_filter = filter_func;
|
|
|
|
priv->font_filter_data = filter_data;
|
|
|
|
priv->font_filter_data_destroy = data_destroy;
|
|
|
|
}
|
|
|
|
|
2011-09-11 22:13:26 +00:00
|
|
|
static void
|
|
|
|
gtk_font_button_take_font_desc (GtkFontButton *font_button,
|
|
|
|
PangoFontDescription *font_desc)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-11 22:13:26 +00:00
|
|
|
GObject *object = G_OBJECT (font_button);
|
|
|
|
|
|
|
|
if (priv->font_desc && font_desc &&
|
|
|
|
pango_font_description_equal (priv->font_desc, font_desc))
|
|
|
|
{
|
|
|
|
pango_font_description_free (font_desc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_freeze_notify (object);
|
|
|
|
|
2011-09-11 23:18:58 +00:00
|
|
|
clear_font_data (font_button);
|
|
|
|
|
2011-09-11 22:13:26 +00:00
|
|
|
if (font_desc)
|
|
|
|
priv->font_desc = font_desc; /* adopted */
|
|
|
|
else
|
|
|
|
priv->font_desc = pango_font_description_from_string (_("Sans 12"));
|
|
|
|
|
2011-09-12 19:26:21 +00:00
|
|
|
if (pango_font_description_get_size_is_absolute (priv->font_desc))
|
|
|
|
priv->font_size = pango_font_description_get_size (priv->font_desc);
|
2015-05-05 03:21:17 +00:00
|
|
|
else
|
2011-09-12 19:26:21 +00:00
|
|
|
priv->font_size = pango_font_description_get_size (priv->font_desc) / PANGO_SCALE;
|
|
|
|
|
2011-09-11 23:18:58 +00:00
|
|
|
gtk_font_button_update_font_data (font_button);
|
2011-09-11 22:13:26 +00:00
|
|
|
gtk_font_button_update_font_info (font_button);
|
|
|
|
|
|
|
|
if (priv->font_dialog)
|
|
|
|
gtk_font_chooser_set_font_desc (GTK_FONT_CHOOSER (priv->font_dialog),
|
|
|
|
priv->font_desc);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (font_button), "font");
|
|
|
|
g_object_notify (G_OBJECT (font_button), "font-desc");
|
|
|
|
|
|
|
|
g_object_thaw_notify (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const PangoFontDescription *
|
|
|
|
gtk_font_button_get_font_desc (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
|
|
|
|
|
|
|
return priv->font_desc;
|
2011-09-11 22:13:26 +00:00
|
|
|
}
|
|
|
|
|
2015-05-05 03:21:17 +00:00
|
|
|
static void
|
2015-06-13 03:55:30 +00:00
|
|
|
gtk_font_button_font_chooser_set_font_map (GtkFontChooser *chooser,
|
|
|
|
PangoFontMap *font_map)
|
2015-05-05 03:21:17 +00:00
|
|
|
{
|
2015-06-13 03:55:30 +00:00
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (chooser);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2015-06-13 03:55:30 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
if (g_set_object (&priv->font_map, font_map))
|
2015-05-05 03:21:17 +00:00
|
|
|
{
|
|
|
|
PangoContext *context;
|
|
|
|
|
|
|
|
if (!font_map)
|
|
|
|
font_map = pango_cairo_font_map_get_default ();
|
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
context = gtk_widget_get_pango_context (priv->font_label);
|
2015-05-05 03:21:17 +00:00
|
|
|
pango_context_set_font_map (context, font_map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-13 03:55:30 +00:00
|
|
|
static PangoFontMap *
|
|
|
|
gtk_font_button_font_chooser_get_font_map (GtkFontChooser *chooser)
|
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (chooser);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2015-06-13 03:55:30 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
return priv->font_map;
|
2015-06-13 03:55:30 +00:00
|
|
|
}
|
|
|
|
|
2011-09-05 12:10:20 +00:00
|
|
|
static void
|
|
|
|
gtk_font_button_font_chooser_notify (GObject *object,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
/* We do not forward the notification of the "font" property to the dialog! */
|
|
|
|
if (pspec->name == I_("preview-text") ||
|
|
|
|
pspec->name == I_("show-preview-entry"))
|
|
|
|
g_object_notify_by_pspec (user_data, pspec);
|
|
|
|
}
|
|
|
|
|
2017-01-19 19:15:43 +00:00
|
|
|
static void
|
|
|
|
gtk_font_button_measure (GtkWidget *widget,
|
|
|
|
GtkOrientation orientation,
|
|
|
|
int for_size,
|
|
|
|
int *minimum,
|
|
|
|
int *natural,
|
|
|
|
int *minimum_baseline,
|
|
|
|
int *natural_baseline)
|
|
|
|
{
|
|
|
|
GtkFontButton *button = GTK_FONT_BUTTON (widget);
|
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (button);
|
|
|
|
|
|
|
|
gtk_widget_measure (priv->button, orientation, for_size,
|
|
|
|
minimum, natural,
|
|
|
|
minimum_baseline, natural_baseline);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-07-11 07:58:21 +00:00
|
|
|
gtk_font_button_size_allocate (GtkWidget *widget,
|
|
|
|
const GtkAllocation *allocation,
|
2018-03-31 19:02:28 +00:00
|
|
|
int baseline)
|
2017-01-19 19:15:43 +00:00
|
|
|
{
|
|
|
|
GtkFontButton *button = GTK_FONT_BUTTON (widget);
|
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (button);
|
2017-04-30 19:53:05 +00:00
|
|
|
|
2018-03-31 19:02:28 +00:00
|
|
|
gtk_widget_size_allocate (priv->button, allocation, baseline);
|
2017-01-19 19:15:43 +00:00
|
|
|
}
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
static void
|
|
|
|
gtk_font_button_class_init (GtkFontButtonClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
2013-03-30 08:35:54 +00:00
|
|
|
GtkWidgetClass *widget_class;
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
2013-03-30 08:35:54 +00:00
|
|
|
widget_class = (GtkWidgetClass *) klass;
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
gobject_class->finalize = gtk_font_button_finalize;
|
|
|
|
gobject_class->set_property = gtk_font_button_set_property;
|
|
|
|
gobject_class->get_property = gtk_font_button_get_property;
|
2017-01-19 19:15:43 +00:00
|
|
|
|
|
|
|
widget_class->measure = gtk_font_button_measure;
|
|
|
|
widget_class->size_allocate = gtk_font_button_size_allocate;
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
klass->font_set = NULL;
|
|
|
|
|
2011-09-05 12:10:20 +00:00
|
|
|
_gtk_font_chooser_install_properties (gobject_class);
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
/**
|
|
|
|
* GtkFontButton:title:
|
|
|
|
*
|
2011-07-27 23:22:22 +00:00
|
|
|
* The title of the font chooser dialog.
|
2003-07-01 19:52:07 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_TITLE,
|
|
|
|
g_param_spec_string ("title",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Title"),
|
2011-07-27 23:22:22 +00:00
|
|
|
P_("The title of the font chooser dialog"),
|
2003-11-05 23:23:05 +00:00
|
|
|
_("Pick a Font"),
|
2014-06-08 15:59:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkFontButton:use-font:
|
|
|
|
*
|
2006-04-25 02:12:21 +00:00
|
|
|
* If this property is set to %TRUE, the label will be drawn
|
|
|
|
* in the selected font.
|
2003-07-01 19:52:07 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_USE_FONT,
|
2005-03-09 06:15:13 +00:00
|
|
|
g_param_spec_boolean ("use-font",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Use font in label"),
|
|
|
|
P_("Whether the label is drawn in the selected font"),
|
2003-07-01 19:52:07 +00:00
|
|
|
FALSE,
|
2014-06-09 12:56:30 +00:00
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkFontButton:use-size:
|
|
|
|
*
|
2006-04-25 02:12:21 +00:00
|
|
|
* If this property is set to %TRUE, the label will be drawn
|
|
|
|
* with the selected font size.
|
2003-07-01 19:52:07 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_USE_SIZE,
|
2005-03-09 06:15:13 +00:00
|
|
|
g_param_spec_boolean ("use-size",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Use size in label"),
|
|
|
|
P_("Whether the label is drawn with the selected font size"),
|
2003-07-01 19:52:07 +00:00
|
|
|
FALSE,
|
2014-06-09 12:56:30 +00:00
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkFontButton::font-set:
|
|
|
|
* @widget: the object which received the signal.
|
|
|
|
*
|
2006-05-31 04:06:12 +00:00
|
|
|
* The ::font-set signal is emitted when the user selects a font.
|
2018-06-07 10:14:14 +00:00
|
|
|
* When handling this signal, use gtk_font_chooser_get_font()
|
2006-05-31 04:06:12 +00:00
|
|
|
* to find out which font was just selected.
|
|
|
|
*
|
2014-01-28 06:54:48 +00:00
|
|
|
* Note that this signal is only emitted when the user
|
2006-05-31 04:06:12 +00:00
|
|
|
* changes the font. If you need to react to programmatic font changes
|
2017-12-21 16:37:53 +00:00
|
|
|
* as well, use the notify::font signal.
|
2003-07-01 19:52:07 +00:00
|
|
|
*/
|
2005-09-01 05:11:46 +00:00
|
|
|
font_button_signals[FONT_SET] = g_signal_new (I_("font-set"),
|
2003-07-01 19:52:07 +00:00
|
|
|
G_TYPE_FROM_CLASS (gobject_class),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GtkFontButtonClass, font_set),
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2013-03-30 08:35:54 +00:00
|
|
|
|
2017-11-18 03:49:57 +00:00
|
|
|
gtk_widget_class_set_css_name (widget_class, I_("fontbutton"));
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_init (GtkFontButton *font_button)
|
|
|
|
{
|
2015-10-30 21:09:59 +00:00
|
|
|
GtkStyleContext *context;
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2017-01-19 19:15:43 +00:00
|
|
|
GtkWidget *box;
|
2015-10-30 21:09:59 +00:00
|
|
|
|
2018-03-20 14:21:12 +00:00
|
|
|
gtk_widget_set_has_surface (GTK_WIDGET (font_button), FALSE);
|
2017-01-19 19:15:43 +00:00
|
|
|
|
|
|
|
priv->button = gtk_button_new ();
|
|
|
|
g_signal_connect (priv->button, "clicked", G_CALLBACK (gtk_font_button_clicked), font_button);
|
|
|
|
priv->font_label = gtk_label_new (_("Font"));
|
2017-01-21 07:45:44 +00:00
|
|
|
gtk_widget_set_hexpand (priv->font_label, TRUE);
|
2017-01-19 19:15:43 +00:00
|
|
|
priv->size_label = gtk_label_new ("14");
|
|
|
|
priv->font_size_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
|
|
|
|
|
|
|
|
box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (box), priv->font_label);
|
2017-01-21 07:45:44 +00:00
|
|
|
|
2017-01-19 19:15:43 +00:00
|
|
|
gtk_container_add (GTK_CONTAINER (priv->font_size_box), gtk_separator_new (GTK_ORIENTATION_VERTICAL));
|
|
|
|
gtk_container_add (GTK_CONTAINER (priv->font_size_box), priv->size_label);
|
|
|
|
gtk_container_add (GTK_CONTAINER (box), priv->font_size_box);
|
|
|
|
|
|
|
|
gtk_container_add (GTK_CONTAINER (priv->button), box);
|
|
|
|
gtk_widget_set_parent (priv->button, GTK_WIDGET (font_button));
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
/* Initialize fields */
|
2018-06-18 11:11:06 +00:00
|
|
|
priv->use_font = FALSE;
|
|
|
|
priv->use_size = FALSE;
|
|
|
|
priv->show_preview_entry = TRUE;
|
|
|
|
priv->font_dialog = NULL;
|
|
|
|
priv->font_family = NULL;
|
|
|
|
priv->font_face = NULL;
|
|
|
|
priv->font_size = -1;
|
|
|
|
priv->title = g_strdup (_("Pick a Font"));
|
|
|
|
priv->level = GTK_FONT_CHOOSER_LEVEL_FAMILY |
|
|
|
|
GTK_FONT_CHOOSER_LEVEL_STYLE |
|
|
|
|
GTK_FONT_CHOOSER_LEVEL_SIZE;
|
|
|
|
priv->language = pango_language_get_default ();
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2011-09-11 22:13:26 +00:00
|
|
|
gtk_font_button_take_font_desc (font_button, NULL);
|
2015-10-30 21:09:59 +00:00
|
|
|
|
2017-01-19 19:15:43 +00:00
|
|
|
context = gtk_widget_get_style_context (GTK_WIDGET (priv->button));
|
2015-10-30 21:09:59 +00:00
|
|
|
gtk_style_context_add_class (context, "font");
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (object);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2014-10-02 04:05:43 +00:00
|
|
|
if (priv->font_dialog != NULL)
|
|
|
|
gtk_widget_destroy (priv->font_dialog);
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2014-10-02 04:05:43 +00:00
|
|
|
g_free (priv->title);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
2011-09-11 23:18:58 +00:00
|
|
|
clear_font_data (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
clear_font_filter_data (font_button);
|
|
|
|
|
2014-10-02 04:05:43 +00:00
|
|
|
g_free (priv->preview_text);
|
|
|
|
|
|
|
|
g_clear_object (&priv->provider);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
2017-01-19 19:15:43 +00:00
|
|
|
gtk_widget_unparent (priv->button);
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
G_OBJECT_CLASS (gtk_font_button_parent_class)->finalize (object);
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_set_property (GObject *object,
|
|
|
|
guint param_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (object);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
switch (param_id)
|
|
|
|
{
|
2011-09-05 12:10:20 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_PREVIEW_TEXT:
|
|
|
|
gtk_font_button_set_preview_text (font_button, g_value_get_string (value));
|
|
|
|
break;
|
|
|
|
case GTK_FONT_CHOOSER_PROP_SHOW_PREVIEW_ENTRY:
|
|
|
|
gtk_font_button_set_show_preview_entry (font_button, g_value_get_boolean (value));
|
|
|
|
break;
|
2003-07-01 19:52:07 +00:00
|
|
|
case PROP_TITLE:
|
|
|
|
gtk_font_button_set_title (font_button, g_value_get_string (value));
|
|
|
|
break;
|
2011-09-11 22:13:26 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_FONT_DESC:
|
|
|
|
gtk_font_button_take_font_desc (font_button, g_value_dup_boxed (value));
|
|
|
|
break;
|
2018-04-02 17:34:22 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_LANGUAGE:
|
|
|
|
gtk_font_button_set_language (font_button, g_value_get_string (value));
|
|
|
|
break;
|
2017-12-21 15:51:04 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_LEVEL:
|
2018-03-27 20:10:19 +00:00
|
|
|
gtk_font_button_set_level (font_button, g_value_get_flags (value));
|
2017-12-21 15:51:04 +00:00
|
|
|
break;
|
2011-09-05 12:10:20 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_FONT:
|
2003-07-01 19:52:07 +00:00
|
|
|
gtk_font_button_set_font_name (font_button, g_value_get_string (value));
|
|
|
|
break;
|
|
|
|
case PROP_USE_FONT:
|
|
|
|
gtk_font_button_set_use_font (font_button, g_value_get_boolean (value));
|
|
|
|
break;
|
|
|
|
case PROP_USE_SIZE:
|
|
|
|
gtk_font_button_set_use_size (font_button, g_value_get_boolean (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_get_property (GObject *object,
|
|
|
|
guint param_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (object);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
switch (param_id)
|
|
|
|
{
|
2011-09-05 12:10:20 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_PREVIEW_TEXT:
|
|
|
|
g_value_set_string (value, gtk_font_button_get_preview_text (font_button));
|
|
|
|
break;
|
|
|
|
case GTK_FONT_CHOOSER_PROP_SHOW_PREVIEW_ENTRY:
|
|
|
|
g_value_set_boolean (value, gtk_font_button_get_show_preview_entry (font_button));
|
|
|
|
break;
|
2003-07-01 19:52:07 +00:00
|
|
|
case PROP_TITLE:
|
|
|
|
g_value_set_string (value, gtk_font_button_get_title (font_button));
|
|
|
|
break;
|
2011-09-11 22:13:26 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_FONT_DESC:
|
|
|
|
g_value_set_boxed (value, gtk_font_button_get_font_desc (font_button));
|
|
|
|
break;
|
2018-01-03 04:52:24 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_FONT_FEATURES:
|
|
|
|
g_value_set_string (value, priv->font_features);
|
|
|
|
break;
|
|
|
|
case GTK_FONT_CHOOSER_PROP_LANGUAGE:
|
2018-04-02 17:34:22 +00:00
|
|
|
g_value_set_string (value, pango_language_to_string (priv->language));
|
2018-01-03 04:52:24 +00:00
|
|
|
break;
|
2017-12-21 15:51:04 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_LEVEL:
|
2018-03-27 20:10:19 +00:00
|
|
|
g_value_set_flags (value, priv->level);
|
2017-12-21 15:51:04 +00:00
|
|
|
break;
|
2011-09-05 12:10:20 +00:00
|
|
|
case GTK_FONT_CHOOSER_PROP_FONT:
|
2003-07-01 19:52:07 +00:00
|
|
|
g_value_set_string (value, gtk_font_button_get_font_name (font_button));
|
|
|
|
break;
|
|
|
|
case PROP_USE_FONT:
|
|
|
|
g_value_set_boolean (value, gtk_font_button_get_use_font (font_button));
|
|
|
|
break;
|
|
|
|
case PROP_USE_SIZE:
|
|
|
|
g_value_set_boolean (value, gtk_font_button_get_use_size (font_button));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2015-05-05 03:21:17 +00:00
|
|
|
}
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_font_button_new:
|
|
|
|
*
|
|
|
|
* Creates a new font picker widget.
|
|
|
|
*
|
|
|
|
* Returns: a new font picker widget.
|
|
|
|
*/
|
|
|
|
GtkWidget *
|
|
|
|
gtk_font_button_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (GTK_TYPE_FONT_BUTTON, NULL);
|
2015-05-05 03:21:17 +00:00
|
|
|
}
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_font_button_new_with_font:
|
2011-07-27 23:22:22 +00:00
|
|
|
* @fontname: Name of font to display in font chooser dialog
|
2003-07-01 19:52:07 +00:00
|
|
|
*
|
|
|
|
* Creates a new font picker widget.
|
|
|
|
*
|
|
|
|
* Returns: a new font picker widget.
|
|
|
|
*/
|
|
|
|
GtkWidget *
|
|
|
|
gtk_font_button_new_with_font (const gchar *fontname)
|
|
|
|
{
|
2017-12-21 16:37:53 +00:00
|
|
|
return g_object_new (GTK_TYPE_FONT_BUTTON, "font", fontname, NULL);
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_font_button_set_title:
|
|
|
|
* @font_button: a #GtkFontButton
|
2011-07-27 23:22:22 +00:00
|
|
|
* @title: a string containing the font chooser dialog title
|
2003-07-01 19:52:07 +00:00
|
|
|
*
|
2011-07-27 23:22:22 +00:00
|
|
|
* Sets the title for the font chooser dialog.
|
2003-07-01 19:52:07 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_font_button_set_title (GtkFontButton *font_button,
|
|
|
|
const gchar *title)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2003-07-01 19:52:07 +00:00
|
|
|
gchar *old_title;
|
|
|
|
g_return_if_fail (GTK_IS_FONT_BUTTON (font_button));
|
2018-06-18 11:11:06 +00:00
|
|
|
|
|
|
|
old_title = priv->title;
|
|
|
|
priv->title = g_strdup (title);
|
2003-07-01 19:52:07 +00:00
|
|
|
g_free (old_title);
|
2018-06-18 11:11:06 +00:00
|
|
|
|
|
|
|
if (priv->font_dialog)
|
|
|
|
gtk_window_set_title (GTK_WINDOW (priv->font_dialog), priv->title);
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (font_button), "title");
|
2018-06-18 11:11:06 +00:00
|
|
|
}
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_font_button_get_title:
|
|
|
|
* @font_button: a #GtkFontButton
|
|
|
|
*
|
2011-07-27 23:22:22 +00:00
|
|
|
* Retrieves the title of the font chooser dialog.
|
2003-07-01 19:52:07 +00:00
|
|
|
*
|
|
|
|
* Returns: an internal copy of the title string which must not be freed.
|
|
|
|
*/
|
2011-06-06 18:13:44 +00:00
|
|
|
const gchar*
|
2003-07-01 19:52:07 +00:00
|
|
|
gtk_font_button_get_title (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_FONT_BUTTON (font_button), NULL);
|
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
return priv->title;
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_font_button_get_use_font:
|
|
|
|
* @font_button: a #GtkFontButton
|
|
|
|
*
|
|
|
|
* Returns whether the selected font is used in the label.
|
|
|
|
*
|
|
|
|
* Returns: whether the selected font is used in the label.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_font_button_get_use_font (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_FONT_BUTTON (font_button), FALSE);
|
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
return priv->use_font;
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_font_button_set_use_font:
|
|
|
|
* @font_button: a #GtkFontButton
|
|
|
|
* @use_font: If %TRUE, font name will be written using font chosen.
|
|
|
|
*
|
|
|
|
* If @use_font is %TRUE, the font name will be written using the selected font.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_font_button_set_use_font (GtkFontButton *font_button,
|
|
|
|
gboolean use_font)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2003-07-01 19:52:07 +00:00
|
|
|
g_return_if_fail (GTK_IS_FONT_BUTTON (font_button));
|
2018-06-18 11:11:06 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
use_font = (use_font != FALSE);
|
2018-06-18 11:11:06 +00:00
|
|
|
|
|
|
|
if (priv->use_font != use_font)
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
priv->use_font = use_font;
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2011-09-22 19:27:22 +00:00
|
|
|
gtk_font_button_label_use_font (font_button);
|
2018-06-18 11:11:06 +00:00
|
|
|
|
2011-09-22 19:27:22 +00:00
|
|
|
g_object_notify (G_OBJECT (font_button), "use-font");
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
2018-06-18 11:11:06 +00:00
|
|
|
}
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_font_button_get_use_size:
|
|
|
|
* @font_button: a #GtkFontButton
|
|
|
|
*
|
|
|
|
* Returns whether the selected size is used in the label.
|
|
|
|
*
|
|
|
|
* Returns: whether the selected size is used in the label.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_font_button_get_use_size (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_FONT_BUTTON (font_button), FALSE);
|
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
return priv->use_size;
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_font_button_set_use_size:
|
|
|
|
* @font_button: a #GtkFontButton
|
|
|
|
* @use_size: If %TRUE, font name will be written using the selected size.
|
|
|
|
*
|
|
|
|
* If @use_size is %TRUE, the font name will be written using the selected size.
|
|
|
|
*/
|
2018-06-18 11:11:06 +00:00
|
|
|
void
|
2003-07-01 19:52:07 +00:00
|
|
|
gtk_font_button_set_use_size (GtkFontButton *font_button,
|
2011-07-27 23:22:22 +00:00
|
|
|
gboolean use_size)
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
g_return_if_fail (GTK_IS_FONT_BUTTON (font_button));
|
2018-06-18 11:11:06 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
use_size = (use_size != FALSE);
|
2018-06-18 11:11:06 +00:00
|
|
|
if (priv->use_size != use_size)
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
priv->use_size = use_size;
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2011-09-22 19:27:22 +00:00
|
|
|
gtk_font_button_label_use_font (font_button);
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (font_button), "use-size");
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
2018-06-18 11:11:06 +00:00
|
|
|
}
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2017-12-21 16:10:44 +00:00
|
|
|
static const gchar *
|
2003-07-01 19:52:07 +00:00
|
|
|
gtk_font_button_get_font_name (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_FONT_BUTTON (font_button), NULL);
|
2011-09-11 22:13:26 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
return priv->fontname;
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
2017-12-21 16:10:44 +00:00
|
|
|
static void
|
2003-07-01 19:52:07 +00:00
|
|
|
gtk_font_button_set_font_name (GtkFontButton *font_button,
|
|
|
|
const gchar *fontname)
|
|
|
|
{
|
2011-09-11 22:13:26 +00:00
|
|
|
PangoFontDescription *font_desc;
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2011-09-11 22:13:26 +00:00
|
|
|
font_desc = pango_font_description_from_string (fontname);
|
|
|
|
gtk_font_button_take_font_desc (font_button, font_desc);
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-19 19:15:43 +00:00
|
|
|
gtk_font_button_clicked (GtkButton *button,
|
|
|
|
gpointer user_data)
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
2011-09-11 23:49:26 +00:00
|
|
|
GtkFontChooser *font_dialog;
|
2017-01-19 19:15:43 +00:00
|
|
|
GtkFontButton *font_button = user_data;
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
if (!priv->font_dialog)
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
|
|
|
GtkWidget *parent;
|
|
|
|
|
|
|
|
parent = gtk_widget_get_toplevel (GTK_WIDGET (font_button));
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
priv->font_dialog = gtk_font_chooser_dialog_new (priv->title, NULL);
|
2017-12-31 15:43:01 +00:00
|
|
|
gtk_window_set_hide_on_close (GTK_WINDOW (priv->font_dialog), TRUE);
|
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
font_dialog = GTK_FONT_CHOOSER (priv->font_dialog);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
2015-05-05 03:21:17 +00:00
|
|
|
if (priv->font_map)
|
|
|
|
gtk_font_chooser_set_font_map (font_dialog, priv->font_map);
|
2017-12-21 15:51:04 +00:00
|
|
|
|
2011-09-05 12:10:20 +00:00
|
|
|
gtk_font_chooser_set_show_preview_entry (font_dialog, priv->show_preview_entry);
|
2017-12-21 16:58:20 +00:00
|
|
|
gtk_font_chooser_set_level (GTK_FONT_CHOOSER (font_dialog), priv->level);
|
2018-04-05 10:22:43 +00:00
|
|
|
gtk_font_chooser_set_language (GTK_FONT_CHOOSER (font_dialog), pango_language_to_string (priv->language));
|
2011-09-05 12:10:20 +00:00
|
|
|
|
|
|
|
if (priv->preview_text)
|
|
|
|
{
|
|
|
|
gtk_font_chooser_set_preview_text (font_dialog, priv->preview_text);
|
|
|
|
g_free (priv->preview_text);
|
|
|
|
priv->preview_text = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->font_filter)
|
|
|
|
{
|
|
|
|
gtk_font_chooser_set_filter_func (font_dialog,
|
|
|
|
priv->font_filter,
|
|
|
|
priv->font_filter_data,
|
|
|
|
priv->font_filter_data_destroy);
|
|
|
|
priv->font_filter = NULL;
|
|
|
|
priv->font_filter_data = NULL;
|
|
|
|
priv->font_filter_data_destroy = NULL;
|
|
|
|
}
|
|
|
|
|
2010-01-04 06:49:26 +00:00
|
|
|
if (gtk_widget_is_toplevel (parent) && GTK_IS_WINDOW (parent))
|
2006-05-24 19:44:20 +00:00
|
|
|
{
|
|
|
|
if (GTK_WINDOW (parent) != gtk_window_get_transient_for (GTK_WINDOW (font_dialog)))
|
2011-07-27 23:22:22 +00:00
|
|
|
gtk_window_set_transient_for (GTK_WINDOW (font_dialog), GTK_WINDOW (parent));
|
|
|
|
|
|
|
|
gtk_window_set_modal (GTK_WINDOW (font_dialog),
|
|
|
|
gtk_window_get_modal (GTK_WINDOW (parent)));
|
|
|
|
}
|
|
|
|
|
2011-09-05 12:10:20 +00:00
|
|
|
g_signal_connect (font_dialog, "notify",
|
|
|
|
G_CALLBACK (gtk_font_button_font_chooser_notify), button);
|
|
|
|
|
2011-07-27 23:22:22 +00:00
|
|
|
g_signal_connect (font_dialog, "response",
|
|
|
|
G_CALLBACK (response_cb), font_button);
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
g_signal_connect (font_dialog, "destroy",
|
|
|
|
G_CALLBACK (dialog_destroy), font_button);
|
|
|
|
}
|
2017-12-31 15:43:01 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
if (!gtk_widget_get_visible (priv->font_dialog))
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
font_dialog = GTK_FONT_CHOOSER (priv->font_dialog);
|
|
|
|
gtk_font_chooser_set_font_desc (font_dialog, priv->font_desc);
|
2017-12-31 15:43:01 +00:00
|
|
|
}
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
gtk_window_present (GTK_WINDOW (priv->font_dialog));
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
2011-07-27 23:22:22 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
static void
|
2011-07-27 23:22:22 +00:00
|
|
|
response_cb (GtkDialog *dialog,
|
|
|
|
gint response_id,
|
|
|
|
gpointer data)
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (data);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
GtkFontChooser *font_chooser;
|
2011-09-11 22:13:26 +00:00
|
|
|
GObject *object;
|
2011-09-05 12:10:20 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
gtk_widget_hide (priv->font_dialog);
|
2011-07-27 23:22:22 +00:00
|
|
|
|
|
|
|
if (response_id != GTK_RESPONSE_OK)
|
|
|
|
return;
|
|
|
|
|
2011-09-05 12:10:20 +00:00
|
|
|
font_chooser = GTK_FONT_CHOOSER (priv->font_dialog);
|
2011-09-11 22:13:26 +00:00
|
|
|
object = G_OBJECT (font_chooser);
|
|
|
|
|
|
|
|
g_object_freeze_notify (object);
|
|
|
|
|
2011-09-11 23:18:58 +00:00
|
|
|
clear_font_data (font_button);
|
2011-09-05 12:10:20 +00:00
|
|
|
|
2011-09-11 23:18:58 +00:00
|
|
|
priv->font_desc = gtk_font_chooser_get_font_desc (font_chooser);
|
|
|
|
if (priv->font_desc)
|
|
|
|
priv->fontname = pango_font_description_to_string (priv->font_desc);
|
2011-09-11 22:17:58 +00:00
|
|
|
priv->font_family = gtk_font_chooser_get_font_family (font_chooser);
|
2011-09-05 12:10:20 +00:00
|
|
|
if (priv->font_family)
|
|
|
|
g_object_ref (priv->font_family);
|
2011-09-11 22:17:58 +00:00
|
|
|
priv->font_face = gtk_font_chooser_get_font_face (font_chooser);
|
2011-09-05 12:10:20 +00:00
|
|
|
if (priv->font_face)
|
|
|
|
g_object_ref (priv->font_face);
|
2011-09-11 22:17:58 +00:00
|
|
|
priv->font_size = gtk_font_chooser_get_font_size (font_chooser);
|
2018-01-03 04:52:24 +00:00
|
|
|
g_free (priv->font_features);
|
|
|
|
priv->font_features = gtk_font_chooser_get_font_features (font_chooser);
|
2018-04-02 21:45:48 +00:00
|
|
|
priv->language = pango_language_from_string (gtk_font_chooser_get_language (font_chooser));
|
2011-09-05 12:10:20 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
/* Set label font */
|
|
|
|
gtk_font_button_update_font_info (font_button);
|
|
|
|
|
2011-09-05 12:10:20 +00:00
|
|
|
g_object_notify (G_OBJECT (font_button), "font");
|
2011-09-11 22:13:26 +00:00
|
|
|
g_object_notify (G_OBJECT (font_button), "font-desc");
|
2018-03-27 18:47:36 +00:00
|
|
|
g_object_notify (G_OBJECT (font_button), "font-features");
|
2011-09-11 22:13:26 +00:00
|
|
|
|
|
|
|
g_object_thaw_notify (object);
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
/* Emit font_set signal */
|
|
|
|
g_signal_emit (font_button, font_button_signals[FONT_SET], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dialog_destroy (GtkWidget *widget,
|
2011-07-27 23:22:22 +00:00
|
|
|
gpointer data)
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
|
|
|
GtkFontButton *font_button = GTK_FONT_BUTTON (data);
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
/* Dialog will get destroyed so reference is not valid now */
|
2018-06-18 11:11:06 +00:00
|
|
|
priv->font_dialog = NULL;
|
|
|
|
}
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2017-12-20 14:11:04 +00:00
|
|
|
static void
|
|
|
|
add_css_variations (GString *s,
|
|
|
|
const char *variations)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
const char *sep = "";
|
|
|
|
|
|
|
|
if (variations == NULL || variations[0] == '\0')
|
|
|
|
{
|
|
|
|
g_string_append (s, "normal");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = variations;
|
|
|
|
while (p && *p)
|
|
|
|
{
|
|
|
|
const char *start;
|
|
|
|
const char *end, *end2;
|
|
|
|
double value;
|
|
|
|
char name[5];
|
|
|
|
|
|
|
|
while (g_ascii_isspace (*p)) p++;
|
|
|
|
|
|
|
|
start = p;
|
|
|
|
end = strchr (p, ',');
|
|
|
|
if (end && (end - p < 6))
|
|
|
|
goto skip;
|
|
|
|
|
|
|
|
name[0] = p[0];
|
|
|
|
name[1] = p[1];
|
|
|
|
name[2] = p[2];
|
|
|
|
name[3] = p[3];
|
|
|
|
name[4] = '\0';
|
|
|
|
|
|
|
|
p += 4;
|
|
|
|
while (g_ascii_isspace (*p)) p++;
|
|
|
|
if (*p == '=') p++;
|
|
|
|
|
|
|
|
if (p - start < 5)
|
|
|
|
goto skip;
|
|
|
|
|
|
|
|
value = g_ascii_strtod (p, (char **) &end2);
|
|
|
|
|
|
|
|
while (end2 && g_ascii_isspace (*end2)) end2++;
|
|
|
|
|
|
|
|
if (end2 && (*end2 != ',' && *end2 != '\0'))
|
|
|
|
goto skip;
|
|
|
|
|
|
|
|
g_string_append_printf (s, "%s\"%s\" %g", sep, name, value);
|
|
|
|
sep = ", ";
|
|
|
|
|
|
|
|
skip:
|
|
|
|
p = end ? end + 1 : NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-18 19:04:37 +00:00
|
|
|
static gchar *
|
2018-01-03 04:52:24 +00:00
|
|
|
pango_font_description_to_css (PangoFontDescription *desc,
|
|
|
|
const char *features,
|
|
|
|
const char *language)
|
2016-04-18 19:04:37 +00:00
|
|
|
{
|
|
|
|
GString *s;
|
|
|
|
PangoFontMask set;
|
|
|
|
|
|
|
|
s = g_string_new ("* { ");
|
|
|
|
|
|
|
|
set = pango_font_description_get_set_fields (desc);
|
|
|
|
if (set & PANGO_FONT_MASK_FAMILY)
|
|
|
|
{
|
|
|
|
g_string_append (s, "font-family: ");
|
|
|
|
g_string_append (s, pango_font_description_get_family (desc));
|
|
|
|
g_string_append (s, "; ");
|
|
|
|
}
|
|
|
|
if (set & PANGO_FONT_MASK_STYLE)
|
|
|
|
{
|
|
|
|
switch (pango_font_description_get_style (desc))
|
|
|
|
{
|
|
|
|
case PANGO_STYLE_NORMAL:
|
|
|
|
g_string_append (s, "font-style: normal; ");
|
|
|
|
break;
|
|
|
|
case PANGO_STYLE_OBLIQUE:
|
|
|
|
g_string_append (s, "font-style: oblique; ");
|
|
|
|
break;
|
|
|
|
case PANGO_STYLE_ITALIC:
|
|
|
|
g_string_append (s, "font-style: italic; ");
|
|
|
|
break;
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
|
|
|
break;
|
2016-04-18 19:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (set & PANGO_FONT_MASK_VARIANT)
|
|
|
|
{
|
|
|
|
switch (pango_font_description_get_variant (desc))
|
|
|
|
{
|
|
|
|
case PANGO_VARIANT_NORMAL:
|
|
|
|
g_string_append (s, "font-variant: normal; ");
|
|
|
|
break;
|
|
|
|
case PANGO_VARIANT_SMALL_CAPS:
|
|
|
|
g_string_append (s, "font-variant: small-caps; ");
|
|
|
|
break;
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
|
|
|
break;
|
2016-04-18 19:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (set & PANGO_FONT_MASK_WEIGHT)
|
|
|
|
{
|
|
|
|
switch (pango_font_description_get_weight (desc))
|
|
|
|
{
|
|
|
|
case PANGO_WEIGHT_THIN:
|
|
|
|
g_string_append (s, "font-weight: 100; ");
|
|
|
|
break;
|
|
|
|
case PANGO_WEIGHT_ULTRALIGHT:
|
|
|
|
g_string_append (s, "font-weight: 200; ");
|
|
|
|
break;
|
|
|
|
case PANGO_WEIGHT_LIGHT:
|
|
|
|
case PANGO_WEIGHT_SEMILIGHT:
|
|
|
|
g_string_append (s, "font-weight: 300; ");
|
|
|
|
break;
|
|
|
|
case PANGO_WEIGHT_BOOK:
|
|
|
|
case PANGO_WEIGHT_NORMAL:
|
|
|
|
g_string_append (s, "font-weight: 400; ");
|
|
|
|
break;
|
|
|
|
case PANGO_WEIGHT_MEDIUM:
|
|
|
|
g_string_append (s, "font-weight: 500; ");
|
|
|
|
break;
|
|
|
|
case PANGO_WEIGHT_SEMIBOLD:
|
|
|
|
g_string_append (s, "font-weight: 600; ");
|
|
|
|
break;
|
|
|
|
case PANGO_WEIGHT_BOLD:
|
|
|
|
g_string_append (s, "font-weight: 700; ");
|
|
|
|
break;
|
|
|
|
case PANGO_WEIGHT_ULTRABOLD:
|
|
|
|
g_string_append (s, "font-weight: 800; ");
|
|
|
|
break;
|
|
|
|
case PANGO_WEIGHT_HEAVY:
|
|
|
|
case PANGO_WEIGHT_ULTRAHEAVY:
|
|
|
|
g_string_append (s, "font-weight: 900; ");
|
|
|
|
break;
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
|
|
|
break;
|
2016-04-18 19:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (set & PANGO_FONT_MASK_STRETCH)
|
|
|
|
{
|
|
|
|
switch (pango_font_description_get_stretch (desc))
|
|
|
|
{
|
|
|
|
case PANGO_STRETCH_ULTRA_CONDENSED:
|
|
|
|
g_string_append (s, "font-stretch: ultra-condensed; ");
|
|
|
|
break;
|
|
|
|
case PANGO_STRETCH_EXTRA_CONDENSED:
|
|
|
|
g_string_append (s, "font-stretch: extra-condensed; ");
|
|
|
|
break;
|
|
|
|
case PANGO_STRETCH_CONDENSED:
|
|
|
|
g_string_append (s, "font-stretch: condensed; ");
|
|
|
|
break;
|
|
|
|
case PANGO_STRETCH_SEMI_CONDENSED:
|
|
|
|
g_string_append (s, "font-stretch: semi-condensed; ");
|
|
|
|
break;
|
|
|
|
case PANGO_STRETCH_NORMAL:
|
|
|
|
g_string_append (s, "font-stretch: normal; ");
|
|
|
|
break;
|
|
|
|
case PANGO_STRETCH_SEMI_EXPANDED:
|
|
|
|
g_string_append (s, "font-stretch: semi-expanded; ");
|
|
|
|
break;
|
|
|
|
case PANGO_STRETCH_EXPANDED:
|
|
|
|
g_string_append (s, "font-stretch: expanded; ");
|
|
|
|
break;
|
|
|
|
case PANGO_STRETCH_EXTRA_EXPANDED:
|
|
|
|
break;
|
|
|
|
case PANGO_STRETCH_ULTRA_EXPANDED:
|
|
|
|
g_string_append (s, "font-stretch: ultra-expanded; ");
|
|
|
|
break;
|
2017-10-06 19:19:42 +00:00
|
|
|
default:
|
|
|
|
break;
|
2016-04-18 19:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (set & PANGO_FONT_MASK_SIZE)
|
|
|
|
{
|
2017-12-20 14:11:04 +00:00
|
|
|
g_string_append_printf (s, "font-size: %dpt; ", pango_font_description_get_size (desc) / PANGO_SCALE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (set & PANGO_FONT_MASK_VARIATIONS)
|
|
|
|
{
|
|
|
|
const char *variations;
|
|
|
|
|
|
|
|
g_string_append (s, "font-variation-settings: ");
|
|
|
|
variations = pango_font_description_get_variations (desc);
|
|
|
|
add_css_variations (s, variations);
|
|
|
|
g_string_append (s, "; ");
|
2016-04-18 19:04:37 +00:00
|
|
|
}
|
2018-01-03 04:52:24 +00:00
|
|
|
if (features)
|
|
|
|
{
|
|
|
|
g_string_append_printf (s, "font-feature-settings: %s;", features);
|
|
|
|
}
|
2016-04-18 19:04:37 +00:00
|
|
|
|
|
|
|
g_string_append (s, "}");
|
|
|
|
|
|
|
|
return g_string_free (s, FALSE);
|
|
|
|
}
|
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
static void
|
|
|
|
gtk_font_button_label_use_font (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2014-10-02 04:05:43 +00:00
|
|
|
GtkStyleContext *context;
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2014-10-02 04:05:43 +00:00
|
|
|
context = gtk_widget_get_style_context (priv->font_label);
|
2011-09-11 22:13:26 +00:00
|
|
|
|
2014-10-02 04:05:43 +00:00
|
|
|
if (!priv->use_font)
|
|
|
|
{
|
|
|
|
if (priv->provider)
|
|
|
|
{
|
|
|
|
gtk_style_context_remove_provider (context, GTK_STYLE_PROVIDER (priv->provider));
|
|
|
|
g_clear_object (&priv->provider);
|
|
|
|
}
|
2011-09-22 19:27:22 +00:00
|
|
|
}
|
|
|
|
else
|
2014-10-02 04:05:43 +00:00
|
|
|
{
|
|
|
|
PangoFontDescription *desc;
|
2016-04-18 19:04:37 +00:00
|
|
|
gchar *data;
|
2014-10-02 04:05:43 +00:00
|
|
|
|
|
|
|
if (!priv->provider)
|
|
|
|
{
|
|
|
|
priv->provider = gtk_css_provider_new ();
|
|
|
|
gtk_style_context_add_provider (context,
|
|
|
|
GTK_STYLE_PROVIDER (priv->provider),
|
|
|
|
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
|
|
|
|
}
|
|
|
|
|
|
|
|
desc = pango_font_description_copy (priv->font_desc);
|
2003-07-01 19:52:07 +00:00
|
|
|
|
2014-10-02 04:05:43 +00:00
|
|
|
if (!priv->use_size)
|
|
|
|
pango_font_description_unset_fields (desc, PANGO_FONT_MASK_SIZE);
|
|
|
|
|
2018-04-05 10:22:43 +00:00
|
|
|
data = pango_font_description_to_css (desc,
|
|
|
|
priv->font_features,
|
|
|
|
pango_language_to_string (priv->language));
|
2016-10-17 14:09:12 +00:00
|
|
|
gtk_css_provider_load_from_data (priv->provider, data, -1);
|
2004-01-23 22:55:47 +00:00
|
|
|
|
2014-10-02 04:05:43 +00:00
|
|
|
g_free (data);
|
|
|
|
pango_font_description_free (desc);
|
|
|
|
}
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_button_update_font_info (GtkFontButton *font_button)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2014-08-15 18:10:55 +00:00
|
|
|
const gchar *fam_name;
|
|
|
|
const gchar *face_name;
|
2003-07-01 19:52:07 +00:00
|
|
|
gchar *family_style;
|
2011-09-11 22:13:26 +00:00
|
|
|
|
2014-08-15 19:15:45 +00:00
|
|
|
if (priv->font_family)
|
|
|
|
fam_name = pango_font_family_get_name (priv->font_family);
|
|
|
|
else
|
2016-02-16 23:33:16 +00:00
|
|
|
fam_name = C_("font", "None");
|
2014-08-15 19:15:45 +00:00
|
|
|
if (priv->font_face)
|
|
|
|
face_name = pango_font_face_get_face_name (priv->font_face);
|
|
|
|
else
|
|
|
|
face_name = "";
|
2011-09-11 22:13:26 +00:00
|
|
|
|
2018-03-27 20:10:19 +00:00
|
|
|
if ((priv->level & GTK_FONT_CHOOSER_LEVEL_STYLE) != 0)
|
2017-12-21 16:58:20 +00:00
|
|
|
family_style = g_strconcat (fam_name, " ", face_name, NULL);
|
2018-03-27 20:10:19 +00:00
|
|
|
else
|
|
|
|
family_style = g_strdup (fam_name);
|
2011-09-11 23:18:58 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
gtk_label_set_text (GTK_LABEL (priv->font_label), family_style);
|
2003-07-01 19:52:07 +00:00
|
|
|
g_free (family_style);
|
|
|
|
|
2018-03-27 20:10:19 +00:00
|
|
|
if ((priv->level & GTK_FONT_CHOOSER_LEVEL_SIZE) != 0)
|
2003-07-01 19:52:07 +00:00
|
|
|
{
|
2011-09-22 19:35:25 +00:00
|
|
|
/* mirror Pango, which doesn't translate this either */
|
2014-08-15 19:09:45 +00:00
|
|
|
gchar *size = g_strdup_printf ("%2.4g%s",
|
2011-09-22 19:35:25 +00:00
|
|
|
pango_font_description_get_size (priv->font_desc) / (double)PANGO_SCALE,
|
|
|
|
pango_font_description_get_size_is_absolute (priv->font_desc) ? "px" : "");
|
2017-12-21 16:58:20 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
gtk_label_set_text (GTK_LABEL (priv->size_label), size);
|
2017-12-21 16:58:20 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
g_free (size);
|
2017-12-21 16:58:20 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
gtk_widget_show (priv->font_size_box);
|
2003-07-01 19:52:07 +00:00
|
|
|
}
|
2017-12-21 16:58:20 +00:00
|
|
|
else
|
2018-06-18 11:11:06 +00:00
|
|
|
gtk_widget_hide (priv->font_size_box);
|
2017-12-21 16:58:20 +00:00
|
|
|
|
2003-07-01 19:52:07 +00:00
|
|
|
|
|
|
|
gtk_font_button_label_use_font (font_button);
|
2017-12-21 16:58:20 +00:00
|
|
|
}
|
2017-12-21 15:51:04 +00:00
|
|
|
|
|
|
|
static void
|
2018-06-18 11:11:06 +00:00
|
|
|
gtk_font_button_set_level (GtkFontButton *font_button,
|
2017-12-21 15:51:04 +00:00
|
|
|
GtkFontChooserLevel level)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2017-12-21 15:51:04 +00:00
|
|
|
|
|
|
|
if (priv->level == level)
|
|
|
|
return;
|
|
|
|
|
|
|
|
priv->level = level;
|
|
|
|
|
|
|
|
if (priv->font_dialog)
|
2017-12-21 16:58:20 +00:00
|
|
|
gtk_font_chooser_set_level (GTK_FONT_CHOOSER (priv->font_dialog), level);
|
2017-12-21 15:51:04 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
gtk_font_button_update_font_info (font_button);
|
2017-12-21 15:51:04 +00:00
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
g_object_notify (G_OBJECT (font_button), "level");
|
2017-12-21 15:51:04 +00:00
|
|
|
}
|
2018-04-02 17:34:22 +00:00
|
|
|
|
|
|
|
static void
|
2018-06-18 11:11:06 +00:00
|
|
|
gtk_font_button_set_language (GtkFontButton *font_button,
|
2018-04-02 17:34:22 +00:00
|
|
|
const char *language)
|
|
|
|
{
|
2018-06-18 11:11:06 +00:00
|
|
|
GtkFontButtonPrivate *priv = gtk_font_button_get_instance_private (font_button);
|
2018-04-02 17:34:22 +00:00
|
|
|
|
|
|
|
priv->language = pango_language_from_string (language);
|
|
|
|
|
|
|
|
if (priv->font_dialog)
|
|
|
|
gtk_font_chooser_set_language (GTK_FONT_CHOOSER (priv->font_dialog), language);
|
|
|
|
|
2018-06-18 11:11:06 +00:00
|
|
|
g_object_notify (G_OBJECT (font_button), "language");
|
2018-04-02 17:34:22 +00:00
|
|
|
}
|