1998-06-15 23:29:27 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* GtkFontSelection widget for Gtk+, by Damon Chaplin, May 1998.
|
|
|
|
* Based on the GnomeFontSelector widget, by Elliot Lee, but major changes.
|
|
|
|
* The GnomeFontSelector was derived from app/text_tool.c in the GIMP.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
1999-02-24 07:37:18 +00:00
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-1999. 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/.
|
|
|
|
*/
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/*
|
|
|
|
* Limits:
|
|
|
|
*
|
|
|
|
* Fontnames - A maximum of MAX_FONTS (32767) fontnames will be retrieved
|
|
|
|
* from X Windows with XListFonts(). Any more are ignored.
|
|
|
|
* I think this limit may have been set because of a limit in
|
|
|
|
* GtkList. It could possibly be increased since we are using
|
|
|
|
* GtkClists now, but I'd be surprised if it was reached.
|
|
|
|
* Field length - XLFD_MAX_FIELD_LEN is the maximum length that any field of a
|
|
|
|
* fontname can be for it to be considered valid. Others are
|
|
|
|
* ignored.
|
|
|
|
* Properties - Maximum of 65535 choices for each font property - guint16's
|
|
|
|
* are used as indices, e.g. in the FontInfo struct.
|
|
|
|
* Combinations - Maximum of 65535 combinations of properties for each font
|
|
|
|
* family - a guint16 is used in the FontInfo struct.
|
|
|
|
* Font size - Minimum font size of 2 pixels/points, since trying to load
|
|
|
|
* some fonts with a size of 1 can cause X to hang.
|
|
|
|
* (e.g. the Misc Fixed fonts).
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Possible Improvements:
|
|
|
|
*
|
|
|
|
* Font Styles - could sort the styles into a reasonable order - regular
|
1998-10-30 01:34:06 +00:00
|
|
|
* first, then bold, bold italic etc.
|
1998-06-15 23:29:27 +00:00
|
|
|
*
|
|
|
|
* I18N - the default preview text is not useful for international
|
|
|
|
* fonts. Maybe the first few characters of the font could be
|
|
|
|
* displayed instead.
|
|
|
|
* - fontsets? should these be handled by the font dialog?
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Debugging: compile with -DFONTSEL_DEBUG for lots of debugging output.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
1999-03-13 16:40:24 +00:00
|
|
|
#include "gdk/gdk.h"
|
1999-04-25 21:55:05 +00:00
|
|
|
/* Protect against the CHARSET struct in Win32 */
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
1999-04-25 21:55:05 +00:00
|
|
|
# define CHARSET CHARSETstruct
|
|
|
|
#endif
|
Merge in Win32 version: Define macro GDKVAR for declaring gdk variables
* gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
declaring gdk variables exported/imported from the DLL. New image
type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
GDK_DRAG_PROTO_OLE2.
* gdk/gdk.h: Merge in Win32 version: Two new functions,
gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
declared only for the Win32 version, but could be in the X11
version as well. (Needed for a Xlib-less gdk_imlib.)
gdk_color_hash should have only one parameter. Declare
gdk_threads_mutex with GDKVAR.
* gdk/gdkcolor.c (gdk_color_hash): As a hash function should have
just one parameter.
* gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
per pixel, not bits.
* gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
Fetch bpp (which means bits-per-pixel here) from another place on
Win32. Accept also depth==32 (which we might get on Win32) with
bpp==32.
* gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
in the backend-dependent directory, not in the common gdk
directory.
* gtk/testgtk.c: Ditto. Also, don't use ../gdk patchs to gdk
headers.
1999-03-17 23:02:10 +00:00
|
|
|
#include "gdkx.h"
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
1999-04-25 21:55:05 +00:00
|
|
|
# undef CHARSET
|
|
|
|
#endif
|
1998-06-15 23:29:27 +00:00
|
|
|
#include "gdk/gdkkeysyms.h"
|
|
|
|
|
|
|
|
#include "gtkbutton.h"
|
1998-10-30 01:34:06 +00:00
|
|
|
#include "gtkcheckbutton.h"
|
1998-06-15 23:29:27 +00:00
|
|
|
#include "gtkclist.h"
|
|
|
|
#include "gtkentry.h"
|
|
|
|
#include "gtkfontsel.h"
|
|
|
|
#include "gtkframe.h"
|
|
|
|
#include "gtkhbbox.h"
|
|
|
|
#include "gtkhbox.h"
|
|
|
|
#include "gtklabel.h"
|
|
|
|
#include "gtknotebook.h"
|
|
|
|
#include "gtkradiobutton.h"
|
|
|
|
#include "gtksignal.h"
|
|
|
|
#include "gtktable.h"
|
|
|
|
#include "gtkvbox.h"
|
1998-11-05 15:44:22 +00:00
|
|
|
#include "gtkscrolledwindow.h"
|
1998-12-18 01:32:33 +00:00
|
|
|
#include "gtkintl.h"
|
1998-06-15 23:29:27 +00:00
|
|
|
|
|
|
|
/* The maximum number of fontnames requested with XListFonts(). */
|
|
|
|
#define MAX_FONTS 32767
|
|
|
|
|
|
|
|
/* This is the largest field length we will accept. If a fontname has a field
|
|
|
|
larger than this we will skip it. */
|
|
|
|
#define XLFD_MAX_FIELD_LEN 64
|
|
|
|
|
|
|
|
/* These are what we use as the standard font sizes, for the size clist.
|
|
|
|
Note that when using points we still show these integer point values but
|
|
|
|
we work internally in decipoints (and decipoint values can be typed in). */
|
1998-11-30 19:07:15 +00:00
|
|
|
static const guint16 font_sizes[] = {
|
1998-06-15 23:29:27 +00:00
|
|
|
8, 9, 10, 11, 12, 13, 14, 16, 18, 20, 22, 24, 26, 28,
|
|
|
|
32, 36, 40, 48, 56, 64, 72
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Initial font metric & size (Remember point sizes are in decipoints).
|
|
|
|
The font size should match one of those in the font_sizes array. */
|
1998-10-30 01:34:06 +00:00
|
|
|
#define INITIAL_METRIC GTK_FONT_METRIC_POINTS
|
1998-06-15 23:29:27 +00:00
|
|
|
#define INITIAL_FONT_SIZE 140
|
|
|
|
|
|
|
|
/* This is the default text shown in the preview entry, though the user
|
|
|
|
can set it. Remember that some fonts only have capital letters. */
|
|
|
|
#define PREVIEW_TEXT "abcdefghijk ABCDEFGHIJK"
|
|
|
|
|
|
|
|
/* This is the initial and maximum height of the preview entry (it expands
|
|
|
|
when large font sizes are selected). Initial height is also the minimum. */
|
|
|
|
#define INITIAL_PREVIEW_HEIGHT 44
|
|
|
|
#define MAX_PREVIEW_HEIGHT 300
|
|
|
|
|
|
|
|
/* These are the sizes of the font, style & size clists. */
|
|
|
|
#define FONT_LIST_HEIGHT 136
|
1998-12-07 20:56:46 +00:00
|
|
|
#define FONT_LIST_WIDTH 190
|
|
|
|
#define FONT_STYLE_LIST_WIDTH 170
|
1998-06-15 23:29:27 +00:00
|
|
|
#define FONT_SIZE_LIST_WIDTH 60
|
|
|
|
|
|
|
|
/* This is the number of fields in an X Logical Font Description font name.
|
|
|
|
Note that we count the registry & encoding as 1. */
|
|
|
|
#define GTK_XLFD_NUM_FIELDS 13
|
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
typedef struct _GtkFontSelInfo GtkFontSelInfo;
|
|
|
|
typedef struct _FontInfo FontInfo;
|
|
|
|
typedef struct _FontStyle FontStyle;
|
|
|
|
|
|
|
|
/* This struct represents one family of fonts (with one foundry), e.g. adobe
|
|
|
|
courier or sony fixed. It stores the family name, the index of the foundry
|
|
|
|
name, and the index of and number of available styles. */
|
|
|
|
struct _FontInfo
|
|
|
|
{
|
|
|
|
gchar *family;
|
|
|
|
guint16 foundry;
|
|
|
|
gint style_index;
|
|
|
|
guint16 nstyles;
|
|
|
|
};
|
1998-10-30 01:34:06 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
/* This represents one style, as displayed in the Font Style clist. It can
|
|
|
|
have a number of available pixel sizes and point sizes. The indexes point
|
1998-10-30 01:34:06 +00:00
|
|
|
into the two big fontsel_info->pixel_sizes & fontsel_info->point_sizes
|
|
|
|
arrays. The displayed flag is used when displaying styles to remember which
|
|
|
|
styles have already been displayed. Note that it is combined with the
|
|
|
|
GtkFontType in the flags field. */
|
|
|
|
#define GTK_FONT_DISPLAYED (1 << 7)
|
1998-06-16 03:40:04 +00:00
|
|
|
struct _FontStyle
|
|
|
|
{
|
|
|
|
guint16 properties[GTK_NUM_STYLE_PROPERTIES];
|
|
|
|
gint pixel_sizes_index;
|
|
|
|
guint16 npixel_sizes;
|
|
|
|
gint point_sizes_index;
|
|
|
|
guint16 npoint_sizes;
|
|
|
|
guint8 flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkFontSelInfo {
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
/* This is a table with each FontInfo representing one font family+foundry */
|
|
|
|
FontInfo *font_info;
|
|
|
|
gint nfonts;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
/* This stores all the valid combinations of properties for every family.
|
|
|
|
Each FontInfo holds an index into its own space in this one big array. */
|
|
|
|
FontStyle *font_styles;
|
|
|
|
gint nstyles;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
/* This stores all the font sizes available for every style.
|
|
|
|
Each style holds an index into these arrays. */
|
|
|
|
guint16 *pixel_sizes;
|
|
|
|
guint16 *point_sizes;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-19 01:26:24 +00:00
|
|
|
/* These are the arrays of strings of all possible weights, slants,
|
|
|
|
set widths, spacings, charsets & foundries, and the amount of space
|
|
|
|
allocated for each array. */
|
1998-06-16 03:40:04 +00:00
|
|
|
gchar **properties[GTK_NUM_FONT_PROPERTIES];
|
|
|
|
guint16 nproperties[GTK_NUM_FONT_PROPERTIES];
|
|
|
|
guint16 space_allocated[GTK_NUM_FONT_PROPERTIES];
|
|
|
|
};
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* These are the field numbers in the X Logical Font Description fontnames,
|
|
|
|
e.g. -adobe-courier-bold-o-normal--25-180-100-100-m-150-iso8859-1 */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
XLFD_FOUNDRY = 0,
|
|
|
|
XLFD_FAMILY = 1,
|
|
|
|
XLFD_WEIGHT = 2,
|
|
|
|
XLFD_SLANT = 3,
|
|
|
|
XLFD_SET_WIDTH = 4,
|
|
|
|
XLFD_ADD_STYLE = 5,
|
|
|
|
XLFD_PIXELS = 6,
|
|
|
|
XLFD_POINTS = 7,
|
|
|
|
XLFD_RESOLUTION_X = 8,
|
|
|
|
XLFD_RESOLUTION_Y = 9,
|
|
|
|
XLFD_SPACING = 10,
|
|
|
|
XLFD_AVERAGE_WIDTH = 11,
|
|
|
|
XLFD_CHARSET = 12
|
|
|
|
} FontField;
|
|
|
|
|
|
|
|
/* These are the names of the fields, used on the info & filter page. */
|
1998-11-30 19:07:15 +00:00
|
|
|
static const gchar* xlfd_field_names[GTK_XLFD_NUM_FIELDS] = {
|
1998-12-18 01:32:33 +00:00
|
|
|
N_("Foundry:"),
|
|
|
|
N_("Family:"),
|
|
|
|
N_("Weight:"),
|
|
|
|
N_("Slant:"),
|
|
|
|
N_("Set Width:"),
|
|
|
|
N_("Add Style:"),
|
|
|
|
N_("Pixel Size:"),
|
|
|
|
N_("Point Size:"),
|
|
|
|
N_("Resolution X:"),
|
|
|
|
N_("Resolution Y:"),
|
|
|
|
N_("Spacing:"),
|
|
|
|
N_("Average Width:"),
|
|
|
|
N_("Charset:"),
|
1998-06-15 23:29:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* These are the array indices of the font properties used in several arrays,
|
|
|
|
and should match the xlfd_index array below. */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
WEIGHT = 0,
|
|
|
|
SLANT = 1,
|
|
|
|
SET_WIDTH = 2,
|
|
|
|
SPACING = 3,
|
|
|
|
CHARSET = 4,
|
|
|
|
FOUNDRY = 5
|
|
|
|
} PropertyIndexType;
|
|
|
|
|
|
|
|
/* This is used to look up a field in a fontname given one of the above
|
|
|
|
property indices. */
|
1998-11-30 19:07:15 +00:00
|
|
|
static const FontField xlfd_index[GTK_NUM_FONT_PROPERTIES] = {
|
1998-06-15 23:29:27 +00:00
|
|
|
XLFD_WEIGHT,
|
|
|
|
XLFD_SLANT,
|
|
|
|
XLFD_SET_WIDTH,
|
|
|
|
XLFD_SPACING,
|
|
|
|
XLFD_CHARSET,
|
|
|
|
XLFD_FOUNDRY
|
|
|
|
};
|
|
|
|
|
|
|
|
/* These are the positions of the properties in the filter table - x, y. */
|
1998-11-30 19:07:15 +00:00
|
|
|
static const gint filter_positions[GTK_NUM_FONT_PROPERTIES][2] = {
|
1998-06-15 23:29:27 +00:00
|
|
|
{ 1, 0 }, { 0, 2 }, { 1, 2 }, { 2, 2 }, { 2, 0 }, { 0, 0 }
|
|
|
|
};
|
1998-11-30 19:07:15 +00:00
|
|
|
static const gint filter_heights[GTK_NUM_FONT_PROPERTIES] = {
|
1998-10-30 01:34:06 +00:00
|
|
|
100, 70, 70, 40, 100, 100
|
1998-06-15 23:29:27 +00:00
|
|
|
};
|
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* This is returned by gtk_font_selection_filter_state to describe if a
|
|
|
|
property value is filtered. e.g. if 'bold' has been selected on the filter
|
|
|
|
page, then that will return 'FILTERED' and 'black' will be 'NOT_FILTERED'.
|
|
|
|
If none of the weight values are selected, they all return 'NOT_SET'. */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
FILTERED,
|
|
|
|
NOT_FILTERED,
|
|
|
|
NOT_SET
|
|
|
|
} GtkFontPropertyFilterState;
|
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
static GtkFontSelInfo *fontsel_info = NULL;
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* The initial size and increment of each of the arrays of property values. */
|
|
|
|
#define PROPERTY_ARRAY_INCREMENT 16
|
|
|
|
|
|
|
|
static void gtk_font_selection_class_init (GtkFontSelectionClass *klass);
|
|
|
|
static void gtk_font_selection_init (GtkFontSelection *fontsel);
|
|
|
|
static void gtk_font_selection_destroy (GtkObject *object);
|
|
|
|
|
|
|
|
/* These are all used for class initialization - loading in the fonts etc. */
|
1998-06-16 03:40:04 +00:00
|
|
|
static void gtk_font_selection_get_fonts (void);
|
|
|
|
static void gtk_font_selection_insert_font (GSList *fontnames[],
|
1998-06-15 23:29:27 +00:00
|
|
|
gint *ntable,
|
|
|
|
gchar *fontname);
|
1998-06-16 03:40:04 +00:00
|
|
|
static gint gtk_font_selection_insert_field (gchar *fontname,
|
1998-06-15 23:29:27 +00:00
|
|
|
gint prop);
|
|
|
|
|
|
|
|
/* These are the callbacks & related functions. */
|
|
|
|
static void gtk_font_selection_select_font (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
gpointer data);
|
|
|
|
static gint gtk_font_selection_on_clist_key_press (GtkWidget *clist,
|
|
|
|
GdkEventKey *event,
|
|
|
|
GtkFontSelection *fs);
|
|
|
|
static gboolean gtk_font_selection_select_next (GtkFontSelection *fs,
|
|
|
|
GtkWidget *clist,
|
|
|
|
gint step);
|
|
|
|
static void gtk_font_selection_show_available_styles
|
1998-08-18 03:59:41 +00:00
|
|
|
(GtkFontSelection *fs);
|
1998-06-19 01:26:24 +00:00
|
|
|
static void gtk_font_selection_select_best_style (GtkFontSelection *fs,
|
|
|
|
gboolean use_first);
|
1998-06-15 23:29:27 +00:00
|
|
|
|
|
|
|
static void gtk_font_selection_select_style (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
gpointer data);
|
|
|
|
static void gtk_font_selection_show_available_sizes
|
1998-08-18 03:59:41 +00:00
|
|
|
(GtkFontSelection *fs);
|
1998-06-15 23:29:27 +00:00
|
|
|
static gint gtk_font_selection_size_key_press (GtkWidget *w,
|
|
|
|
GdkEventKey *event,
|
|
|
|
gpointer data);
|
|
|
|
static void gtk_font_selection_select_best_size (GtkFontSelection *fs);
|
|
|
|
static void gtk_font_selection_select_size (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
static void gtk_font_selection_metric_callback (GtkWidget *w,
|
|
|
|
gpointer data);
|
|
|
|
static void gtk_font_selection_expose_list (GtkWidget *w,
|
|
|
|
GdkEventExpose *event,
|
|
|
|
gpointer data);
|
1998-12-07 20:56:46 +00:00
|
|
|
static void gtk_font_selection_realize_list (GtkWidget *widget,
|
|
|
|
gpointer data);
|
1998-06-15 23:29:27 +00:00
|
|
|
|
|
|
|
static void gtk_font_selection_switch_page (GtkWidget *w,
|
|
|
|
GtkNotebookPage *page,
|
|
|
|
gint page_num,
|
|
|
|
gpointer data);
|
|
|
|
static void gtk_font_selection_show_font_info (GtkFontSelection *fs);
|
|
|
|
|
|
|
|
static void gtk_font_selection_select_filter (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontSelection *fs);
|
1998-06-15 23:29:27 +00:00
|
|
|
static void gtk_font_selection_unselect_filter (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontSelection *fs);
|
|
|
|
static void gtk_font_selection_update_filter (GtkFontSelection *fs);
|
1998-06-15 23:29:27 +00:00
|
|
|
static gboolean gtk_font_selection_style_visible (GtkFontSelection *fs,
|
|
|
|
FontInfo *font,
|
|
|
|
gint style);
|
|
|
|
static void gtk_font_selection_reset_filter (GtkWidget *w,
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontSelection *fs);
|
1998-06-19 01:26:24 +00:00
|
|
|
static void gtk_font_selection_on_clear_filter (GtkWidget *w,
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontSelection *fs);
|
|
|
|
static void gtk_font_selection_show_available_fonts
|
|
|
|
(GtkFontSelection *fs);
|
1998-06-15 23:29:27 +00:00
|
|
|
static void gtk_font_selection_clear_filter (GtkFontSelection *fs);
|
1998-10-30 01:34:06 +00:00
|
|
|
static void gtk_font_selection_update_filter_lists(GtkFontSelection *fs);
|
|
|
|
static GtkFontPropertyFilterState gtk_font_selection_filter_state
|
|
|
|
(GtkFontSelection *fs,
|
|
|
|
GtkFontFilterType filter_type,
|
|
|
|
gint property,
|
|
|
|
gint index);
|
1998-06-15 23:29:27 +00:00
|
|
|
|
|
|
|
/* Misc. utility functions. */
|
|
|
|
static gboolean gtk_font_selection_load_font (GtkFontSelection *fs);
|
|
|
|
static void gtk_font_selection_update_preview (GtkFontSelection *fs);
|
|
|
|
|
|
|
|
static gint gtk_font_selection_find_font (GtkFontSelection *fs,
|
|
|
|
gchar *family,
|
|
|
|
guint16 foundry);
|
|
|
|
static guint16 gtk_font_selection_field_to_index (gchar **table,
|
|
|
|
gint ntable,
|
|
|
|
gchar *field);
|
|
|
|
|
|
|
|
static gchar* gtk_font_selection_expand_slant_code (gchar *slant);
|
|
|
|
static gchar* gtk_font_selection_expand_spacing_code(gchar *spacing);
|
|
|
|
|
|
|
|
/* Functions for handling X Logical Font Description fontnames. */
|
|
|
|
static gboolean gtk_font_selection_is_xlfd_font_name (const gchar *fontname);
|
|
|
|
static char* gtk_font_selection_get_xlfd_field (const gchar *fontname,
|
|
|
|
FontField field_num,
|
|
|
|
gchar *buffer);
|
|
|
|
static gchar * gtk_font_selection_create_xlfd (gint size,
|
|
|
|
GtkFontMetricType metric,
|
|
|
|
gchar *foundry,
|
|
|
|
gchar *family,
|
|
|
|
gchar *weight,
|
|
|
|
gchar *slant,
|
|
|
|
gchar *set_width,
|
|
|
|
gchar *spacing,
|
|
|
|
gchar *charset);
|
|
|
|
|
|
|
|
|
|
|
|
/* FontSelectionDialog */
|
|
|
|
static void gtk_font_selection_dialog_class_init (GtkFontSelectionDialogClass *klass);
|
|
|
|
static void gtk_font_selection_dialog_init (GtkFontSelectionDialog *fontseldiag);
|
|
|
|
|
|
|
|
static gint gtk_font_selection_dialog_on_configure(GtkWidget *widget,
|
|
|
|
GdkEventConfigure *event,
|
|
|
|
GtkFontSelectionDialog *fsd);
|
|
|
|
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
1999-03-13 16:40:24 +00:00
|
|
|
static char *logfont_to_xlfd (const LOGFONT *lfp,
|
|
|
|
int size,
|
|
|
|
int res,
|
|
|
|
int avg_width);
|
|
|
|
#endif
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
static GtkWindowClass *font_selection_parent_class = NULL;
|
|
|
|
static GtkNotebookClass *font_selection_dialog_parent_class = NULL;
|
|
|
|
|
1998-08-17 14:48:51 +00:00
|
|
|
GtkType
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_font_selection_get_type()
|
|
|
|
{
|
1998-08-17 14:48:51 +00:00
|
|
|
static GtkType font_selection_type = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if(!font_selection_type)
|
|
|
|
{
|
1998-11-30 19:07:15 +00:00
|
|
|
static const GtkTypeInfo fontsel_type_info =
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
"GtkFontSelection",
|
1998-08-17 14:48:51 +00:00
|
|
|
sizeof (GtkFontSelection),
|
|
|
|
sizeof (GtkFontSelectionClass),
|
1998-06-15 23:29:27 +00:00
|
|
|
(GtkClassInitFunc) gtk_font_selection_class_init,
|
|
|
|
(GtkObjectInitFunc) gtk_font_selection_init,
|
1998-07-04 15:31:30 +00:00
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
1998-06-28 07:46:10 +00:00
|
|
|
(GtkClassInitFunc) NULL,
|
1998-06-15 23:29:27 +00:00
|
|
|
};
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-08-17 14:48:51 +00:00
|
|
|
font_selection_type = gtk_type_unique (GTK_TYPE_NOTEBOOK,
|
|
|
|
&fontsel_type_info);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return font_selection_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_selection_class_init(GtkFontSelectionClass *klass)
|
|
|
|
{
|
|
|
|
GtkObjectClass *object_class;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
object_class = (GtkObjectClass *) klass;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-08-17 14:48:51 +00:00
|
|
|
font_selection_parent_class = gtk_type_class (GTK_TYPE_NOTEBOOK);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
object_class->destroy = gtk_font_selection_destroy;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
gtk_font_selection_get_fonts ();
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_selection_init(GtkFontSelection *fontsel)
|
|
|
|
{
|
1998-11-05 15:44:22 +00:00
|
|
|
GtkWidget *scrolled_win;
|
1998-06-15 23:29:27 +00:00
|
|
|
GtkWidget *text_frame;
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkWidget *text_box, *frame;
|
1998-06-15 23:29:27 +00:00
|
|
|
GtkWidget *table, *label, *hbox, *hbox2, *clist, *button, *vbox, *alignment;
|
|
|
|
gint i, prop, row;
|
1999-01-01 23:36:32 +00:00
|
|
|
gchar *titles[] = { NULL, NULL, NULL };
|
1998-06-15 23:29:27 +00:00
|
|
|
gchar buffer[128];
|
|
|
|
gchar *size;
|
|
|
|
gint size_to_match;
|
1998-12-18 01:32:33 +00:00
|
|
|
gchar *row_text[3];
|
1998-06-15 23:29:27 +00:00
|
|
|
gchar *property, *text;
|
|
|
|
gboolean inserted;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1999-01-01 23:36:32 +00:00
|
|
|
/* Number of internationalized titles here must match number
|
|
|
|
of NULL initializers above */
|
|
|
|
titles[0] = _("Font Property");
|
|
|
|
titles[1] = _("Requested Value");
|
|
|
|
titles[2] = _("Actual Value");
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Initialize the GtkFontSelection struct. We do this here in case any
|
|
|
|
callbacks are triggered while creating the interface. */
|
|
|
|
fontsel->font = NULL;
|
|
|
|
fontsel->font_index = -1;
|
|
|
|
fontsel->style = -1;
|
|
|
|
fontsel->metric = INITIAL_METRIC;
|
|
|
|
fontsel->size = INITIAL_FONT_SIZE;
|
|
|
|
fontsel->selected_size = INITIAL_FONT_SIZE;
|
1998-10-30 01:34:06 +00:00
|
|
|
|
|
|
|
fontsel->filters[GTK_FONT_FILTER_BASE].font_type = GTK_FONT_ALL;
|
|
|
|
fontsel->filters[GTK_FONT_FILTER_USER].font_type = GTK_FONT_BITMAP
|
|
|
|
| GTK_FONT_SCALABLE;
|
|
|
|
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
fontsel->filters[GTK_FONT_FILTER_BASE].property_filters[prop] = NULL;
|
|
|
|
fontsel->filters[GTK_FONT_FILTER_BASE].property_nfilters[prop] = 0;
|
|
|
|
fontsel->filters[GTK_FONT_FILTER_USER].property_filters[prop] = NULL;
|
|
|
|
fontsel->filters[GTK_FONT_FILTER_USER].property_nfilters[prop] = 0;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
1998-08-18 03:59:41 +00:00
|
|
|
fontsel->property_values[prop] = 0;
|
|
|
|
|
1998-06-19 01:26:24 +00:00
|
|
|
/* Create the main notebook page. */
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_notebook_set_homogeneous_tabs (GTK_NOTEBOOK (fontsel), TRUE);
|
|
|
|
gtk_notebook_set_tab_hborder (GTK_NOTEBOOK (fontsel), 8);
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->main_vbox = gtk_vbox_new (FALSE, 4);
|
|
|
|
gtk_widget_show (fontsel->main_vbox);
|
1998-11-28 07:42:37 +00:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (fontsel->main_vbox), 6);
|
1998-12-18 01:32:33 +00:00
|
|
|
label = gtk_label_new(_("Font"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_notebook_append_page (GTK_NOTEBOOK (fontsel),
|
|
|
|
fontsel->main_vbox, label);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Create the table of font, style & size. */
|
|
|
|
table = gtk_table_new (3, 3, FALSE);
|
|
|
|
gtk_widget_show (table);
|
|
|
|
gtk_table_set_col_spacings(GTK_TABLE(table), 8);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->main_vbox), table, TRUE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontsel->font_label = gtk_label_new(_("Font:"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (fontsel->font_label), 0.0, 0.5);
|
|
|
|
gtk_widget_show (fontsel->font_label);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), fontsel->font_label, 0, 1, 0, 1,
|
|
|
|
GTK_FILL, 0, 0, 0);
|
1998-12-18 01:32:33 +00:00
|
|
|
label = gtk_label_new(_("Font Style:"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 1, 2, 0, 1,
|
|
|
|
GTK_FILL, 0, 0, 0);
|
1998-12-18 01:32:33 +00:00
|
|
|
label = gtk_label_new(_("Size:"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 2, 3, 0, 1,
|
|
|
|
GTK_FILL, 0, 0, 0);
|
|
|
|
|
|
|
|
fontsel->font_entry = gtk_entry_new();
|
|
|
|
gtk_entry_set_editable(GTK_ENTRY(fontsel->font_entry), FALSE);
|
|
|
|
gtk_widget_set_usize (fontsel->font_entry, 20, -1);
|
|
|
|
gtk_widget_show (fontsel->font_entry);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), fontsel->font_entry, 0, 1, 1, 2,
|
|
|
|
GTK_FILL, 0, 0, 0);
|
|
|
|
fontsel->font_style_entry = gtk_entry_new();
|
|
|
|
gtk_entry_set_editable(GTK_ENTRY(fontsel->font_style_entry), FALSE);
|
|
|
|
gtk_widget_set_usize (fontsel->font_style_entry, 20, -1);
|
|
|
|
gtk_widget_show (fontsel->font_style_entry);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), fontsel->font_style_entry, 1, 2, 1, 2,
|
|
|
|
GTK_FILL, 0, 0, 0);
|
|
|
|
fontsel->size_entry = gtk_entry_new();
|
|
|
|
gtk_widget_set_usize (fontsel->size_entry, 20, -1);
|
|
|
|
gtk_widget_show (fontsel->size_entry);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), fontsel->size_entry, 2, 3, 1, 2,
|
|
|
|
GTK_FILL, 0, 0, 0);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (fontsel->size_entry), "key_press_event",
|
|
|
|
(GtkSignalFunc) gtk_font_selection_size_key_press,
|
|
|
|
fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Create the clists */
|
|
|
|
fontsel->font_clist = gtk_clist_new(1);
|
|
|
|
gtk_clist_column_titles_hide (GTK_CLIST(fontsel->font_clist));
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_clist_set_column_auto_resize (GTK_CLIST (fontsel->font_clist), 0, TRUE);
|
1998-11-05 15:44:22 +00:00
|
|
|
scrolled_win = gtk_scrolled_window_new (NULL, NULL);
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_widget_set_usize (scrolled_win, FONT_LIST_WIDTH, FONT_LIST_HEIGHT);
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_container_add (GTK_CONTAINER (scrolled_win), fontsel->font_clist);
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),
|
|
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show(fontsel->font_clist);
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_widget_show(scrolled_win);
|
|
|
|
|
|
|
|
gtk_table_attach (GTK_TABLE (table), scrolled_win, 0, 1, 2, 3,
|
1998-06-15 23:29:27 +00:00
|
|
|
GTK_EXPAND | GTK_FILL,
|
|
|
|
GTK_EXPAND | GTK_FILL, 0, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->font_style_clist = gtk_clist_new(1);
|
|
|
|
gtk_clist_column_titles_hide (GTK_CLIST(fontsel->font_style_clist));
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_clist_set_column_auto_resize (GTK_CLIST (fontsel->font_style_clist),
|
|
|
|
0, TRUE);
|
1998-11-05 15:44:22 +00:00
|
|
|
scrolled_win = gtk_scrolled_window_new (NULL, NULL);
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_widget_set_usize (scrolled_win, FONT_STYLE_LIST_WIDTH, -1);
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_container_add (GTK_CONTAINER (scrolled_win), fontsel->font_style_clist);
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),
|
|
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show(fontsel->font_style_clist);
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_widget_show(scrolled_win);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), scrolled_win, 1, 2, 2, 3,
|
1998-06-15 23:29:27 +00:00
|
|
|
GTK_EXPAND | GTK_FILL,
|
|
|
|
GTK_EXPAND | GTK_FILL, 0, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->size_clist = gtk_clist_new(1);
|
|
|
|
gtk_clist_column_titles_hide (GTK_CLIST(fontsel->size_clist));
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_clist_set_column_width (GTK_CLIST(fontsel->size_clist), 0, 20);
|
1998-11-05 15:44:22 +00:00
|
|
|
scrolled_win = gtk_scrolled_window_new (NULL, NULL);
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_widget_set_usize (scrolled_win, FONT_SIZE_LIST_WIDTH, -1);
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_container_add (GTK_CONTAINER (scrolled_win), fontsel->size_clist);
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),
|
|
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show(fontsel->size_clist);
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_widget_show(scrolled_win);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), scrolled_win, 2, 3, 2, 3,
|
1998-06-15 23:29:27 +00:00
|
|
|
GTK_FILL, GTK_FILL, 0, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Insert the fonts. If there exist fonts with the same family but
|
|
|
|
different foundries, then the foundry name is appended in brackets. */
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_font_selection_show_available_fonts(fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_signal_connect (GTK_OBJECT (fontsel->font_clist), "select_row",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_select_font),
|
|
|
|
fontsel);
|
|
|
|
GTK_WIDGET_SET_FLAGS (fontsel->font_clist, GTK_CAN_FOCUS);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (fontsel->font_clist), "key_press_event",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_on_clist_key_press),
|
|
|
|
fontsel);
|
|
|
|
gtk_signal_connect_after (GTK_OBJECT (fontsel->font_clist), "expose_event",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_expose_list),
|
|
|
|
fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_signal_connect (GTK_OBJECT (fontsel->font_style_clist), "select_row",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_select_style),
|
|
|
|
fontsel);
|
|
|
|
GTK_WIDGET_SET_FLAGS (fontsel->font_style_clist, GTK_CAN_FOCUS);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (fontsel->font_style_clist),
|
|
|
|
"key_press_event",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_on_clist_key_press),
|
|
|
|
fontsel);
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_signal_connect_after (GTK_OBJECT (fontsel->font_style_clist),
|
|
|
|
"realize",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_realize_list),
|
|
|
|
fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Insert the standard font sizes */
|
|
|
|
gtk_clist_freeze (GTK_CLIST(fontsel->size_clist));
|
|
|
|
size_to_match = INITIAL_FONT_SIZE;
|
1998-10-30 01:34:06 +00:00
|
|
|
if (INITIAL_METRIC == GTK_FONT_METRIC_POINTS)
|
1998-06-15 23:29:27 +00:00
|
|
|
size_to_match = size_to_match / 10;
|
|
|
|
for (i = 0; i < sizeof(font_sizes) / sizeof(font_sizes[0]); i++)
|
|
|
|
{
|
|
|
|
sprintf(buffer, "%i", font_sizes[i]);
|
|
|
|
size = buffer;
|
|
|
|
gtk_clist_append(GTK_CLIST(fontsel->size_clist), &size);
|
|
|
|
if (font_sizes[i] == size_to_match)
|
|
|
|
{
|
|
|
|
gtk_clist_select_row(GTK_CLIST(fontsel->size_clist), i, 0);
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->size_entry), buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gtk_clist_thaw (GTK_CLIST(fontsel->size_clist));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_signal_connect (GTK_OBJECT (fontsel->size_clist), "select_row",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_select_size),
|
|
|
|
fontsel);
|
|
|
|
GTK_WIDGET_SET_FLAGS (fontsel->size_clist, GTK_CAN_FOCUS);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (fontsel->size_clist), "key_press_event",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_on_clist_key_press),
|
|
|
|
fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* create the Reset Filter & Metric buttons */
|
1998-06-15 23:29:27 +00:00
|
|
|
hbox = gtk_hbox_new(FALSE, 8);
|
|
|
|
gtk_widget_show (hbox);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->main_vbox), hbox, FALSE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontsel->filter_button = gtk_button_new_with_label(_("Reset Filter"));
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_misc_set_padding (GTK_MISC (GTK_BIN (fontsel->filter_button)->child),
|
|
|
|
16, 0);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show(fontsel->filter_button);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), fontsel->filter_button, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_set_sensitive (fontsel->filter_button, FALSE);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (fontsel->filter_button), "clicked",
|
1998-06-19 01:26:24 +00:00
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_on_clear_filter),
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
hbox2 = gtk_hbox_new(FALSE, 0);
|
|
|
|
gtk_widget_show (hbox2);
|
|
|
|
gtk_box_pack_end (GTK_BOX (hbox), hbox2, FALSE, FALSE, 0);
|
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
label = gtk_label_new(_("Metric:"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show (label);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox2), label, FALSE, TRUE, 8);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontsel->points_button = gtk_radio_button_new_with_label(NULL, _("Points"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show (fontsel->points_button);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox2), fontsel->points_button, FALSE, TRUE, 0);
|
1998-10-30 01:34:06 +00:00
|
|
|
if (INITIAL_METRIC == GTK_FONT_METRIC_POINTS)
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(fontsel->points_button),
|
1998-06-15 23:29:27 +00:00
|
|
|
TRUE);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontsel->pixels_button = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(fontsel->points_button), _("Pixels"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show (fontsel->pixels_button);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox2), fontsel->pixels_button, FALSE, TRUE, 0);
|
1998-10-30 01:34:06 +00:00
|
|
|
if (INITIAL_METRIC == GTK_FONT_METRIC_PIXELS)
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(fontsel->pixels_button),
|
1998-06-15 23:29:27 +00:00
|
|
|
TRUE);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_signal_connect(GTK_OBJECT(fontsel->points_button), "toggled",
|
|
|
|
(GtkSignalFunc) gtk_font_selection_metric_callback,
|
|
|
|
fontsel);
|
|
|
|
gtk_signal_connect(GTK_OBJECT(fontsel->pixels_button), "toggled",
|
|
|
|
(GtkSignalFunc) gtk_font_selection_metric_callback,
|
|
|
|
fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* create the text entry widget */
|
1998-12-18 01:32:33 +00:00
|
|
|
text_frame = gtk_frame_new (_("Preview:"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show (text_frame);
|
|
|
|
gtk_frame_set_shadow_type(GTK_FRAME(text_frame), GTK_SHADOW_ETCHED_IN);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->main_vbox), text_frame,
|
|
|
|
FALSE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* This is just used to get a 4-pixel space around the preview entry. */
|
|
|
|
text_box = gtk_hbox_new (FALSE, 0);
|
|
|
|
gtk_widget_show (text_box);
|
|
|
|
gtk_container_add (GTK_CONTAINER (text_frame), text_box);
|
1998-11-28 07:42:37 +00:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (text_box), 4);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->preview_entry = gtk_entry_new ();
|
|
|
|
gtk_widget_show (fontsel->preview_entry);
|
|
|
|
gtk_widget_set_usize (fontsel->preview_entry, -1, INITIAL_PREVIEW_HEIGHT);
|
|
|
|
gtk_box_pack_start (GTK_BOX (text_box), fontsel->preview_entry,
|
|
|
|
TRUE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Create the message area */
|
|
|
|
fontsel->message_label = gtk_label_new("");
|
|
|
|
gtk_widget_show (fontsel->message_label);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->main_vbox), fontsel->message_label,
|
|
|
|
FALSE, FALSE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Create the font info page */
|
|
|
|
fontsel->info_vbox = gtk_vbox_new (FALSE, 4);
|
|
|
|
gtk_widget_show (fontsel->info_vbox);
|
1998-11-28 07:42:37 +00:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (fontsel->info_vbox), 2);
|
1998-12-18 01:32:33 +00:00
|
|
|
label = gtk_label_new(_("Font Information"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_notebook_append_page (GTK_NOTEBOOK (fontsel),
|
|
|
|
fontsel->info_vbox, label);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-11-05 15:44:22 +00:00
|
|
|
fontsel->info_clist = gtk_clist_new_with_titles (3, titles);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_set_usize (fontsel->info_clist, 390, 150);
|
|
|
|
gtk_clist_set_column_width(GTK_CLIST(fontsel->info_clist), 0, 130);
|
|
|
|
gtk_clist_set_column_width(GTK_CLIST(fontsel->info_clist), 1, 130);
|
|
|
|
gtk_clist_set_column_width(GTK_CLIST(fontsel->info_clist), 2, 130);
|
|
|
|
gtk_clist_column_titles_passive(GTK_CLIST(fontsel->info_clist));
|
1998-11-05 15:44:22 +00:00
|
|
|
scrolled_win = gtk_scrolled_window_new (NULL, NULL);
|
|
|
|
gtk_container_add (GTK_CONTAINER (scrolled_win), fontsel->info_clist);
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),
|
|
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show(fontsel->info_clist);
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_widget_show(scrolled_win);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->info_vbox), scrolled_win,
|
1998-06-15 23:29:27 +00:00
|
|
|
TRUE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Insert the property names */
|
|
|
|
gtk_clist_freeze (GTK_CLIST(fontsel->info_clist));
|
|
|
|
row_text[1] = "";
|
|
|
|
row_text[2] = "";
|
|
|
|
for (i = 0; i < GTK_XLFD_NUM_FIELDS; i++)
|
|
|
|
{
|
1999-01-28 06:30:57 +00:00
|
|
|
row_text[0] = _(xlfd_field_names[i]);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_clist_append(GTK_CLIST(fontsel->info_clist), row_text);
|
|
|
|
gtk_clist_set_shift(GTK_CLIST(fontsel->info_clist), i, 0, 0, 4);
|
|
|
|
gtk_clist_set_shift(GTK_CLIST(fontsel->info_clist), i, 1, 0, 4);
|
|
|
|
gtk_clist_set_shift(GTK_CLIST(fontsel->info_clist), i, 2, 0, 4);
|
|
|
|
}
|
|
|
|
gtk_clist_thaw (GTK_CLIST(fontsel->info_clist));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
label = gtk_label_new(_("Requested Font Name:"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->info_vbox), label, FALSE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->requested_font_name = gtk_entry_new();
|
|
|
|
gtk_entry_set_editable(GTK_ENTRY(fontsel->requested_font_name), FALSE);
|
|
|
|
gtk_widget_show (fontsel->requested_font_name);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->info_vbox),
|
|
|
|
fontsel->requested_font_name, FALSE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
label = gtk_label_new(_("Actual Font Name:"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->info_vbox), label, FALSE, TRUE, 0);
|
|
|
|
|
|
|
|
fontsel->actual_font_name = gtk_entry_new();
|
|
|
|
gtk_entry_set_editable(GTK_ENTRY(fontsel->actual_font_name), FALSE);
|
|
|
|
gtk_widget_show (fontsel->actual_font_name);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->info_vbox),
|
|
|
|
fontsel->actual_font_name, FALSE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
sprintf(buffer, _("%i fonts available with a total of %i styles."),
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->nfonts, fontsel_info->nstyles);
|
1998-06-15 23:29:27 +00:00
|
|
|
label = gtk_label_new(buffer);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->info_vbox), label, FALSE, FALSE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_signal_connect (GTK_OBJECT (fontsel), "switch_page",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_switch_page),
|
|
|
|
fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Create the Filter page. */
|
|
|
|
fontsel->filter_vbox = gtk_vbox_new (FALSE, 4);
|
|
|
|
gtk_widget_show (fontsel->filter_vbox);
|
1998-11-28 07:42:37 +00:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (fontsel->filter_vbox), 2);
|
1998-12-18 01:32:33 +00:00
|
|
|
label = gtk_label_new(_("Filter"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_notebook_append_page (GTK_NOTEBOOK (fontsel),
|
|
|
|
fontsel->filter_vbox, label);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Create the font type checkbuttons. */
|
|
|
|
frame = gtk_frame_new (NULL);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->filter_vbox), frame, FALSE, TRUE, 0);
|
|
|
|
|
|
|
|
hbox = gtk_hbox_new (FALSE, 20);
|
|
|
|
gtk_widget_show (hbox);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), hbox);
|
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
label = gtk_label_new(_("Font Types:"));
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_widget_show (label);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, TRUE, 10);
|
|
|
|
|
|
|
|
hbox2 = gtk_hbox_new (TRUE, 0);
|
|
|
|
gtk_widget_show (hbox2);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), hbox2, FALSE, TRUE, 0);
|
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontsel->type_bitmaps_button = gtk_check_button_new_with_label (_("Bitmap"));
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_bitmaps_button), TRUE);
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_widget_show (fontsel->type_bitmaps_button);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox2), fontsel->type_bitmaps_button,
|
|
|
|
FALSE, TRUE, 0);
|
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontsel->type_scalable_button = gtk_check_button_new_with_label (_("Scalable"));
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_scalable_button), TRUE);
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_widget_show (fontsel->type_scalable_button);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox2), fontsel->type_scalable_button,
|
|
|
|
FALSE, TRUE, 0);
|
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontsel->type_scaled_bitmaps_button = gtk_check_button_new_with_label (_("Scaled Bitmap"));
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_widget_show (fontsel->type_scaled_bitmaps_button);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox2), fontsel->type_scaled_bitmaps_button,
|
|
|
|
FALSE, TRUE, 0);
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
table = gtk_table_new (4, 3, FALSE);
|
|
|
|
gtk_table_set_col_spacings(GTK_TABLE(table), 2);
|
|
|
|
gtk_widget_show (table);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontsel->filter_vbox), table, TRUE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
gint left = filter_positions[prop][0];
|
|
|
|
gint top = filter_positions[prop][1];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1999-01-28 06:30:57 +00:00
|
|
|
label = gtk_label_new(_(xlfd_field_names[xlfd_index[prop]]));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 1.0);
|
|
|
|
gtk_misc_set_padding (GTK_MISC (label), 0, 2);
|
|
|
|
gtk_widget_show(label);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, left, left + 1,
|
|
|
|
top, top + 1, GTK_FILL, GTK_FILL, 0, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
clist = gtk_clist_new(1);
|
|
|
|
gtk_widget_set_usize (clist, 100, filter_heights[prop]);
|
|
|
|
gtk_clist_set_selection_mode(GTK_CLIST(clist), GTK_SELECTION_MULTIPLE);
|
|
|
|
gtk_clist_column_titles_hide(GTK_CLIST(clist));
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_clist_set_column_auto_resize (GTK_CLIST (clist), 0, TRUE);
|
1998-11-05 15:44:22 +00:00
|
|
|
scrolled_win = gtk_scrolled_window_new (NULL, NULL);
|
|
|
|
gtk_container_add (GTK_CONTAINER (scrolled_win), clist);
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),
|
|
|
|
GTK_POLICY_AUTOMATIC,
|
|
|
|
GTK_POLICY_AUTOMATIC);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show(clist);
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_widget_show(scrolled_win);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* For the bottom-right cell we add the 'Reset Filter' button. */
|
1998-06-15 23:29:27 +00:00
|
|
|
if (top == 2 && left == 2)
|
|
|
|
{
|
|
|
|
vbox = gtk_vbox_new(FALSE, 0);
|
|
|
|
gtk_widget_show(vbox);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), vbox, left, left + 1,
|
|
|
|
top + 1, top + 2, GTK_FILL, GTK_FILL, 0, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), scrolled_win, TRUE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
alignment = gtk_alignment_new(0.5, 0.0, 0.8, 0.0);
|
|
|
|
gtk_widget_show(alignment);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), alignment, FALSE, TRUE, 4);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
button = gtk_button_new_with_label(_("Reset Filter"));
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_show(button);
|
|
|
|
gtk_container_add(GTK_CONTAINER(alignment), button);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_reset_filter),
|
|
|
|
fontsel);
|
|
|
|
}
|
|
|
|
else
|
1998-11-05 15:44:22 +00:00
|
|
|
gtk_table_attach (GTK_TABLE (table), scrolled_win,
|
1998-06-15 23:29:27 +00:00
|
|
|
left, left + 1, top + 1, top + 2,
|
|
|
|
GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_signal_connect (GTK_OBJECT (clist), "select_row",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_select_filter),
|
|
|
|
fontsel);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (clist), "unselect_row",
|
|
|
|
GTK_SIGNAL_FUNC(gtk_font_selection_unselect_filter),
|
|
|
|
fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Insert the property names, expanded, and in sorted order.
|
|
|
|
But we make sure that the wildcard '*' is first. */
|
|
|
|
gtk_clist_freeze (GTK_CLIST(clist));
|
1999-04-05 16:20:24 +00:00
|
|
|
property = N_("*");
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_clist_append(GTK_CLIST(clist), &property);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
for (i = 1; i < fontsel_info->nproperties[prop]; i++) {
|
1999-04-05 16:20:24 +00:00
|
|
|
property = _(fontsel_info->properties[prop][i]);
|
1998-06-15 23:29:27 +00:00
|
|
|
if (prop == SLANT)
|
|
|
|
property = gtk_font_selection_expand_slant_code(property);
|
|
|
|
else if (prop == SPACING)
|
|
|
|
property = gtk_font_selection_expand_spacing_code(property);
|
1999-04-05 16:20:24 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
inserted = FALSE;
|
|
|
|
for (row = 1; row < GTK_CLIST(clist)->rows; row++)
|
|
|
|
{
|
|
|
|
gtk_clist_get_text(GTK_CLIST(clist), row, 0, &text);
|
|
|
|
if (strcmp(property, text) < 0)
|
|
|
|
{
|
|
|
|
inserted = TRUE;
|
|
|
|
gtk_clist_insert(GTK_CLIST(clist), row, &property);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!inserted)
|
|
|
|
row = gtk_clist_append(GTK_CLIST(clist), &property);
|
1998-06-18 22:32:36 +00:00
|
|
|
gtk_clist_set_row_data(GTK_CLIST(clist), row, GINT_TO_POINTER (i));
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
gtk_clist_select_row(GTK_CLIST(clist), 0, 0);
|
|
|
|
gtk_clist_thaw (GTK_CLIST(clist));
|
|
|
|
fontsel->filter_clists[prop] = clist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
|
|
|
gtk_font_selection_new()
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-08-17 14:48:51 +00:00
|
|
|
fontsel = gtk_type_new (GTK_TYPE_FONT_SELECTION);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return GTK_WIDGET (fontsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_selection_destroy (GtkObject *object)
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_FONT_SELECTION (object));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel = GTK_FONT_SELECTION (object);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* All we have to do is unref the font, if we have one. */
|
|
|
|
if (fontsel->font)
|
|
|
|
gdk_font_unref (fontsel->font);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (GTK_OBJECT_CLASS (font_selection_parent_class)->destroy)
|
|
|
|
(* GTK_OBJECT_CLASS (font_selection_parent_class)->destroy) (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is called when the clist is exposed. Here we scroll to the current
|
|
|
|
font if necessary. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_expose_list (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel;
|
|
|
|
FontInfo *font_info;
|
|
|
|
GList *selection;
|
|
|
|
gint index;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In expose_list\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
fontsel = GTK_FONT_SELECTION(data);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
font_info = fontsel_info->font_info;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Try to scroll the font family clist to the selected item */
|
|
|
|
selection = GTK_CLIST(fontsel->font_clist)->selection;
|
|
|
|
if (selection)
|
|
|
|
{
|
|
|
|
index = GPOINTER_TO_INT (selection->data);
|
|
|
|
if (gtk_clist_row_is_visible(GTK_CLIST(fontsel->font_clist), index)
|
|
|
|
!= GTK_VISIBILITY_FULL)
|
|
|
|
gtk_clist_moveto(GTK_CLIST(fontsel->font_clist), index, -1, 0.5, 0);
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Try to scroll the font style clist to the selected item */
|
|
|
|
selection = GTK_CLIST(fontsel->font_style_clist)->selection;
|
|
|
|
if (selection)
|
|
|
|
{
|
|
|
|
index = GPOINTER_TO_INT (selection->data);
|
|
|
|
if (gtk_clist_row_is_visible(GTK_CLIST(fontsel->font_style_clist), index)
|
|
|
|
!= GTK_VISIBILITY_FULL)
|
|
|
|
gtk_clist_moveto(GTK_CLIST(fontsel->font_style_clist), index, -1,
|
|
|
|
0.5, 0);
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Try to scroll the font size clist to the selected item */
|
|
|
|
selection = GTK_CLIST(fontsel->size_clist)->selection;
|
|
|
|
if (selection)
|
|
|
|
{
|
|
|
|
index = GPOINTER_TO_INT (selection->data);
|
|
|
|
if (gtk_clist_row_is_visible(GTK_CLIST(fontsel->size_clist), index)
|
|
|
|
!= GTK_VISIBILITY_FULL)
|
|
|
|
gtk_clist_moveto(GTK_CLIST(fontsel->size_clist), index, -1, 0.5, 0);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-07 20:56:46 +00:00
|
|
|
/* This is called when the style clist is realized. We need to set any
|
|
|
|
charset rows to insensitive colours. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_realize_list (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel;
|
|
|
|
gint row;
|
|
|
|
GdkColor *inactive_fg, *inactive_bg;
|
|
|
|
|
|
|
|
#ifdef FONTSEL_DEBUG
|
|
|
|
g_message("In realize_list\n");
|
|
|
|
#endif
|
|
|
|
fontsel = GTK_FONT_SELECTION (data);
|
|
|
|
|
|
|
|
/* Set the colours for any charset rows to insensitive. */
|
|
|
|
inactive_fg = &fontsel->font_style_clist->style->fg[GTK_STATE_INSENSITIVE];
|
|
|
|
inactive_bg = &fontsel->font_style_clist->style->bg[GTK_STATE_INSENSITIVE];
|
|
|
|
|
|
|
|
for (row = 0; row < GTK_CLIST (fontsel->font_style_clist)->rows; row++)
|
|
|
|
{
|
|
|
|
if (GPOINTER_TO_INT (gtk_clist_get_row_data (GTK_CLIST (fontsel->font_style_clist), row)) == -1)
|
|
|
|
{
|
|
|
|
gtk_clist_set_foreground (GTK_CLIST (fontsel->font_style_clist),
|
|
|
|
row, inactive_fg);
|
|
|
|
gtk_clist_set_background (GTK_CLIST (fontsel->font_style_clist),
|
|
|
|
row, inactive_bg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* This is called when a family is selected in the list. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_select_font (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel;
|
|
|
|
FontInfo *font_info;
|
|
|
|
FontInfo *font;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In select_font\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
fontsel = GTK_FONT_SELECTION(data);
|
1998-06-16 03:40:04 +00:00
|
|
|
font_info = fontsel_info->font_info;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (bevent && !GTK_WIDGET_HAS_FOCUS (w))
|
|
|
|
gtk_widget_grab_focus (w);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-18 22:32:36 +00:00
|
|
|
row = GPOINTER_TO_INT (gtk_clist_get_row_data (GTK_CLIST (fontsel->font_clist), row));
|
1998-06-15 23:29:27 +00:00
|
|
|
font = &font_info[row];
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->font_entry), font->family);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* If it is already the current font, just return. */
|
|
|
|
if (fontsel->font_index == row)
|
|
|
|
return;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->font_index = row;
|
|
|
|
gtk_font_selection_show_available_styles (fontsel);
|
1998-06-19 01:26:24 +00:00
|
|
|
gtk_font_selection_select_best_style (fontsel, TRUE);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_font_selection_on_clist_key_press (GtkWidget *clist,
|
|
|
|
GdkEventKey *event,
|
|
|
|
GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In on_clist_key_press\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
if (event->keyval == GDK_Up)
|
|
|
|
return gtk_font_selection_select_next (fontsel, clist, -1);
|
|
|
|
else if (event->keyval == GDK_Down)
|
|
|
|
return gtk_font_selection_select_next (fontsel, clist, 1);
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_font_selection_select_next (GtkFontSelection *fontsel,
|
|
|
|
GtkWidget *clist,
|
|
|
|
gint step)
|
|
|
|
{
|
|
|
|
GList *selection;
|
|
|
|
gint current_row, row;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
selection = GTK_CLIST(clist)->selection;
|
|
|
|
if (!selection)
|
|
|
|
return FALSE;
|
1998-06-18 22:32:36 +00:00
|
|
|
current_row = GPOINTER_TO_INT (selection->data);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Stop the normal clist key handler from being run. */
|
|
|
|
gtk_signal_emit_stop_by_name (GTK_OBJECT (clist), "key_press_event");
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (row = current_row + step;
|
|
|
|
row >= 0 && row < GTK_CLIST(clist)->rows;
|
|
|
|
row += step)
|
|
|
|
{
|
|
|
|
/* If this is the style clist, make sure that the item is not a charset
|
|
|
|
entry. */
|
|
|
|
if (clist == fontsel->font_style_clist)
|
1998-06-18 22:32:36 +00:00
|
|
|
if (GPOINTER_TO_INT (gtk_clist_get_row_data(GTK_CLIST(clist), row)) == -1)
|
1998-06-15 23:29:27 +00:00
|
|
|
continue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Now we've found the row to select. */
|
|
|
|
if (gtk_clist_row_is_visible(GTK_CLIST(clist), row)
|
|
|
|
!= GTK_VISIBILITY_FULL)
|
|
|
|
gtk_clist_moveto(GTK_CLIST(clist), row, -1, (step < 0) ? 0 : 1, 0);
|
|
|
|
gtk_clist_select_row(GTK_CLIST(clist), row, 0);
|
1998-10-30 01:34:06 +00:00
|
|
|
break;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-10-30 01:34:06 +00:00
|
|
|
return TRUE;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This fills the font style clist with all the possible style combinations
|
|
|
|
for the current font family. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_show_available_styles (GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
FontInfo *font;
|
|
|
|
FontStyle *styles;
|
|
|
|
gint style, tmpstyle, row;
|
|
|
|
gint weight_index, slant_index, set_width_index, spacing_index;
|
|
|
|
gint charset_index;
|
|
|
|
gchar *weight, *slant, *set_width, *spacing;
|
|
|
|
gchar *charset = NULL;
|
|
|
|
gchar *new_item;
|
|
|
|
gchar buffer[XLFD_MAX_FIELD_LEN * 6 + 2];
|
|
|
|
GdkColor *inactive_fg, *inactive_bg;
|
|
|
|
gboolean show_charset;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In show_available_styles\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
1998-06-16 03:40:04 +00:00
|
|
|
font = &fontsel_info->font_info[fontsel->font_index];
|
|
|
|
styles = &fontsel_info->font_styles[font->style_index];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_clist_freeze (GTK_CLIST(fontsel->font_style_clist));
|
|
|
|
gtk_clist_clear (GTK_CLIST(fontsel->font_style_clist));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* First we mark all visible styles as not having been displayed yet,
|
|
|
|
and check if every style has the same charset. If not then we will
|
|
|
|
display the charset in the list before the styles. */
|
|
|
|
show_charset = FALSE;
|
|
|
|
charset_index = -1;
|
|
|
|
for (style = 0; style < font->nstyles; style++)
|
|
|
|
{
|
|
|
|
if (gtk_font_selection_style_visible(fontsel, font, style))
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
styles[style].flags &= ~GTK_FONT_DISPLAYED;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (charset_index == -1)
|
|
|
|
charset_index = styles[style].properties[CHARSET];
|
|
|
|
else if (charset_index != styles[style].properties[CHARSET])
|
|
|
|
show_charset = TRUE;
|
|
|
|
}
|
|
|
|
else
|
1998-10-30 01:34:06 +00:00
|
|
|
styles[style].flags |= GTK_FONT_DISPLAYED;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Step through the undisplayed styles, finding the next charset which
|
|
|
|
hasn't been displayed yet. Then display the charset on one line, if
|
|
|
|
necessary, and the visible styles indented beneath it. */
|
|
|
|
inactive_fg = &fontsel->font_style_clist->style->fg[GTK_STATE_INSENSITIVE];
|
|
|
|
inactive_bg = &fontsel->font_style_clist->style->bg[GTK_STATE_INSENSITIVE];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (style = 0; style < font->nstyles; style++)
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
if (styles[style].flags & GTK_FONT_DISPLAYED)
|
|
|
|
continue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (show_charset)
|
|
|
|
{
|
|
|
|
charset_index = styles[style].properties[CHARSET];
|
1998-06-16 03:40:04 +00:00
|
|
|
charset = fontsel_info->properties[CHARSET] [charset_index];
|
1998-06-15 23:29:27 +00:00
|
|
|
row = gtk_clist_append(GTK_CLIST(fontsel->font_style_clist),
|
|
|
|
&charset);
|
|
|
|
gtk_clist_set_row_data(GTK_CLIST(fontsel->font_style_clist), row,
|
|
|
|
(gpointer) -1);
|
1998-12-07 20:56:46 +00:00
|
|
|
if (GTK_WIDGET_REALIZED (fontsel->font_style_clist))
|
|
|
|
{
|
|
|
|
gtk_clist_set_foreground(GTK_CLIST(fontsel->font_style_clist),
|
|
|
|
row, inactive_fg);
|
|
|
|
gtk_clist_set_background(GTK_CLIST(fontsel->font_style_clist),
|
|
|
|
row, inactive_bg);
|
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (tmpstyle = style; tmpstyle < font->nstyles; tmpstyle++)
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
if (styles[tmpstyle].flags & GTK_FONT_DISPLAYED
|
1998-06-15 23:29:27 +00:00
|
|
|
|| charset_index != styles[tmpstyle].properties[CHARSET])
|
|
|
|
continue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
styles[tmpstyle].flags |= GTK_FONT_DISPLAYED;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
weight_index = styles[tmpstyle].properties[WEIGHT];
|
|
|
|
slant_index = styles[tmpstyle].properties[SLANT];
|
|
|
|
set_width_index = styles[tmpstyle].properties[SET_WIDTH];
|
|
|
|
spacing_index = styles[tmpstyle].properties[SPACING];
|
1998-06-16 03:40:04 +00:00
|
|
|
weight = fontsel_info->properties[WEIGHT] [weight_index];
|
|
|
|
slant = fontsel_info->properties[SLANT] [slant_index];
|
|
|
|
set_width = fontsel_info->properties[SET_WIDTH][set_width_index];
|
|
|
|
spacing = fontsel_info->properties[SPACING] [spacing_index];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Convert '(nil)' weights to 'regular', since it looks nicer. */
|
1999-04-05 16:20:24 +00:00
|
|
|
if (!g_strcasecmp(weight, N_("(nil)"))) weight = N_("regular");
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* We don't show default values or (nil) in the other properties. */
|
|
|
|
if (!g_strcasecmp(slant, "r")) slant = NULL;
|
|
|
|
else if (!g_strcasecmp(slant, "(nil)")) slant = NULL;
|
1999-04-05 16:20:24 +00:00
|
|
|
else if (!g_strcasecmp(slant, "i")) slant = N_("italic");
|
|
|
|
else if (!g_strcasecmp(slant, "o")) slant = N_("oblique");
|
|
|
|
else if (!g_strcasecmp(slant, "ri")) slant = N_("reverse italic");
|
|
|
|
else if (!g_strcasecmp(slant, "ro")) slant = N_("reverse oblique");
|
|
|
|
else if (!g_strcasecmp(slant, "ot")) slant = N_("other");
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (!g_strcasecmp(set_width, "normal")) set_width = NULL;
|
|
|
|
else if (!g_strcasecmp(set_width, "(nil)")) set_width = NULL;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (!g_strcasecmp(spacing, "p")) spacing = NULL;
|
|
|
|
else if (!g_strcasecmp(spacing, "(nil)")) spacing = NULL;
|
1999-04-05 16:20:24 +00:00
|
|
|
else if (!g_strcasecmp(spacing, "m")) spacing = N_("[M]");
|
|
|
|
else if (!g_strcasecmp(spacing, "c")) spacing = N_("[C]");
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Add the strings together, making sure there is 1 space between
|
|
|
|
them */
|
1999-04-05 16:20:24 +00:00
|
|
|
strcpy(buffer, _(weight));
|
1998-06-15 23:29:27 +00:00
|
|
|
if (slant)
|
|
|
|
{
|
|
|
|
strcat(buffer, " ");
|
1999-04-05 16:20:24 +00:00
|
|
|
strcat(buffer, _(slant));
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
if (set_width)
|
|
|
|
{
|
|
|
|
strcat(buffer, " ");
|
1999-04-05 16:20:24 +00:00
|
|
|
strcat(buffer, _(set_width));
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
if (spacing)
|
|
|
|
{
|
|
|
|
strcat(buffer, " ");
|
1999-04-05 16:20:24 +00:00
|
|
|
strcat(buffer, _(spacing));
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
new_item = buffer;
|
|
|
|
row = gtk_clist_append(GTK_CLIST(fontsel->font_style_clist),
|
|
|
|
&new_item);
|
|
|
|
if (show_charset)
|
|
|
|
gtk_clist_set_shift(GTK_CLIST(fontsel->font_style_clist), row, 0,
|
|
|
|
0, 4);
|
|
|
|
gtk_clist_set_row_data(GTK_CLIST(fontsel->font_style_clist), row,
|
1998-06-18 22:32:36 +00:00
|
|
|
GINT_TO_POINTER (tmpstyle));
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_clist_thaw (GTK_CLIST(fontsel->font_style_clist));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This selects a style when the user selects a font. It just uses the first
|
|
|
|
available style at present. I was thinking of trying to maintain the
|
|
|
|
selected style, e.g. bold italic, when the user selects different fonts.
|
|
|
|
However, the interface is so easy to use now I'm not sure it's worth it.
|
|
|
|
Note: This will load a font. */
|
|
|
|
static void
|
1998-06-19 01:26:24 +00:00
|
|
|
gtk_font_selection_select_best_style(GtkFontSelection *fontsel,
|
|
|
|
gboolean use_first)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
FontInfo *font;
|
|
|
|
FontStyle *styles;
|
1998-12-07 20:56:46 +00:00
|
|
|
gint row, prop, style, matched;
|
1998-12-24 17:47:02 +00:00
|
|
|
gint best_matched = -1, best_style = -1, best_row = -1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In select_best_style\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
1998-06-16 03:40:04 +00:00
|
|
|
font = &fontsel_info->font_info[fontsel->font_index];
|
|
|
|
styles = &fontsel_info->font_styles[font->style_index];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (row = 0; row < GTK_CLIST(fontsel->font_style_clist)->rows; row++)
|
|
|
|
{
|
1998-06-18 22:32:36 +00:00
|
|
|
style = GPOINTER_TO_INT (gtk_clist_get_row_data (GTK_CLIST (fontsel->font_style_clist), row));
|
1998-12-07 20:56:46 +00:00
|
|
|
/* Skip charset rows. */
|
|
|
|
if (style == -1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* If we just want the first style, we've got it. */
|
|
|
|
if (use_first)
|
1998-06-19 01:26:24 +00:00
|
|
|
{
|
1998-12-07 20:56:46 +00:00
|
|
|
best_style = style;
|
|
|
|
best_row = row;
|
1998-06-19 01:26:24 +00:00
|
|
|
break;
|
|
|
|
}
|
1998-12-07 20:56:46 +00:00
|
|
|
|
|
|
|
matched = 0;
|
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
if (fontsel->property_values[prop] == styles[style].properties[prop])
|
|
|
|
matched++;
|
|
|
|
}
|
|
|
|
if (matched > best_matched)
|
|
|
|
{
|
|
|
|
best_matched = matched;
|
|
|
|
best_style = style;
|
|
|
|
best_row = row;
|
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-12-07 20:56:46 +00:00
|
|
|
g_return_if_fail (best_style != -1);
|
1998-12-24 17:47:02 +00:00
|
|
|
g_return_if_fail (best_row != -1);
|
1998-12-07 20:56:46 +00:00
|
|
|
|
|
|
|
fontsel->style = best_style;
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
|
|
|
fontsel->property_values[prop] = styles[fontsel->style].properties[prop];
|
1998-12-07 20:56:46 +00:00
|
|
|
|
|
|
|
gtk_clist_select_row(GTK_CLIST(fontsel->font_style_clist), best_row, 0);
|
|
|
|
if (gtk_clist_row_is_visible(GTK_CLIST(fontsel->font_style_clist), best_row)
|
1998-06-19 01:26:24 +00:00
|
|
|
!= GTK_VISIBILITY_FULL)
|
1998-12-07 20:56:46 +00:00
|
|
|
gtk_clist_moveto(GTK_CLIST(fontsel->font_style_clist), best_row, -1,
|
|
|
|
0.5, 0);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_font_selection_show_available_sizes (fontsel);
|
|
|
|
gtk_font_selection_select_best_size (fontsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is called when a style is selected in the list. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_select_style (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel;
|
|
|
|
FontInfo *font_info;
|
|
|
|
FontInfo *font;
|
|
|
|
FontStyle *styles;
|
|
|
|
gint style, prop;
|
|
|
|
gchar *text;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In select_style\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
fontsel = GTK_FONT_SELECTION(data);
|
1998-06-16 03:40:04 +00:00
|
|
|
font_info = fontsel_info->font_info;
|
1998-06-15 23:29:27 +00:00
|
|
|
font = &font_info[fontsel->font_index];
|
1998-06-16 03:40:04 +00:00
|
|
|
styles = &fontsel_info->font_styles[font->style_index];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (bevent && !GTK_WIDGET_HAS_FOCUS (w))
|
|
|
|
gtk_widget_grab_focus (w);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* The style index is stored in the row data, so we just need to copy
|
|
|
|
the style values into the fontsel and reload the font. */
|
1998-06-18 22:32:36 +00:00
|
|
|
style = GPOINTER_TO_INT (gtk_clist_get_row_data(GTK_CLIST(fontsel->font_style_clist), row));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Don't allow selection of charset rows. */
|
|
|
|
if (style == -1)
|
|
|
|
{
|
|
|
|
gtk_clist_unselect_row(GTK_CLIST(fontsel->font_style_clist), row, 0);
|
|
|
|
return;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_clist_get_text(GTK_CLIST(fontsel->font_style_clist), row, 0, &text);
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->font_style_entry), text);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
|
|
|
fontsel->property_values[prop] = styles[style].properties[prop];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (fontsel->style == style)
|
|
|
|
return;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->style = style;
|
|
|
|
gtk_font_selection_show_available_sizes (fontsel);
|
|
|
|
gtk_font_selection_select_best_size (fontsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This shows all the available sizes in the size clist, according to the
|
|
|
|
current metric and the current font & style. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_show_available_sizes (GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
FontInfo *font;
|
|
|
|
FontStyle *styles, *style;
|
1998-12-07 06:37:27 +00:00
|
|
|
const guint16 *standard_sizes;
|
1999-02-25 05:52:00 +00:00
|
|
|
guint16 *bitmapped_sizes;
|
1998-06-15 23:29:27 +00:00
|
|
|
gint nstandard_sizes, nbitmapped_sizes;
|
|
|
|
gchar buffer[16], *size;
|
1999-02-25 05:52:00 +00:00
|
|
|
gfloat bitmap_size_float = 0.;
|
|
|
|
guint16 bitmap_size = 0;
|
1998-06-15 23:29:27 +00:00
|
|
|
gboolean can_match;
|
1998-10-30 01:34:06 +00:00
|
|
|
gint type_filter;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In show_available_sizes\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
1998-06-16 03:40:04 +00:00
|
|
|
font = &fontsel_info->font_info[fontsel->font_index];
|
|
|
|
styles = &fontsel_info->font_styles[font->style_index];
|
1998-06-15 23:29:27 +00:00
|
|
|
style = &styles[fontsel->style];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
standard_sizes = font_sizes;
|
|
|
|
nstandard_sizes = sizeof(font_sizes) / sizeof(font_sizes[0]);
|
1998-10-30 01:34:06 +00:00
|
|
|
if (fontsel->metric == GTK_FONT_METRIC_POINTS)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
bitmapped_sizes = &fontsel_info->point_sizes[style->point_sizes_index];
|
1998-06-15 23:29:27 +00:00
|
|
|
nbitmapped_sizes = style->npoint_sizes;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
bitmapped_sizes = &fontsel_info->pixel_sizes[style->pixel_sizes_index];
|
1998-06-15 23:29:27 +00:00
|
|
|
nbitmapped_sizes = style->npixel_sizes;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Only show the standard sizes if a scalable font is available. */
|
|
|
|
type_filter = fontsel->filters[GTK_FONT_FILTER_BASE].font_type
|
|
|
|
& fontsel->filters[GTK_FONT_FILTER_USER].font_type;
|
|
|
|
|
|
|
|
if (!((style->flags & GTK_FONT_SCALABLE_BITMAP
|
|
|
|
&& type_filter & GTK_FONT_SCALABLE_BITMAP)
|
|
|
|
|| (style->flags & GTK_FONT_SCALABLE
|
|
|
|
&& type_filter & GTK_FONT_SCALABLE)))
|
1998-06-15 23:29:27 +00:00
|
|
|
nstandard_sizes = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_clist_freeze (GTK_CLIST(fontsel->size_clist));
|
|
|
|
gtk_clist_clear (GTK_CLIST(fontsel->size_clist));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Interleave the standard sizes with the bitmapped sizes so we get a list
|
|
|
|
of ascending sizes. If the metric is points, we have to convert the
|
|
|
|
decipoints to points. */
|
|
|
|
while (nstandard_sizes || nbitmapped_sizes)
|
|
|
|
{
|
|
|
|
can_match = TRUE;
|
1999-02-25 05:52:00 +00:00
|
|
|
|
|
|
|
if (nbitmapped_sizes)
|
Adapt cast macros to standard.
Fri Nov 19 10:34:41 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkgamma.h: Adapt cast macros to standard.
[ Merges from 1.2 ]
Tue Nov 16 10:15:54 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkitemfactory.c (gtk_item_factory_parse_path):
If translation does not include a '/', use entire
translation instead of crashing.
Sun Oct 31 22:21:11 1999 Tim Janik <timj@gtk.org>
* docs/gtk_tut.sgml:
s/gtk_accel_group_attach/gtk_window_add_accel_group/.
Sat Oct 30 09:09:09 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkselection.c (gtk_target_list_remove): Use
g_list_remove_link, not g_list_remove.
[ From Geert Bevin <gbevin@thunderstorms.org> ]
Sun Oct 24 07:41:40 1999 Tim Janik <timj@gtk.org>
* gtk/gtkclist.c (real_undo_selection): commented out g_print()
statement upon unselection (how the heck did that slip in?).
Sat Oct 23 03:03:08 1999 Tim Janik <timj@gtk.org>
* gtk/gtktext.c (gtk_text_freeze):
(gtk_text_thaw): undraw/draw cursor here to avoid unnecessary scrolling
in frozen state (and aparently crashes). patch provided by Anders
Melchiorsen <and@kampsax.dtu.dk>.
Sat Oct 23 02:53:20 1999 Tim Janik <timj@gtk.org>
* fix insensitive default/focus widget activation,
reported by Matt Goodall <mgg@isotek.co.uk>.
* gtk/gtkwindow.c (gtk_window_key_press_event):
(gtk_window_activate_default):
(gtk_window_activate_focus):
return handled=FALSE for actiavtion of insensitive default
widgets. return handled=TRUE for activation of insensitive
focus widgets. don't activate in either case.
Tue Oct 19 09:55:08 1999 Owen Taylor <otaylor@redhat.com>
* gtk-config.in (lib_gtk): Switch order of @x_cflags@
and $glib_cflags to match library order and in the
theory that an old version of GLib is more likely to
be in the include directory for X then vice-versa.
(Bug #2776)
Tue Oct 19 09:46:49 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE
to determine the locale for fontsets, not LC_MESSAGES;
the user may want English messages with a handling
for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR
will still be broken) (Bug #2891)
Tue Oct 19 20:36:42 1999 Changwoo Ryu <cwryu@adam.kaist.ac.kr>
* gtk/gtkrc.ko: Fixed the wrong number of "*"'s.
Tue Oct 19 12:15:13 1999 Changwoo Ryu <cwryu@adam.kaist.ac.kr>
* gtk/gtkrc.ko: Changed the Korean default fontset.
Fri Oct 8 02:32:47 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c (gtk_layout_adjustment_changed): Fix bug
where when scrolling to the left or top double exposes
were done, causing major slowdowns.
Thu Oct 7 18:31:55 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c (gtk_rc_init): Always normalize codeset
names to lowercase and alphanumeric, before looking
them up.
* gtk/Makefile.am: Install codeset variant gtkrc files
with normalized names.
Thu Oct 7 22:52:42 1999 Tim Janik <timj@gtk.org>
* gtk/gtkitemfactory.c (gtk_item_factory_popup_with_data): even
popup menus when the menu is already visible, but its parent
is still hidden, (happens after tornoff window got hidden).
Thu Oct 7 11:09:55 1999 Owen Taylor <otaylor@redhat.com>
* gtk/Makefile.am (install-data-local): Fix
a typo where gtkrc.vi_VN.tcvn5712 wasn't getting
deleted, causing error messages on install.
Thu Oct 7 11:03:06 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtk[hv]paned.c (gtk_{h,v}paned_draw): Redraw
the handle as well, since we now sometimes ignore
exposes on the handle while resizing.
Wed Oct 6 18:02:31 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c (gtk_rc_append_default_pixmap_path): Fix stupid
extra g_free introduced in one of the last one or two
commits.
Wed Oct 6 16:38:36 1999 Owen Taylor <otaylor@redhat.com>
* gtk/Makefile.am gtk/gtkrc*: Make naming of gtkrc files
consistent, put each style that a gtkrc.* file creates
in a unique namespace, remove old files before installing.
Wed Oct 6 14:31:16 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c (gtk_rc_init): Avoid leaking memory when
gtk_rc_init is called multiple times. (Yes, people who
do that have bugs in their code.)
Tue Oct 5 11:36:57 PDT 1999 Manish Singh <yosh@gimp.org>
* gtk/Makefile.am: listing gtkrc in gtkconf_DATA seems to barf.
Remove it since it's generated by the Makefile anyway
Tue Oct 5 02:43:41 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkinputcommon.h (gdk_input_device_new): Free
device->info.axes for core pointer.
Thu Sep 30 13:55:25 1999 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (destroy_idle_test): Rename idle to
idle_id, to deal with obsolete, broken C libraries.
Mon Sep 27 02:50:15 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkvscale.c (gtk_vscale_draw): Don't add in
allocation->x/y twice!
* gtk/gtkhscale.c: Make usage of gtk_hscale_pos_trough()
consistent with gtk_vscale_pos_trough().
Sun Sep 26 19:44:34 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcontainer.c (gtk_container_queue_resize): We may
be queueing a resize on a toplevel container between
the time we show it and when we map it. So, we need
to test GTK_WIDGET_VISIBLE() for toplevels, and only
use GTK_WIDGET_DRAWABLE() for child windows.
Thu Sep 23 16:41:03 1999 Owen Taylor <otaylor@redhat.com>
* gtk/Makefile.am (LDADDS): Add GDK_WLIBS to LDADDS
(fixes bug #2144)
Fri Sep 24 00:51:45 1999 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c (gtk_container_queue_resize): check for
container DRAWABLE (instead of VISIBLE), so we don't queue
resizes on non-toplevel containers.
Sun Sep 19 18:13:31 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkselection.[ch]: Make the data argument
const guchar *.
Sat Sep 18 21:27:40 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c: Try to behave sensibly if
the focus widget is the window itself. (Should
we allow this at all?)
Fri Sep 17 09:57:15 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_set_sensitive):
* gtk/gtknotebook.c (gtk_notebook_set_scrollable):
* gtk/gtknotebook.c (gtk_notebook_set_show_border):
* gtk/gtkclist.c (gtk_notebook_set_show_border): make gboolean args
in prototypes and implementations consistent (Tomas Ogren).
* gtk/gtklayout.c (gtk_layout_remove): unset GTK_IS_OFFSCREEN flag
before the widget is unparented (reported by damon).
* gtk/gtkdnd.c: make the cursor and icon data _unsigned_ char,
since we provide unsigned data anyways.
Thu Sep 16 21:32:01 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtktooltips.c (gtk_tooltips_set_tip): Delay
the call to gtk_tooltips_layout_text() until later.
* gtk/gtktooltips.c (gtk_tooltips_draw_tips):
Call gtk_widget_ensure_style() before using the style.
Wed Sep 15 02:52:19 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_event): Added workaround
for old widgets that don't propagate draws to all
children. (Namely gnome-dock for gnome-libs <= 1.0.16)
Tue Sep 14 19:22:19 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_queue_resize): don't queue the parent
for a redraw but just the widget that requested the resize.
Tue Sep 14 18:29:47 1999 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: added new widget level method
gtk_container_set_reallocate_redraws() and a GtkContainer flag
reallocate_redraws : 1 to reflect the setting, exported this through
the argument system as a boolean ::reallocate_redraws.
* gtk/gtkwidget.c (gtk_widget_size_allocate): when queueing redraws
on the widget because the allocation changes, do so as well for
widget->parent if the parent has reallocate_redraws set to TRUE.
with that containers requesting reallocation redraws get automatically
redrawn if their children changed allocation (this unfortunately
affects also other children that didn't change allocation, but we
cannot work around that before 1.3).
Tue Sep 14 18:23:01 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_idle_draw): only emit ::draw if width
_and_ height are >0 (not _or_).
* gtk/gtktable.c (gtk_table_remove): use gtk_widget_queue_resize()
instead of gtk_container_queue_resize(), which is a core gtk internal
function (must have been on crack when i queued that).
* gtk/gtkprivate.h: added new private flag GTK_FULLDRAW_PENDING, so
we can check more reliably if we want to discard expose events.
* gtk/gtkwidget.c: added setting/unsetting of the GTK_FULLDRAW_PENDING
flag.
* gtk/gtkwidget.c (gtk_widget_event): don't discard synthesized exposes,
we simply trust these events. for deciding whether to discard exposes,
check GTK_FULLDRAW_PENDING instead of RESIZE_PENDING.
Mon Sep 13 15:01:21 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_queue_clear_area): Ignore
queues of areas that are completely off screen.
* gtk/gtkwidget.c (gtk_widget_idle_draw): Fix broken
logic for handleboxes.
* gtk/gtkwidget.c (gtk_widget_queue_draw_data): Add santity
check on width/height.
Mon Sep 13 02:22:47 1999 Tim Janik <timj@gtk.org>
* gtk/Makefile.am: backed out Raja's recent VPATH build "improvements",
we are fine with using $@ the way we do (if we actually encounter
brokeness with $@ in VPATH builds because of additional path prefixes,
we need to use $(@F) actually).
Mon Sep 13 01:34:53 1999 Tim Janik <timj@gtk.org>
* gtk/gtksignal.c: renamed two variables, hopefully didn't introduce
short lived bugs, that would allow language bindings to do surgeries
to our guts.
Fri Sep 10 15:22:50 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_size_allocate): Fix typo
where comparison was being done against an uninitialized
value causing intermittant results depending on
compiler flags. Also make it clearer that we aren't
ever initializing the child as 0x0 (though this will
be caught in gtk_widget_size_allocate())
Fri Sep 10 10:06:56 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_set_transient_for): Move
gtk_window_unset_transient_for() call after we do checks
involving the old transient parent.
[ From Lance Capser <lmc@cyberhighway.net> ]
1999-09-07 Raja R Harinath <harinath@cs.umn.edu>
* gtk/Makefile.am (gtk.defs): Go back to using `touch' to create
an empty file.
Mon Sep 6 00:11:56 1999 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.c (gtk_ctree_is_ancestor): return FALSE if node has
no children. (Reported by: Chris Rogers <gandalf@pobox.com>)
1999-09-03 Raja R Harinath <harinath@cs.umn.edu>
* gtk/Makefile.am (gen_sources): Improve VPATH builds.
`$@' is valid only in the build dir, not after we've done
`cd $srcdir'. Also use `test -f' instead of less portable
`test -e'.
Fri Sep 3 15:59:56 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtktext.c (correct_cache_insert): Rewrite
for simplicity, and hopefully correctness.
(Fixes bug #1322, which was a segfault when
on some insertions with the properties around
the insertion set up just wrong.)
* gtk/gtktext.c (gtk_text_adjustment): When we receive
a "changed" signal, clamp the new value to the adjustment
bounds to avoid segfaulting if someone tries to change
the adjustment to a bogus value. (Bug #1795)
Thu Sep 2 16:33:59 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmain.c: Ignore unexpected destroy notifies
for children, for toplevel windows handle them
like delete_event.
* gtk/gtkplug.c: Add an unrealize handler so that
we unref plug->socket_window when we are done
with it.
Fri Sep 3 14:52:54 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtktext.c (clear_area): Fix stupid signedness
problem that was causing background to sometimes
be misaligned.
Fri Sep 3 12:26:33 1999 Owen Taylor <otaylor@redhat.com>
[ Fixes pointed out by Ettore Perazzoli <ettore@comm2000.it> ]
* gtk/gtkmenu.c (gtk_menu_position): Make
sure we never position menus with negative x, y,
since gtk_widget_set_uposition() can't handle that.
* gtk/gtkmenuitem.c (gtk_menu_item_position_menu):
Modify the positioning code a bit so that we always
put the top-left corner onscreen. (This is for
UI reasons, gtk_menu_position() now takes care of
gtk_widet_set_uposition() brokeness.)
Fri Sep 3 03:06:30 1999 Tim Janik <timj@gtk.org>
* gtk/Makefile.am: fixed up things for -jx, x > 1.
Sun Sep 5 08:48:51 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_modify_style): Ref the
RC style that is passed in. The lack of the ref
before was a bug. If people worked around this
bug, this will introduce a slight memory leak
in their code. The code should typically look like:
rc_style = gtk_rc_style_new ();
[...]
gtk_widget_modify_style (widget, rc_style);
gtk_rc_style_unref (rc_style);
* gtk/gtkwidget.c (gtk_widget_modify_style): Reset
the style if it was already set.
* gtk/gtkwidget.c (gtk_widget_set_name): Only set the
style if it was set before.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (main): Add a check to see if we
are being run from the correct directory and
to quit nicely if we are not.
* gtk/gtkrc.c (gtk_rc_slist_remove_all): Make function
static.
Thu Sep 2 23:00:03 1999 Tim Janik <timj@gtk.org>
* gtk/gtkenums.h (GtkWindowPosition): added GTK_WIN_POS_CENTER_ALWAYS.
* gtk/gtkwindow.c:
queue resizes unconditionally (gtk_widget_queue_resize will figure
what to do if the window is not realized).
(gtk_window_move_resize): only recenter the window
for GTK_WIN_POS_CENTER_ALWAYS.
(gtk_window_compute_reposition): handle GTK_WIN_POS_CENTER_ALWAYS in
the same way as GTK_WIN_POS_CENTER.
Thu Sep 2 22:39:27 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c (gtk_window_reposition): check for the last position
with (!(info->last_flags & GDK_HINT_POS)) instead of
(!info->last_flags & GDK_HINT_POS).
* gtk/gtkwindow.c (gtk_window_move_resize): constrain new_width and
new_height unconditionally, because we use these values even if
!default_size_changed && !hints_changed.
comented the (default_size_changed || hints_changed) case with
respect to resize rejects from the window manager.
* gtk/gtkwindow.c (gtk_window_move_resize): save info->last values
in the zvt condition hack, since this includes the window hints, set
the hints after the handling_resize case.
* gtk/gtkwindow.c (gtk_window_show): constrain the default size that a
window is initially shown with to the geometry.
Thu Sep 2 07:38:56 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c (gtk_window_move_resize):
s/size_changed/default_size_changed/g so i know what's
really going on (frying brain on smaller flame now).
Thu Sep 2 05:47:47 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c (gtk_window_move_resize): queue a new resize if
we have size_changed upon handling_resize. this is a gross
workaround for the broken zvt widget and should be removed in
1.3 again (search for FIXME).
Owen provided an accurate comment for this:
/* We could be here for two reasons
* 1) We coincidentally got a resize while handling
* another resize.
* 2) Our computation of size_changed was completely
* screwed up, probably because one of our children
* is broken. It's probably a zvt widget.
*
* For 1), we could just go ahead and ask for the
* new size right now, but doing that for 2)
* might well be fighting the user (and can even
* trigger a loop). Since we really don't want to
* do that, we requeue a resize in hopes that
* by the time it gets handled, the child has seen
* the light and is willing to go along with the
* new size. (this happens for the zvt widget, since
* the size_allocate() above will have stored the
* requisition corresponding to the new size in the
* zvt widget)
*
* This doesn't buy us anything for 1), but it shouldn't
* hurt us too badly, since it is what would have
* happened if we had gotten the configure event before
* the new size had been set.
*/
Wed Sep 1 20:46:11 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c: deal properly with the fact that RC
style lists may include rc styles more than once.
* gtk/gtkrc.c (gtk_rc_append_pixmap_path): Removed
unused static function.
* gtk/gtkrc.c (gtk_rc_find_pixmap_in_path): Keep a
stack of directories of RC files currently being
parsed and implicitely add them to pixmap path.
This fixes a bug where the directory would get
appended then overwritten by pixmap_path declarations.
(bug #1462, from Peter Wainright <prw@wainpr.demon.co.uk>)
* gtk/gtkthemes.c (gtk_theme_engine_unref): Call
theme's exit function. (Patch from Peter Wainwright,
bug #1454)
* gtk/gtkradiomenuitem.c (gtk_radio_menu_item_destroy):
Add a destroy() handler to take care of removing
group for menu item. (Fixes bug #1197)
* gtk/gtkwidget.c (gtk_widget_size_request): Fixed thinko
in warning message.
Wed Sep 1 21:27:42 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c (gtk_window_move_resize): don't require a server
roundtrip to figure window's width and height, since we know that
anyways from widget->allocation.
Wed Sep 1 12:37:44 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_move_resize): Compute
the hints after we request the new size.
Wed Sep 1 10:38:37 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_compute_hints): Removed
GTK_WIDGET_REALIZED() assertion - we can compute the
hints before we are realized.
* gtk/gtkwindow.c (gtk_window_move_resize): Reorder
hint changing so that we have a value of hints_changed
when we decide whether to constrain the window size.
* gtk/gtkwindow.c (gtk_window_move_resize): Spelling fix.
* gtk/gtkwindow.c (gtk_window_constrain_size): cleanups,
change back to G_MAXINT.
Wed Sep 1 06:54:59 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c (gtk_window_get_geometry_info): zero initialize
new GtkWindowGeometryInfo, so fields like GdkGeometry geometry
contain uncluttered values.
(gtk_window_compute_hints): simply assert that window is realized
and that geometry_info is valid, since we rely on this anyways.
(gtk_window_constrain_size): major cleanups to the code.
if (flags & GDK_HINT_BASE_SIZE) use geometry's base width and height
for the base size, instead of the minimums. use 32767 as max width
and height (like in gtkwindow.c) instead of G_MAXINT.
Wed Sep 1 04:41:25 1999 Tim Janik <timj@gtk.org>
* cleaned up the GtkContainer.need_resize flag handling mess, we
only need to force resize requests when we were prematurely
realized, or our widget tree was modified when we were temporarily
hidden. handling these cases directly upon showing the window (i.e.
while the GdkWindow is still unmapped) avoids the need to wait for
a configure event response and therefore makes the GUI more snappier
and avoids blank windows during the roundtrip.
* gtk/gtkwidget.c:
(gtk_widget_hide):
(gtk_widget_show): don't queue resizes on toplevels, they know how
to deal with matters.
* gtk/gtkcontainer.c (gtk_container_queue_resize): set the ->need_resize
flag directly for not visible resize containers and spare us unecessary
signal emissions.
* gtk/gtkwindow.c:
(gtk_window_realize): if we need to enforce premature size allocation,
queue a container resize so we are correctly resized later on.
(gtk_window_init):
(gtk_window_size_request):
don't freak around with the ->need_resize flag,
gtk_container_queue_resize() will care about that.
(gtk_window_show):
handle initial resizing issues here, we can handle matters better in
this place, especially since we know that our GdkWindow is still
unmapped.
(gtk_window_move_resize):
don't care about ->need_resize at all.
handle size changes properly that occoured while we waited for a
configure event.
Tue Aug 31 15:58:46 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_set_uposition):
* gtk/gtkwindow.[hc] (gtk_window_reposition):
Move the hint setting code from gtk_widget_set_uposition
to here; set the hints so that we respect any previously
set geometry hints.
* gtk/gtkwindow.c (gtk_window_compute_reposition): Don't
change the window hints here or move the window here,
let that happen in gtk_window_move_resize().
Tue Aug 31 06:58:52 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_event): when discarding exposes due
to already queued resizes (and therefore redraws) on a widget, check
its anchestry as well.
* gtk/gtkcontainer.c:
(gtk_container_queue_resize): clear resize widgets for resize
containers before aborting prematurely. this is especially important
for toplevels which may need imemdiate processing or their resize
handler to be queued.
(gtk_container_dequeue_resize_handler): added new internal function for
gtkwindow.c.
* gtk/gtkwindow.c (gtk_window_move_resize): if we are resizing due to a
configure event, take possible changes in window position into account
as well.
if we request a new window size, queue up a resize handler that will
last until the configure event response arrives.
combined the ->need_resize case (initial show) with the general size
(hints) changed case and added even more comments.
if !auto_shrink, only revert to the old allocation if the new size
is smaller than the current allocation.
Tue Aug 31 11:55:20 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c (gtk_window_set_arg, gtk_window_set_policy,
gtk_window_set_geometry_hints
gtk_window_set_default_size):
When hints are set, queue a resize so that the hints will
be eventually reset on the toplevel.
* gtk/gtkwindow.c (gtk_window_show): Use
gtk_window_compute_default_size(). Clear the need_resize flag
on the initail map so that we don't unnecessarily trigger the
resize code.
* gtk/gtkwindow.c (gtk_window_move_resize): Split apart
into separate functions. Compare the hints we are setting
with what we set last time so that we can accurately
tell when we need to reset the hints.
* gtk/gtkwindow.c (gtk_window_compute_default_size): New
function to figure out the size from requisition
and default_size.
* gtk/gtkwindow.c (gtk_window_constrain_size): Function
from fvwm to constrain a size to the geometry hints.
* gtk/gtkwindow.c (gtk_window_compare_hints): New function
to compare two sets of geometry hints.
* gtk/gtkwindow.c (gtk_window_compute_hints): Renamed
from gtk_window_set_hints(), just compute the hints,
don't set them.
* gtk/gtkwindow.c (gtk_window_compute_reposition): Move
code from gtk_window_move_resize() to separate function,
rationalize a bit.
Tue Aug 31 13:05:03 1999 Owen Taylor <otaylor@redhat.com>
* gtkrc.h: Move the ref_count member out of the GtkRcStyle
structure into a new private structure.
* gtkrc.c: Split GtkRcStyle into public/private.
In the private part, add a list of pointers to the
RcStyle lists this RcStyle participates in.
* gtkrc.c: When a RcStyle is free, remove all
lists referencing it from the
realized_style_ht hash, and free those lists.
* gtk/gtkrc.c (gtk_rc_clear_styles): Don't call
gtk_rc_init(), since that adds the default styles
to the list of parsed RC files again.
* gtk/gtkrc.c: Use gtk_rc_style_find() consistently.
Thu Aug 26 14:14:42 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_size_allocate): reactivated the sanity
checks that ensure that a widget's allocation is at least 1 in width
and height. (GNOME note: this doesn't affect old panel code anymore,
because GtkSocket will request width and height of at least 1 since
Fri Jul 23).
* gtk/gtkwindow.c (gtk_window_realize): if the widget hasn't been
allocated yet (happens if the user realizes the window prematurely),
size request and allocate it.
(gtk_window_size_allocate): guard against guint underflows.
Wed Aug 25 19:01:36 1999 Lars Hamann <lars@gtk.org>
* gtk/Makefile.am (gtk_built_sources): reordered stamp-gtk.defs
in gtk_built_sources, so gtk.defs gets built prior to all other
sources.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* gtk/Makefile.am:
invoke indent on gtkmarshal.*.
rewrote source generation rules, use COPYING as oldest source tag for
a piggyback rule to generate all sources from (don't touch it ;).
major cleanups, strip spaces on build rules for GNU Make.
* gtk/genmarshal.pl: don't operate on hardcoded filenames but take
source and target files from commandline arguments. don't invoke indent.
Sat Aug 21 14:07:36 1999 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
notebook after switch to avoid drawing problems.
(Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
(gtk_notebook_pages_allocate): don't map not visible tab_labels,
show them instead.
(Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
Sat Aug 21 14:07:36 1999 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_real_switch_page): queue_resize
notebook after switch to avoid drawing problems.
(Bug#856 Reported by: Theodore Roth <troth@netmagic.net>)
(gtk_notebook_pages_allocate): don't map not visible tab_labels,
show them instead.
(Bug#1805 Reported by: Dave Cole <dave@dccs.com.au>)
Wed Aug 18 09:20:10 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c:
we use window->need_resize from configure_event now, to indicate that
the gtkwindow should keep its allocation (e.g. because the user resized
the window through window manager handles). resize_count is now reliably
used to figure whether we got the allocation we requested from the
window manager.
configure events get queued as resizes now, the real stuff (size
computation and allocation) now only goes on in gtk_window_move_resize().
GtkWindow's requisition now contains its *real* requisition (like all
other widgets), *not* taking usize into account.
geometry_info->last_{width|height} is now updated from set_hints() only
so it always contains the last hints we set for the window manager.
made some event handlers return TRUE instead of FALSE.
the overall code should be much more straight forward now, and the
significant code portions are accompanied by comments now.
(gtk_window_set_hints):
removed requisition argument and made it
fetch the requisition through gtk_widget_get_child_requisition.
we also don't move the gdkwindow here anymore, gtk_window_move_resize()
does that now.
(gtk_window_show):
ensure that the widget is realized before calling
gtk_container_check_resize() (and thus gtk_window_move_resize()), also
ensure that we got properly size requested and allocated before
realization.
(gtk_window_configure_event):
ignore plain window moves, or reallocate the widget tree through the
resize queue otherwise.
(gtk_window_move_resize):
mostly rewrote this function to figure window manager hints more
reliably, coalesce window moves and resizes to reduce configure events
and do actuall size allocations.
Tue Aug 17 07:43:04 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_event): discard expose events for widgets
that have a resize pending, because a redraw is already queued for them.
* gtk/gtkcontainer.c: removed ugly connect_to ::size_allocate signal
hack to clear resize_widgets.
* gtk/gtkwidget.c (gtk_widget_size_allocate): call clear_resize_widgets
for resize containers prior to size allocation. (this is also a bit
ugly, but avoids side effects for stopped emissions and is thus more
reliable).
(gtk_widget_unparent): removed disconnect call for clear_resize_widgets.
* gtk/gtktooltips.c (gtk_tooltips_paint_window): renamed this
function from gtk_tooltips_expose, as we connect to ::expose_event
*and* ::draw now.
1999-08-18 Federico Mena Quintero <federico@redhat.com>
* gtk/gtkselection.c (gtk_target_list_ref): Added missing sanity
checks.
(gtk_target_list_unref): Likewise.
* gtk/gtkthemes.c (gtk_theme_engine_unref): Likewise.
Tue Aug 17 15:47:07 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcolorsel.c (gtk_color_selection_draw_value_bar):
guard against division by zero. (Fixes bug #1339)
Tue Aug 17 10:56:49 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_move_{forward,backward}_word):
Prevent the trivial leak of information of allowing
word motion when the entry is not visible.
Tue Aug 17 10:28:52 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_fileop_error): Propagate
modality to error dialog as well as confirmation dialogs.
(Bug #1803, reported by Rosanna Wing Sze Yuen)
Wed Aug 11 01:04:57 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtktreeitem.c (gtk_tree_item_draw_lines): Honor
tree->view_lines.
(gtk-guy-990611-3.patch: Guy Harris <guy@netapp.com>)
* gtk/Makefile.am (install-data-local): Solaris apparently
has various troubles with ln -f; use rm first instead.
(gtk-guy-990611-2.patch: Guy Harris <guy@netapp.com>)
1999-07-30 Raja R Harinath <harinath@cs.umn.edu>
* gtk/Makefile.am (stamp-m): Don't `mv' from builddir to srcdir,
use `cp' followed by `rm' (the `rm' was already there).
July 30, 1999 Elliot Lee <sopwith@redhat.com>
* configure.in: Fix autoconf warnings about cross compilation by
trying to provide sane defaults for AC_TRY_RUN.
* gtk/Makefile.am: If we refer to gtkmarshal.[ch] in $(srcdir),
put them into $(srcdir) when generated. Also add a dependency of
gtksignal.h on gtkmarshal.h for -j builds.
* gtk/gtk(dnd,style,gamma).c: Minor warning fixes.
Wed Jul 28 09:29:19 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmain.c (gtk_main_iteration_do): Added missing
GDK_THREADS_{LEAVE,ENTER} pair.
(From Paul Fisher <pnfisher@redhat.com>)
Fri Jul 23 01:00:15 1999 Tim Janik <timj@gtk.org>
* gtk/gtksocket.c (gtk_socket_size_request): asure that the requested
width and height are always >0 (owen).
Fri Jul 23 00:00:47 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_size_allocate): backed out my recent
change that assured that a widget's allocated with and height are
always >1, since this breaks *buggy* panel code. unfortunately this
back-breaks the gimp's color selector.
* gtk/gtkdrawingarea.c (gtk_drawing_area_size_allocate): asure that our
allocation is always >0 in width and height, before sending the
configure event; this is a *gross* hack to get the gimp back to work.
* marked both cases with TODO-1.3
Wed Jul 21 15:47:39 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtktext.c: Don't display wrap indicators when
text is not editable and word wrap is on.
Wed Jul 21 08:21:40 1999 Tim Janik <timj@gtk.org>
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): special case
option menus here as they are not derived from menu shell, assure that
the option menu has a menu we can add items to.
Tue Jul 20 23:29:48 1999 Tim Janik <timj@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_page_allocate): convert allocation->
width/height to (gint) before calculations and check against < 0 to
avoid guint wraparounds.
Sun Jul 18 00:35:49 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_size_allocate): ensure that the allocated
width and height is never zero. sanity check both dimensions against
32767 and issue a warning if the allocation is greater than that.
Wed Jul 7 15:03:30 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmain.c (gtk_events_pending): Unlock around call
to g_main_pending() as well.
Wed Jul 7 14:59:01 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmain.c (gtk_main_iteration): Unlock around
call to g_main_iteration() - since that will regrab
GTK+ lock to process events.
Thu Jul 1 15:01:55 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.c
- Regularize with the rest of GTK+ by making widget->requisition
not reflect the set_usize()
- Always recompute geometry hints, then check if they
changed before sending them to the X server. The
previous checks for changes would fail in a number
of circumstances.
Thu Jul 1 11:55:59 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkstyle.c: Include <stdlib.h> for strcmp().
Wed Jun 30 19:26:36 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkdnd.c:
- Code cleanups
- Instantaneously update on modifier key presses
- Allow cancellation of the drag with Escape.
Tue Jun 29 17:04:09 1999 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (create_handle_box): Set the policy
to auto_shrink - otherwise the appearance is rather
strange when flipping between horizontal and vertical.
Mon Jun 28 09:29:52 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c: add ::default_width and ::default_height arguments.
(gtk_window_set_default_size): don't change a value if it's < 0.
queue a resize.
Sun Jun 27 11:00:33 1999 Tim Janik <timj@gtk.org>
* gtk/gtktext.c (gtk_text_insert): don't segfault on NULL inserts.
Mon Jun 28 12:08:25 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (cmpl_completion_fullname): Don't
add an extra "/" when concating "/" + filename.
(From Matt Grossman <mattg@oz.net>)
Mon Jun 28 10:57:12 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c (draw_cell_pixmap): Reset clip mask
for fg_gc if we set it for drawing pixmap.
Tue Jun 15 12:45:12 1999 Owen Taylor <otaylor@redhat.com>
Fixes from Peter Wainwright <prw@wainpr.demon.co.uk>
* gtk/gtkrc.c (gtk_rc_parse_engine): If rc_style->engine is
already set, call old engine's destroy function and
unref the old engine.
Thu Jun 10 17:59:38 1999 Tim Janik <timj@gtk.org>
* gtk/gtkdrawingarea.c (gtk_drawing_area_size): queue a resize.
Wed Jun 9 15:13:16 1999 Tim Janik <timj@gtk.org>
* gtk/gtkaccelgroup.h: mark certain functions as internal.
Wed Jun 9 13:48:28 1999 Tim Janik <timj@gtk.org>
* gtk/gtkpreview.c (gtk_preview_set_expand): queue a resize if the
expand behaviour changed.
* gtk/gtklabel.c (gtk_label_set_pattern):
(gtk_label_set_justify):
(gtk_label_set_line_wrap):
don't bother invoking queue_clear, the reallocation does
that for us, always free_words so the upcoming resize will
relayout the label's contents.
Wed Jun 9 12:50:48 1999 Tim Janik <timj@gtk.org>
* applied argument implementation patches from Elena Devdariani
<elena@cogent.ca>.
* gtk/gtktoolbar.c: ::orientation, ::toolbar_style, ::space_size,
::space_style, ::relief
* gtk/gtkruler.c: ::lower, ::upper, ::position, ::max_size
* gtk/gtkpreview.c: ::expand
* gtk/gtkpaned.c: ::handle_size, ::gutter_size
* gtk/gtknotebook.c: ::homogeneous
* gtk/gtklabel.c: ::wrap
* gtk/gtklist.c: ::selection_mode
* gtk/gtkhandlebox.c: ::handle_position, ::snap_edge
* gtk/gtkcurve.c: ::curve_type, ::min_x, ::max_x, ::min_y, ::max_y
* gtk/gtkcolorsel.c: ::update_policy, ::use_opacity
* gtk/gtkclist.c: ::sort_type
* gtk/gtkcheckmenuitem.c: ::active, ::show_toggle
* gtk/gtkaspectframe.c: ::xalign, ::yalign, ::ratio, ::obey_child
Tue Jun 1 23:38:38 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkstyle.c: Removed ill-thought-out part of last
comment.
Tue Jun 1 23:30:09 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkstyle.c (gtk_style_attach): Get the reference
counting right when we have to attach a new style
for a different visual. (Chi-Deok Hwang <cdhwang@sr.hei.co.kr>)
* gtk/gtkstyle.c: Documented the refcounting
peculularities of gtk_style_attach.
1999-06-01 Tim Janik <timj@dhcpd7.redhat.com>
* gtk/gtkwindow.c (gtk_window_new): added return if fail for invalid
window types.
* examples/packer/pack.c (main): use GTK_WINDOW_TOPLEVEL instead
of GTK_TOPLEVEL for creating the window.
1999-06-01 Tim Janik <timj@dhcpd7.redhat.com>
* gtk/gtkmain.c (gtk_init_check): don't segfault when --gtk-module is
the last argument (reported by Per Winkvist).
Tue May 25 13:13:12 1999 Owen Taylor <otaylor@redhat.com>
Fixes for invisible XOR lines (Frank Loemker
<floemker@TechFak.Uni-Bielefeld.DE>)
* gtk/gtkclist.c (gtk_clist_realize): Always use
a non-zero pixel for GDK_XOR.
* gtk/gtkvpaned.c gtk/gtkhpaned.c:
Use GDK_INVERT instead of GDK_XOR.
Wed May 12 21:56:40 1999 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (adjust_adjustments): signal emit value_changed
signals if h/voffsets differ from adjustment values.
Reportet by Jerome Bolliet <bolliet@in2p3.fr>
Mon May 10 04:20:41 1999 Tim Janik <timj@gtk.org>
* gtk/gtkmenushell.c (gtk_menu_shell_activate_item): propagate
::selection-done emissions up to the topmost menu shell.
Fri May 7 10:15:14 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtknotebook.c (gtk_notebook_set_scrollable): Unset
the user data on the window before destroying it.
* gtk/gtknotebook.c (gtk_notebook_unrealize): Add an
unrealize handler to take care of destroying
notebook->panel properly.
(Bug #1198 - Morten Welinder <terra@diku.dk>)
* gtk/gtktext.c (expand_scratch_buffer): Fix reversal
of g_new and g_realloc to stop memory leak. (Actually,
we could just use g_realloc(), but I'm not 100% sure
that is portable).
(Bug #1196 - Morten Welinder <terra@diku.dk>)
Wed Apr 21 00:42:08 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkplug.h: Removed stray GtkPlugButton declaration.
* gdk/gdkfont.c (gdk_text_measure): Fix the return value
for fontsets.
* gtk/gtkbutton.c (gtkbutton_expose): Fix warning
with bin/button confusion.
Thu May 6 04:53:26 1999 Tim Janik <timj@gtk.org>
* gtk/testgtk.c: in the ItemFactory test, link radio items together,
and show how preselection of radio items is done.
Sun May 2 13:31:14 1999 Tim Janik <timj@gtk.org>
* gtk/gtktreeitem.c (gtk_tree_item_set_subtree):
* gtk/gtktree.c (gtk_tree_add) (gtk_tree_insert):
* gtk/gtktoolbar.c (gtk_toolbar_insert_element):
* gtk/gtkpaned.c (gtk_paned_pack2) (gtk_paned_pack1):
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_add):
* gtk/gtktable.c (gtk_table_attach):
* gtk/gtklist.c (gtk_list_insert_items):
* gtk/gtkmenushell.c (gtk_menu_shell_insert):
* gtk/gtknotebook.c (gtk_notebook_insert_page_menu):
* gtk/gtkpacker.c (gtk_packer_add_defaults) (gtk_packer_add):
* gtk/gtkbin.c (gtk_bin_add):
* gtk/gtkbox.c (gtk_box_pack_start) (gtk_box_pack_end):
* gtk/gtkfixed.c (gtk_fixed_put):
* gtk/gtklayout.c (gtk_layout_put):
general fixups to container_add logic. always realize child if
child->parent is realized, only map the child and queue a resize
if child and child->parent are both visible.
Fri Apr 30 09:02:28 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_real_unrealize): use gtk_container_forall
instead of gtk_container_foreach to walk and unrealize children, so
composite children get also unrealized.
(gtk_widget_real_show): don't call gtk_widget_map() if we don't need to.
(gtk_widget_map): assert that the widget is visible (basic constrain).
(gtk_widget_real_map): assert that the widget is realized (basic
constrain).
Fri Apr 29 00:53:20 1999 Tim Janik <timj@gtk.org>
* gtk/gtkbindings.c (gtk_pattern_spec_init): plugged a memory leak.
Tue May 4 09:32:08 1999 Owen Taylor <otaylor@redhat.com>
* gtk/Makefile.am gtk/gtkrc.iso-8859-2: Add a gtkrc
file for iso-8859-2 locales.
* configure.in (ALL_LINGUAS): ALL_LINGUAS update.
Tue Apr 27 16:38:32 1999 Owen Taylor <otaylor@redhat.com>
* gtk/Makefile.am: Fix typo of static_sources for static_SOURCES.
(Pointed out by andy@rz.uni-karlsruhe.de and others).
Remove some suspicious and useless lines.
Tue May 4 08:44:08 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclist.c (gtk_clist_draw, draw_rows): Use
width,height = 0, 0 to mean - here to edge of window,
instead of -1, -1, since the former is all we support.
Tue May 4 08:34:43 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmain.c (gtk_main): Correctly free list nodes
when removing from quit_functions list.
Tue Apr 27 14:17:16 1999 Tim Janik <timj@gtk.org>
* gtk/gtkpacker.c (gtk_packer_size_request): remove unused variable.
Tue Apr 27 18:23:35 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_draw_cursor_on_drawable):
When redrawing characters on non-visible entry, use appropriate
'*' character. (Bug #1130 - Jean-Marc Jacquet <jm@littleigloo.org>)
Tue Apr 27 01:31:40 1999 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (drag_dest_cell): compute destination cell
from drag coordinates.
(gtk_clist_drag_data_received) (gtk_clist_drag_motion):
use drag_dest_cell.
* gtk/gtktree (drag_dest_cell)
(gtk_ctree_drag_data_received) (gtk_ctree_drag_motion): likewise.
(Bug #1129)
Wed Apr 21 21:26:11 1999 Tim Janik <timj@gtk.org>
* gtk/gtkitemfactory.c (gtk_item_factory_init): properly initialize
translate_* fields.
(gtk_item_factory_finalize): invoke translate_notify independant from
translate_data.
(gtk_item_factory_set_translate_func): likewise.
(gtk_item_factory_destroy): only remove ifactory pointer from those
widgets that belong to us (stupid me).
Mon Apr 19 12:05:31 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.c (gtk_rc_style_init): Fixed leak of
rc_style list when lookup succeeeds.
Thu Apr 15 01:11:24 1999 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.c (resync_selection):
* gtk/gtkclist.c (resync_selection): fixed undo_selection bug.
* gtk/gtkclist.c (gtk_clist_button_release): fixed resync_selection
bug.
Fri Apr 9 19:22:19 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcolorsel.c gtk/gtkdnd.c gtk/gtkmenuitem.c:
Add some missing GDK_THREADS_ENTER()/LEAVE around
timeouts. (Patches from Sebastian Wilhelmi <wilhelmi@ira.uka.de>)
Thu Apr 8 20:10:33 1999 Tim Janik <timj@gtk.org>
* gtk/gtkentry.c (gtk_entry_key_press): use gtk_widget_activate()
rather than emit_by_name.
* gtk/gtkeditable.c (gtk_editable_insert_text): keep a reference
on the widget across multiple signal emissions.
(gtk_editable_delete_text): same here.
(gtk_editable_class_init): set widget_class->activate_signal after
editable_signals[ACTIVATE] has been created.
Wed Apr 7 22:59:47 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkpaned.c (gtk_paned_set_position): Don't clamp
position here prematurely -- we might not have the
right ->min_position and ->max_position yet.
Tue Apr 6 16:38:51 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkselection.c gdk/gdkselection.c: (gtk_selection_request):
Add error traps so if the other end of the connection
dies, we survive.
* gtk/gtkselection.c (gtk_selection_notify): Clean
up properly when selection property retrieval fails.
* gtk/gtkselection.c (gtk_selection_request): Correctly
reject SelectionRequest notifies where the handler
returns no data.
Tue Apr 6 12:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkdnd.c (gtk_drag_dest_leave): Only unhighlight
when we've previously highlighted.
* gtk/gtkdnd.c (gtk_drag_dest_handle_event): Don't
emit two "drag_leave" signals for Motif drops.
* gtk/gtkdnd.c (gtk_drag_source_handle_event): Send
back the correct status messages when dropping from
Motif onto a proxy window that is rejecting the
drop.
Sat Mar 27 23:32:13 1999 Tim Janik <timj@gtk.org>
* gtk/gtkarg.[hc]: added functions from GLE, gtk_arg_reset() to free
the value and reset type to GTK_TYPE_INVALID, and gtk_arg_values_equal()
to compare two argument values. added gtk_arg_to_valueloc() to set a
variable from an arg through its location (pointer).
* gtk/gtkobject.[hc]: implemented gtk_object_get() in terms of
gtk_object_arg_get() and gtk_arg_to_valueloc(), floats are collected
as gfloat*, uchars are collected as guchar*, ints are collected as
gint*, etc...
Mon Mar 29 17:45:47 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkaccelgroup.c gtk/gtkgtkbindings.c:
Include <string.h> instead of <strings.h>.
* gtk/gtkstyle.c: Fix double include of gtkthemes.h
(actually, a lot more duplicate includes occur if
you trace through the sequence of #include's)
gtk-jbb-990320-0: John Bley, jbb6@acpub.duke.edu
Mon Mar 29 17:02:58 1999 Owen Taylor <otaylor@redhat.com>
Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
gtk-a-higuti-990322-[0-3]
* configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
that was causing -DX_LOCALE not to work.
* gtk/gtkrc.c (gtk_rc_init):
X_LOCALE will never have LC_MESSAGES defined
Thu Mar 25 12:38:31 1999 Tim Janik <timj@gtk.org>
* gtk/gtkrc.c (gtk_rc_append_default_module_path): get $HOME from
g_get_home_dir() (gtk-pmc-990123-0.patch.gz).
* gtk/gtkwindow.c (gtk_window_key_press_event): feature keypad up/down/
left/right as well (gtk-michael-980726-0.patch.gz).
* gtk/gtklabel.[hc]: bunch of miscellaneous cleanups, such as s/0/NULL/
for pointer values, use gchar instead of char. fixed uline allocation
leaks, changed the allocation pattern so we use G_ALLOC_AND_FREE mem
chunks instead of G_ALLOC_ONLY.
(gtk_label_size_request): always alter requisition as passed and leave
widget->requisition alone.
(gtk_label_set_text): allow NULL strings.
(gtk_label_new): likewise.
Wed Mar 24 09:24:03 1999 Tim Janik <timj@gtk.org>
* gtk/gtkdrawingarea.[hc]: type/macro fixups.
Mon Mar 22 05:51:34 1999 Tim Janik <timj@gtk.org>
* gtk/gtkbin.c (gtk_bin_draw): only redraw children that are visible
*and* mapped (i.e. drawable).
(gtk_bin_expose): only send exposes to drawable children.
* gtk/gtkbox.c (gtk_box_draw): only redraw children that are drawable.
(gtk_box_expose): only send exposes to drawable children.
* gtk/gtkhscale.c (gtk_hscale_draw):
* gtk/gtkvscale.c (gtk_vscale_draw):
hm, this is an ugly one. we first compute the size of our trough area
here (window relative) and then check intersection with the draw_area
which is parent relative because we're a NO_WINDOW widget, so we need
to offset the trough area by allocation.x and allocation.y before the
check. (this must not be done for the background area though, since
that's already computed parent relative).
Mon Mar 22 00:41:39 1999 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_unrealize): unmap clist if neccessary,
unrealize title buttons.
Fri Mar 19 00:00:22 1999 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_column_title_passive)
(gtk_clist_column_title_active):
only connect/disconnect to GtkWidgetClass::event to block mouse events.
* gtk/gtkclist.c (vertical_timeout) (horizontal_timeout):
zero initialize event, removed superfluous gdk_window_get_pointer call
* gtk/gtklist.c (gtk_list_vertical_timeout)
(gtk_list_horizontal_timeout): removed superfluous
gdk_window_get_pointer call
Wed Mar 17 09:00:00 1999 Tim Janik <timj@gtk.org>
* plugging problems reported by "Bruce Mitchener, Jr."
<bruce@puremagic.com> due to a purify session.
* gtk/gtkstyle.c:
(gtk_style_ref):
(gtk_style_unref): assert ref_count to be > 0.
* gtk/gtkclist.c (gtk_clist_set_cell_style): { 0 } initilaize
the requisition.
(gtk_clist_set_shift): likewise.
* gtk/gtklayout.c: introduce gtk_layout_finalize() to unref the
adjustments.
* gtk/gtklist.c (gtk_list_horizontal_timeout): zero initialize the
event before sending it and set send_event to TRUE (which needs to
be done for *all* synthesized events).
(gtk_list_vertical_timeout): likewise.
* gtk/gtktipsquery.c (gtk_tips_query_destroy): plug small memory
leaks.
* gtk/gtkdrawingarea.c (gtk_drawing_area_send_configure): set send_event
to TRUE when synthesizing events.
[ *** end of merges from 1.2 *** ]
1999-11-22 21:52:50 +00:00
|
|
|
{
|
|
|
|
if (fontsel->metric == GTK_FONT_METRIC_POINTS)
|
|
|
|
{
|
|
|
|
if (*bitmapped_sizes % 10 != 0)
|
|
|
|
can_match = FALSE;
|
|
|
|
bitmap_size = *bitmapped_sizes / 10;
|
|
|
|
bitmap_size_float = *bitmapped_sizes / 10;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bitmap_size = *bitmapped_sizes;
|
|
|
|
bitmap_size_float = *bitmapped_sizes;
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (can_match && nstandard_sizes && nbitmapped_sizes
|
|
|
|
&& *standard_sizes == bitmap_size)
|
|
|
|
{
|
|
|
|
sprintf(buffer, "%i *", *standard_sizes);
|
|
|
|
standard_sizes++;
|
|
|
|
nstandard_sizes--;
|
|
|
|
bitmapped_sizes++;
|
|
|
|
nbitmapped_sizes--;
|
|
|
|
}
|
|
|
|
else if (nstandard_sizes
|
|
|
|
&& (!nbitmapped_sizes
|
|
|
|
|| (gfloat)*standard_sizes < bitmap_size_float))
|
|
|
|
{
|
|
|
|
sprintf(buffer, "%i", *standard_sizes);
|
|
|
|
standard_sizes++;
|
|
|
|
nstandard_sizes--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
if (fontsel->metric == GTK_FONT_METRIC_POINTS)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
if (*bitmapped_sizes % 10 == 0)
|
|
|
|
sprintf(buffer, "%i *", *bitmapped_sizes / 10);
|
|
|
|
else
|
|
|
|
sprintf(buffer, "%i.%i *", *bitmapped_sizes / 10,
|
|
|
|
*bitmapped_sizes % 10);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sprintf(buffer, "%i *", *bitmapped_sizes);
|
|
|
|
}
|
|
|
|
bitmapped_sizes++;
|
|
|
|
nbitmapped_sizes--;
|
|
|
|
}
|
|
|
|
size = buffer;
|
|
|
|
gtk_clist_append(GTK_CLIST(fontsel->size_clist), &size);
|
|
|
|
}
|
|
|
|
gtk_clist_thaw (GTK_CLIST(fontsel->size_clist));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* If the user hits return in the font size entry, we change to the new font
|
|
|
|
size. */
|
|
|
|
static gint
|
|
|
|
gtk_font_selection_size_key_press (GtkWidget *w,
|
|
|
|
GdkEventKey *event,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel;
|
|
|
|
gint new_size;
|
|
|
|
gfloat new_size_float;
|
|
|
|
gchar *text;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In size_key_press\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
fontsel = GTK_FONT_SELECTION(data);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (event->keyval == GDK_Return)
|
|
|
|
{
|
|
|
|
text = gtk_entry_get_text (GTK_ENTRY (fontsel->size_entry));
|
1998-10-30 01:34:06 +00:00
|
|
|
if (fontsel->metric == GTK_FONT_METRIC_PIXELS)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
new_size = atoi (text);
|
|
|
|
if (new_size < 2)
|
|
|
|
new_size = 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
new_size_float = atof (text) * 10;
|
|
|
|
new_size = (gint) new_size_float;
|
|
|
|
if (new_size < 20)
|
|
|
|
new_size = 20;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Remember that this size was set explicitly. */
|
|
|
|
fontsel->selected_size = new_size;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Check if the font size has changed, and return if it hasn't. */
|
|
|
|
if (fontsel->size == new_size)
|
|
|
|
return TRUE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->size = new_size;
|
|
|
|
gtk_font_selection_select_best_size (fontsel);
|
|
|
|
return TRUE;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This tries to select the closest size to the current size, though it
|
|
|
|
may have to change the size if only unscaled bitmaps are available.
|
|
|
|
Note: this will load a font. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_select_best_size(GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
FontInfo *font;
|
|
|
|
FontStyle *styles, *style;
|
|
|
|
gchar *text;
|
|
|
|
gint row, best_row = 0, size, size_fraction, best_size = 0, nmatched;
|
|
|
|
gboolean found = FALSE;
|
|
|
|
gchar buffer[32];
|
|
|
|
GList *selection;
|
1998-10-30 01:34:06 +00:00
|
|
|
gint type_filter;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In select_best_size\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
1998-06-16 03:40:04 +00:00
|
|
|
font = &fontsel_info->font_info[fontsel->font_index];
|
|
|
|
styles = &fontsel_info->font_styles[font->style_index];
|
1998-06-15 23:29:27 +00:00
|
|
|
style = &styles[fontsel->style];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Find the closest size available in the size clist. If the exact size is
|
|
|
|
in the list set found to TRUE. */
|
|
|
|
for (row = 0; row < GTK_CLIST(fontsel->size_clist)->rows; row++)
|
|
|
|
{
|
|
|
|
gtk_clist_get_text(GTK_CLIST(fontsel->size_clist), row, 0, &text);
|
|
|
|
nmatched = sscanf(text, "%i.%i", &size, &size_fraction);
|
1998-10-30 01:34:06 +00:00
|
|
|
if (fontsel->metric == GTK_FONT_METRIC_POINTS)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
size *= 10;
|
|
|
|
if (nmatched == 2)
|
|
|
|
size += size_fraction;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (size == fontsel->selected_size)
|
|
|
|
{
|
|
|
|
found = TRUE;
|
|
|
|
best_size = size;
|
|
|
|
best_row = row;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (best_size == 0
|
|
|
|
|| abs(size - fontsel->selected_size)
|
|
|
|
< (abs(best_size - fontsel->selected_size)))
|
|
|
|
{
|
|
|
|
best_size = size;
|
|
|
|
best_row = row;
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* If we aren't scaling bitmapped fonts and this is a bitmapped font, we
|
|
|
|
need to use the closest size found. */
|
1998-10-30 01:34:06 +00:00
|
|
|
type_filter = fontsel->filters[GTK_FONT_FILTER_BASE].font_type
|
|
|
|
& fontsel->filters[GTK_FONT_FILTER_USER].font_type;
|
|
|
|
|
|
|
|
if (!((style->flags & GTK_FONT_SCALABLE_BITMAP
|
|
|
|
&& type_filter & GTK_FONT_SCALABLE_BITMAP)
|
|
|
|
|| (style->flags & GTK_FONT_SCALABLE
|
|
|
|
&& type_filter & GTK_FONT_SCALABLE)))
|
1998-06-15 23:29:27 +00:00
|
|
|
found = TRUE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (found)
|
|
|
|
{
|
|
|
|
fontsel->size = best_size;
|
|
|
|
gtk_clist_moveto(GTK_CLIST(fontsel->size_clist), best_row, -1, 0.5, 0);
|
|
|
|
gtk_clist_select_row(GTK_CLIST(fontsel->size_clist), best_row, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fontsel->size = fontsel->selected_size;
|
|
|
|
selection = GTK_CLIST(fontsel->size_clist)->selection;
|
|
|
|
if (selection)
|
|
|
|
gtk_clist_unselect_row(GTK_CLIST(fontsel->size_clist),
|
1998-06-18 22:32:36 +00:00
|
|
|
GPOINTER_TO_INT (selection->data), 0);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_clist_moveto(GTK_CLIST(fontsel->size_clist), best_row, -1, 0.5, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Show the size in the size entry. */
|
1998-10-30 01:34:06 +00:00
|
|
|
if (fontsel->metric == GTK_FONT_METRIC_PIXELS)
|
1998-06-15 23:29:27 +00:00
|
|
|
sprintf(buffer, "%i", fontsel->size);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (fontsel->size % 10 == 0)
|
|
|
|
sprintf(buffer, "%i", fontsel->size / 10);
|
|
|
|
else
|
|
|
|
sprintf(buffer, "%i.%i", fontsel->size / 10, fontsel->size % 10);
|
|
|
|
}
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (fontsel->size_entry), buffer);
|
|
|
|
}
|
|
|
|
gtk_font_selection_load_font (fontsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is called when a size is selected in the list. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_select_size (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel;
|
|
|
|
gint new_size;
|
|
|
|
gchar *text;
|
|
|
|
gchar buffer[16];
|
|
|
|
gint i;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In select_size\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
fontsel = GTK_FONT_SELECTION(data);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (bevent && !GTK_WIDGET_HAS_FOCUS (w))
|
|
|
|
gtk_widget_grab_focus (w);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Copy the size from the clist to the size entry, but without the bitmapped
|
|
|
|
marker ('*'). */
|
|
|
|
gtk_clist_get_text(GTK_CLIST(fontsel->size_clist), row, 0, &text);
|
|
|
|
i = 0;
|
|
|
|
while (i < 15 && (text[i] == '.' || (text[i] >= '0' && text[i] <= '9')))
|
|
|
|
{
|
|
|
|
buffer[i] = text[i];
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
buffer[i] = '\0';
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->size_entry), buffer);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Check if the font size has changed, and return if it hasn't. */
|
|
|
|
new_size = atoi(text);
|
1998-10-30 01:34:06 +00:00
|
|
|
if (fontsel->metric == GTK_FONT_METRIC_POINTS)
|
1998-06-15 23:29:27 +00:00
|
|
|
new_size *= 10;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (fontsel->size == new_size)
|
|
|
|
return;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* If the size was selected by the user we set the selected_size. */
|
|
|
|
fontsel->selected_size = new_size;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->size = new_size;
|
|
|
|
gtk_font_selection_load_font (fontsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is called when the pixels or points radio buttons are pressed. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_metric_callback (GtkWidget *w,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel = GTK_FONT_SELECTION(data);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In metric_callback\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
if (GTK_TOGGLE_BUTTON(fontsel->pixels_button)->active)
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
if (fontsel->metric == GTK_FONT_METRIC_PIXELS)
|
1998-06-15 23:29:27 +00:00
|
|
|
return;
|
1998-10-30 01:34:06 +00:00
|
|
|
fontsel->metric = GTK_FONT_METRIC_PIXELS;
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->size = (fontsel->size + 5) / 10;
|
|
|
|
fontsel->selected_size = (fontsel->selected_size + 5) / 10;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
if (fontsel->metric == GTK_FONT_METRIC_POINTS)
|
1998-06-15 23:29:27 +00:00
|
|
|
return;
|
1998-10-30 01:34:06 +00:00
|
|
|
fontsel->metric = GTK_FONT_METRIC_POINTS;
|
1998-06-15 23:29:27 +00:00
|
|
|
fontsel->size *= 10;
|
|
|
|
fontsel->selected_size *= 10;
|
|
|
|
}
|
|
|
|
if (fontsel->font_index != -1)
|
|
|
|
{
|
|
|
|
gtk_font_selection_show_available_sizes (fontsel);
|
|
|
|
gtk_font_selection_select_best_size (fontsel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This searches the given property table and returns the index of the given
|
|
|
|
string, or 0, which is the wildcard '*' index, if it's not found. */
|
|
|
|
static guint16
|
|
|
|
gtk_font_selection_field_to_index (gchar **table,
|
|
|
|
gint ntable,
|
|
|
|
gchar *field)
|
|
|
|
{
|
|
|
|
gint i;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (i = 0; i < ntable; i++)
|
|
|
|
if (strcmp (field, table[i]) == 0)
|
|
|
|
return i;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This attempts to load the current font, and returns TRUE if it succeeds. */
|
|
|
|
static gboolean
|
|
|
|
gtk_font_selection_load_font (GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
GdkFont *font;
|
|
|
|
gchar *fontname, *label_text;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (fontsel->font)
|
|
|
|
gdk_font_unref (fontsel->font);
|
|
|
|
fontsel->font = NULL;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* If no family has been selected yet, just return FALSE. */
|
|
|
|
if (fontsel->font_index == -1)
|
|
|
|
return FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontname = gtk_font_selection_get_font_name (fontsel);
|
|
|
|
if (fontname)
|
|
|
|
{
|
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("Loading: %s\n", fontname);
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
Add new keysyms from X11R6.4 (including EuroSign).
1999-10-31 Tor Lillqvist <tml@iki.fi>
* gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
EuroSign).
* gdk/gdktypes.h: Add note about wchar_t not necessarily being the
same type as GdkWChar, especially on Win32.
* gdk/win32/*.c: Change gdk_root_parent to be a pointer.
* gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
before passing to Windows GDI for drawing etc. Convert to the
system default codepage before passing to Windows as window
titles.
* gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
support changing input locale on the fly.
* gdk/win32/gdkevent.c: Support input language (keyboard locale)
on-the-fly changes. Convert incoming characters from the current
codepage to Unicode (and then to a UTF-8 multi-byte string) based
on the current input language. Use keysym<->Unicode mapping tables
and functions borrowed from xterm sources.
Support IMEs (Input Method Editors) for CJK languages. On non-CJK
editions of Win9x, use the ActiveX-based Active IMM (Input Method
Manager) if available. IMEs and the Active IMM are available under
the disguise of Chinese, Korean and Japanese support for IE and
Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
support is present in all editions (as long as you install it).
Call DispatchMessage from gdk_events_queue() (and thus
gdk_WindowProc()), instead of duplicating the code in
gdk_WindowProc().
Reworked the grab handling and propagation code, factored out
duplicated code snippets into separate functions. Other cleanups,
too.
* gdk/win32/surrogate-dimm.h: Provide just the bits we need from
the <dimm.h> header describing the Active IMM.
* gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
just do the same as for "single" fonts.
* gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
the new keysyms from gdkkeysyms.h.
* gtk/gtkfontsel.c (Win32): Load the font for the preview as a
fontset, so that gtkentry uses wide characters.
* gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
GTk+'s system directory "gtk+", not "gtk".
1999-10-31 21:35:39 +00:00
|
|
|
#ifndef GDK_WINDOWING_WIN32
|
1998-06-15 23:29:27 +00:00
|
|
|
font = gdk_font_load (fontname);
|
Add new keysyms from X11R6.4 (including EuroSign).
1999-10-31 Tor Lillqvist <tml@iki.fi>
* gdk/gdkkeysyms.h: Add new keysyms from X11R6.4 (including
EuroSign).
* gdk/gdktypes.h: Add note about wchar_t not necessarily being the
same type as GdkWChar, especially on Win32.
* gdk/win32/*.c: Change gdk_root_parent to be a pointer.
* gdk/win32/*.c: Assume all strings are UTF-8. Convert to Unicode
before passing to Windows GDI for drawing etc. Convert to the
system default codepage before passing to Windows as window
titles.
* gdk/win32/gdkprivate.h: Add more fields to GdkWindowPrivate to
support changing input locale on the fly.
* gdk/win32/gdkevent.c: Support input language (keyboard locale)
on-the-fly changes. Convert incoming characters from the current
codepage to Unicode (and then to a UTF-8 multi-byte string) based
on the current input language. Use keysym<->Unicode mapping tables
and functions borrowed from xterm sources.
Support IMEs (Input Method Editors) for CJK languages. On non-CJK
editions of Win9x, use the ActiveX-based Active IMM (Input Method
Manager) if available. IMEs and the Active IMM are available under
the disguise of Chinese, Korean and Japanese support for IE and
Outlook Express from "Windows Update" for Win98. On Win2k, the CJK
support is present in all editions (as long as you install it).
Call DispatchMessage from gdk_events_queue() (and thus
gdk_WindowProc()), instead of duplicating the code in
gdk_WindowProc().
Reworked the grab handling and propagation code, factored out
duplicated code snippets into separate functions. Other cleanups,
too.
* gdk/win32/surrogate-dimm.h: Provide just the bits we need from
the <dimm.h> header describing the Active IMM.
* gdk/win32/gdkfont.c: Pretend to support fontsets, but so far
just do the same as for "single" fonts.
* gdk/win32/gdk.c: Call CoInitialize() (COM initialisation) from
gdk_init_check, and CoUninitialize() from gdk_exit_func. Handle
the new keysyms from gdkkeysyms.h.
* gtk/gtkfontsel.c (Win32): Load the font for the preview as a
fontset, so that gtkentry uses wide characters.
* gtk/gtkrc.c (Win32): Get the locale with gwin_getlocale(). Call
GTk+'s system directory "gtk+", not "gtk".
1999-10-31 21:35:39 +00:00
|
|
|
#else
|
|
|
|
/* Load as a fontset so that gtkentry uses wide chars for it */
|
|
|
|
font = gdk_fontset_load (fontname);
|
|
|
|
#endif
|
1998-06-15 23:29:27 +00:00
|
|
|
g_free(fontname);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (font)
|
|
|
|
{
|
|
|
|
fontsel->font = font;
|
|
|
|
/* Make sure the message label is empty, but don't change it unless
|
|
|
|
it's necessary as it results in a resize of the whole window! */
|
|
|
|
gtk_label_get(GTK_LABEL(fontsel->message_label), &label_text);
|
|
|
|
if (strcmp(label_text, ""))
|
1998-12-15 20:31:26 +00:00
|
|
|
gtk_label_set_text(GTK_LABEL(fontsel->message_label), "");
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_font_selection_update_preview (fontsel);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-12-15 20:31:26 +00:00
|
|
|
gtk_label_set_text(GTK_LABEL(fontsel->message_label),
|
1998-12-18 01:32:33 +00:00
|
|
|
_("The selected font is not available."));
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-12-15 20:31:26 +00:00
|
|
|
gtk_label_set_text(GTK_LABEL(fontsel->message_label),
|
1998-12-18 01:32:33 +00:00
|
|
|
_("The selected font is not a valid font."));
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This sets the font in the preview entry to the selected font, and tries to
|
|
|
|
make sure that the preview entry is a reasonable size, i.e. so that the
|
|
|
|
text can be seen with a bit of space to spare. But it tries to avoid
|
|
|
|
resizing the entry every time the font changes.
|
|
|
|
This also used to shrink the preview if the font size was decreased, but
|
|
|
|
that made it awkward if the user wanted to resize the window themself. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_update_preview (GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
GtkWidget *preview_entry;
|
|
|
|
GtkStyle *style;
|
|
|
|
gint text_height, new_height;
|
|
|
|
gchar *text;
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
1998-06-15 23:29:27 +00:00
|
|
|
XFontStruct *xfs;
|
1999-03-13 16:40:24 +00:00
|
|
|
#endif
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In update_preview\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
style = gtk_style_new ();
|
|
|
|
gdk_font_unref (style->font);
|
|
|
|
style->font = fontsel->font;
|
|
|
|
gdk_font_ref (style->font);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
preview_entry = fontsel->preview_entry;
|
|
|
|
gtk_widget_set_style (preview_entry, style);
|
|
|
|
gtk_style_unref(style);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
text_height = preview_entry->style->font->ascent
|
|
|
|
+ preview_entry->style->font->descent;
|
|
|
|
/* We don't ever want to be over MAX_PREVIEW_HEIGHT pixels high. */
|
|
|
|
new_height = text_height + 20;
|
|
|
|
if (new_height < INITIAL_PREVIEW_HEIGHT)
|
|
|
|
new_height = INITIAL_PREVIEW_HEIGHT;
|
|
|
|
if (new_height > MAX_PREVIEW_HEIGHT)
|
|
|
|
new_height = MAX_PREVIEW_HEIGHT;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if ((preview_entry->requisition.height < text_height + 10)
|
|
|
|
|| (preview_entry->requisition.height > text_height + 40))
|
|
|
|
gtk_widget_set_usize(preview_entry, -1, new_height);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* This sets the preview text, if it hasn't been set already. */
|
|
|
|
text = gtk_entry_get_text(GTK_ENTRY(fontsel->preview_entry));
|
|
|
|
if (strlen(text) == 0)
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->preview_entry), PREVIEW_TEXT);
|
|
|
|
gtk_entry_set_position(GTK_ENTRY(fontsel->preview_entry), 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
1998-06-15 23:29:27 +00:00
|
|
|
/* If this is a 2-byte font display a message to say it may not be
|
|
|
|
displayed properly. */
|
|
|
|
xfs = GDK_FONT_XFONT(fontsel->font);
|
|
|
|
if (xfs->min_byte1 != 0 || xfs->max_byte1 != 0)
|
1998-12-15 20:31:26 +00:00
|
|
|
gtk_label_set_text(GTK_LABEL(fontsel->message_label),
|
1998-12-18 01:32:33 +00:00
|
|
|
_("This is a 2-byte font and may not be displayed correctly."));
|
1999-03-13 16:40:24 +00:00
|
|
|
#endif
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_selection_switch_page (GtkWidget *w,
|
|
|
|
GtkNotebookPage *page,
|
|
|
|
gint page_num,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkFontSelection *fontsel = GTK_FONT_SELECTION(data);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* This function strangely gets called when the window is destroyed,
|
|
|
|
so we check here to see if the notebook is visible. */
|
|
|
|
if (!GTK_WIDGET_VISIBLE(w))
|
|
|
|
return;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (page_num == 0)
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_font_selection_update_filter(fontsel);
|
1998-06-15 23:29:27 +00:00
|
|
|
else if (page_num == 1)
|
|
|
|
gtk_font_selection_show_font_info(fontsel);
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_selection_show_font_info (GtkFontSelection *fontsel)
|
|
|
|
{
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
1998-06-15 23:29:27 +00:00
|
|
|
Atom font_atom, atom;
|
|
|
|
Bool status;
|
1999-03-13 16:40:24 +00:00
|
|
|
#endif
|
1998-06-15 23:29:27 +00:00
|
|
|
char *name;
|
|
|
|
gchar *fontname;
|
|
|
|
gchar field_buffer[XLFD_MAX_FIELD_LEN];
|
|
|
|
gchar *field;
|
|
|
|
gint i;
|
|
|
|
gboolean shown_actual_fields = FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontname = gtk_font_selection_get_font_name(fontsel);
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->requested_font_name),
|
|
|
|
fontname ? fontname : "");
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_clist_freeze (GTK_CLIST(fontsel->info_clist));
|
|
|
|
for (i = 0; i < GTK_XLFD_NUM_FIELDS; i++)
|
|
|
|
{
|
|
|
|
if (fontname)
|
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname, i, field_buffer);
|
|
|
|
else
|
|
|
|
field = NULL;
|
|
|
|
if (field)
|
|
|
|
{
|
|
|
|
if (i == XLFD_SLANT)
|
|
|
|
field = gtk_font_selection_expand_slant_code(field);
|
|
|
|
else if (i == XLFD_SPACING)
|
|
|
|
field = gtk_font_selection_expand_spacing_code(field);
|
|
|
|
}
|
|
|
|
gtk_clist_set_text(GTK_CLIST(fontsel->info_clist), i, 1,
|
|
|
|
field ? field : "");
|
|
|
|
}
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
1998-06-15 23:29:27 +00:00
|
|
|
if (fontsel->font)
|
|
|
|
{
|
|
|
|
font_atom = XInternAtom(GDK_DISPLAY(), "FONT", True);
|
|
|
|
if (font_atom != None)
|
|
|
|
{
|
|
|
|
status = XGetFontProperty(GDK_FONT_XFONT(fontsel->font), font_atom,
|
|
|
|
&atom);
|
|
|
|
if (status == True)
|
|
|
|
{
|
|
|
|
name = XGetAtomName(GDK_DISPLAY(), atom);
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->actual_font_name), name);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (i = 0; i < GTK_XLFD_NUM_FIELDS; i++)
|
|
|
|
{
|
|
|
|
field = gtk_font_selection_get_xlfd_field (name, i,
|
|
|
|
field_buffer);
|
|
|
|
if (i == XLFD_SLANT)
|
|
|
|
field = gtk_font_selection_expand_slant_code(field);
|
|
|
|
else if (i == XLFD_SPACING)
|
|
|
|
field = gtk_font_selection_expand_spacing_code(field);
|
|
|
|
gtk_clist_set_text(GTK_CLIST(fontsel->info_clist), i, 2,
|
|
|
|
field ? field : "");
|
|
|
|
}
|
|
|
|
shown_actual_fields = TRUE;
|
|
|
|
XFree(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-09-29 23:47:22 +00:00
|
|
|
#elif defined (GDK_WINDOWING_WIN32)
|
1999-03-13 16:40:24 +00:00
|
|
|
if (fontsel->font)
|
|
|
|
{
|
|
|
|
LOGFONT logfont;
|
|
|
|
|
|
|
|
if (GetObject (GDK_FONT_XFONT (fontsel->font),
|
|
|
|
sizeof (LOGFONT), &logfont) > 0)
|
|
|
|
{
|
|
|
|
name = logfont_to_xlfd (&logfont, logfont.lfHeight, -1, 0);
|
|
|
|
gtk_entry_set_text (GTK_ENTRY(fontsel->actual_font_name),name);
|
|
|
|
for (i = 0; i < GTK_XLFD_NUM_FIELDS; i++)
|
|
|
|
{
|
|
|
|
field = gtk_font_selection_get_xlfd_field (name, i,
|
|
|
|
field_buffer);
|
|
|
|
if (i == XLFD_SLANT)
|
|
|
|
field = gtk_font_selection_expand_slant_code(field);
|
|
|
|
else if (i == XLFD_SPACING)
|
|
|
|
field = gtk_font_selection_expand_spacing_code(field);
|
|
|
|
gtk_clist_set_text(GTK_CLIST(fontsel->info_clist), i, 2,
|
|
|
|
field ? field : "");
|
|
|
|
}
|
|
|
|
shown_actual_fields = TRUE;
|
|
|
|
g_free (name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
1998-06-15 23:29:27 +00:00
|
|
|
if (!shown_actual_fields)
|
|
|
|
{
|
1998-06-19 01:26:24 +00:00
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->actual_font_name), "");
|
1998-06-15 23:29:27 +00:00
|
|
|
for (i = 0; i < GTK_XLFD_NUM_FIELDS; i++)
|
|
|
|
{
|
|
|
|
gtk_clist_set_text(GTK_CLIST(fontsel->info_clist), i, 2,
|
1998-12-18 01:32:33 +00:00
|
|
|
fontname ? _("(unknown)") : "");
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
gtk_clist_thaw (GTK_CLIST(fontsel->info_clist));
|
|
|
|
g_free(fontname);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gchar*
|
|
|
|
gtk_font_selection_expand_slant_code(gchar *slant)
|
|
|
|
{
|
1998-12-18 01:32:33 +00:00
|
|
|
if (!g_strcasecmp(slant, "r")) return(_("roman"));
|
|
|
|
else if (!g_strcasecmp(slant, "i")) return(_("italic"));
|
|
|
|
else if (!g_strcasecmp(slant, "o")) return(_("oblique"));
|
|
|
|
else if (!g_strcasecmp(slant, "ri")) return(_("reverse italic"));
|
|
|
|
else if (!g_strcasecmp(slant, "ro")) return(_("reverse oblique"));
|
|
|
|
else if (!g_strcasecmp(slant, "ot")) return(_("other"));
|
1998-06-15 23:29:27 +00:00
|
|
|
return slant;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar*
|
|
|
|
gtk_font_selection_expand_spacing_code(gchar *spacing)
|
|
|
|
{
|
1998-12-18 01:32:33 +00:00
|
|
|
if (!g_strcasecmp(spacing, "p")) return(_("proportional"));
|
|
|
|
else if (!g_strcasecmp(spacing, "m")) return(_("monospaced"));
|
|
|
|
else if (!g_strcasecmp(spacing, "c")) return(_("char cell"));
|
1998-06-15 23:29:27 +00:00
|
|
|
return spacing;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
1998-10-30 01:34:06 +00:00
|
|
|
* These functions all deal with the Filter page and filtering the fonts.
|
1998-06-15 23:29:27 +00:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/* This is called when an item is selected in one of the filter clists.
|
|
|
|
We make sure that the first row of the clist, i.e. the wildcard '*', is
|
|
|
|
selected if and only if none of the other items are selected.
|
1998-10-30 01:34:06 +00:00
|
|
|
Also doesn't allow selections of values filtered out by base filter.
|
1998-06-15 23:29:27 +00:00
|
|
|
We may need to be careful about triggering other signals. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_select_filter (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontSelection *fontsel)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
gint i, prop, index;
|
1998-06-15 23:29:27 +00:00
|
|
|
|
|
|
|
if (row == 0)
|
1998-10-30 01:34:06 +00:00
|
|
|
{
|
|
|
|
for (i = 1; i < GTK_CLIST(w)->rows; i++)
|
|
|
|
gtk_clist_unselect_row(GTK_CLIST(w), i, 0);
|
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
else
|
1998-10-30 01:34:06 +00:00
|
|
|
{
|
|
|
|
/* Find out which property this is. */
|
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
if (fontsel->filter_clists[prop] == w)
|
|
|
|
break;
|
|
|
|
index = GPOINTER_TO_INT (gtk_clist_get_row_data(GTK_CLIST(w), row));
|
|
|
|
if (gtk_font_selection_filter_state (fontsel, GTK_FONT_FILTER_BASE,
|
|
|
|
prop, index) == NOT_FILTERED)
|
|
|
|
gtk_clist_unselect_row(GTK_CLIST(w), row, 0);
|
|
|
|
else
|
|
|
|
gtk_clist_unselect_row(GTK_CLIST(w), 0, 0);
|
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Here a filter item is being deselected. If there are now no items selected
|
|
|
|
we select the first '*' item, unless that it is the item being deselected,
|
|
|
|
in which case we select all of the other items. This makes it easy to
|
|
|
|
select all items in the list except one or two. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_unselect_filter (GtkWidget *w,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *bevent,
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontSelection *fontsel)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
gint i, prop, index;
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (!GTK_CLIST(w)->selection)
|
|
|
|
{
|
|
|
|
if (row == 0)
|
1998-10-30 01:34:06 +00:00
|
|
|
{
|
|
|
|
/* Find out which property this is. */
|
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
if (fontsel->filter_clists[prop] == w)
|
|
|
|
break;
|
|
|
|
|
|
|
|
for (i = 1; i < GTK_CLIST(w)->rows; i++)
|
|
|
|
{
|
|
|
|
index = GPOINTER_TO_INT (gtk_clist_get_row_data(GTK_CLIST(w),
|
|
|
|
i));
|
|
|
|
if (gtk_font_selection_filter_state (fontsel,
|
|
|
|
GTK_FONT_FILTER_BASE,
|
|
|
|
prop, index)
|
|
|
|
!= NOT_FILTERED)
|
|
|
|
gtk_clist_select_row(GTK_CLIST(w), i, 0);
|
|
|
|
}
|
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
else
|
1998-10-30 01:34:06 +00:00
|
|
|
{
|
|
|
|
gtk_clist_select_row(GTK_CLIST(w), 0, 0);
|
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is called when the main notebook page is selected. It checks if the
|
|
|
|
filter has changed, an if so it creates the filter settings, and filters the
|
|
|
|
fonts shown. If an empty filter (all '*'s) is applied, then filtering is
|
|
|
|
turned off. */
|
|
|
|
static void
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_font_selection_update_filter (GtkFontSelection *fontsel)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
GtkWidget *clist;
|
|
|
|
GList *selection;
|
1998-10-30 01:34:06 +00:00
|
|
|
gboolean default_filter = TRUE, filter_changed = FALSE;
|
1998-06-15 23:29:27 +00:00
|
|
|
gint prop, nselected, i, row, index;
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontFilter *filter = &fontsel->filters[GTK_FONT_FILTER_USER];
|
|
|
|
gint base_font_type, user_font_type, new_font_type;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-10-30 01:34:06 +00:00
|
|
|
g_message("In update_filter\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Check if the user filter has changed, and also if it is the default
|
|
|
|
filter, i.e. bitmap & scalable fonts and all '*'s selected.
|
|
|
|
We only look at the bits which are not already filtered out by the base
|
|
|
|
filter, since that overrides the user filter. */
|
|
|
|
base_font_type = fontsel->filters[GTK_FONT_FILTER_BASE].font_type
|
|
|
|
& GTK_FONT_ALL;
|
|
|
|
user_font_type = fontsel->filters[GTK_FONT_FILTER_USER].font_type
|
|
|
|
& GTK_FONT_ALL;
|
|
|
|
new_font_type = GTK_TOGGLE_BUTTON(fontsel->type_bitmaps_button)->active
|
|
|
|
? GTK_FONT_BITMAP : 0;
|
|
|
|
new_font_type |= (GTK_TOGGLE_BUTTON(fontsel->type_scalable_button)->active
|
|
|
|
? GTK_FONT_SCALABLE : 0);
|
|
|
|
new_font_type |= (GTK_TOGGLE_BUTTON(fontsel->type_scaled_bitmaps_button)->active ? GTK_FONT_SCALABLE_BITMAP : 0);
|
|
|
|
new_font_type &= base_font_type;
|
|
|
|
new_font_type |= (~base_font_type & user_font_type);
|
|
|
|
if (new_font_type != (GTK_FONT_BITMAP | GTK_FONT_SCALABLE))
|
|
|
|
default_filter = FALSE;
|
|
|
|
|
|
|
|
if (new_font_type != user_font_type)
|
|
|
|
filter_changed = TRUE;
|
|
|
|
fontsel->filters[GTK_FONT_FILTER_USER].font_type = new_font_type;
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
clist = fontsel->filter_clists[prop];
|
|
|
|
selection = GTK_CLIST(clist)->selection;
|
|
|
|
nselected = g_list_length(selection);
|
1998-06-18 22:32:36 +00:00
|
|
|
if (nselected != 1 || GPOINTER_TO_INT (selection->data) != 0)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
default_filter = FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
if (filter->property_nfilters[prop] != nselected)
|
1998-06-15 23:29:27 +00:00
|
|
|
filter_changed = TRUE;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; i < nselected; i++)
|
|
|
|
{
|
1998-06-18 22:32:36 +00:00
|
|
|
row = GPOINTER_TO_INT (selection->data);
|
|
|
|
index = GPOINTER_TO_INT (gtk_clist_get_row_data (GTK_CLIST (clist), row));
|
1998-10-30 01:34:06 +00:00
|
|
|
if (filter->property_filters[prop][i] != index)
|
1998-06-15 23:29:27 +00:00
|
|
|
filter_changed = TRUE;
|
|
|
|
selection = selection->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
if (filter->property_nfilters[prop] != 0)
|
1998-06-15 23:29:27 +00:00
|
|
|
filter_changed = TRUE;
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* If the filter hasn't changed we just return. */
|
|
|
|
if (!filter_changed)
|
|
|
|
return;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-10-30 01:34:06 +00:00
|
|
|
g_message(" update_fonts: filter has changed\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Free the old filter data and create the new arrays. */
|
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
g_free(filter->property_filters[prop]);
|
|
|
|
|
|
|
|
clist = fontsel->filter_clists[prop];
|
|
|
|
selection = GTK_CLIST(clist)->selection;
|
|
|
|
nselected = g_list_length(selection);
|
|
|
|
if (nselected == 1 && GPOINTER_TO_INT (selection->data) == 0)
|
|
|
|
{
|
|
|
|
filter->property_filters[prop] = NULL;
|
|
|
|
filter->property_nfilters[prop] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
filter->property_filters[prop] = g_new(guint16, nselected);
|
|
|
|
filter->property_nfilters[prop] = nselected;
|
|
|
|
for (i = 0; i < nselected; i++)
|
|
|
|
{
|
|
|
|
row = GPOINTER_TO_INT (selection->data);
|
|
|
|
index = GPOINTER_TO_INT (gtk_clist_get_row_data (GTK_CLIST (clist), row));
|
|
|
|
filter->property_filters[prop][i] = index;
|
|
|
|
selection = selection->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the 'Reset Filter' button sensitive if a filter is in effect, and
|
|
|
|
also set the label above the font list to show this as well. */
|
|
|
|
if (default_filter)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
gtk_widget_set_sensitive(fontsel->filter_button, FALSE);
|
1998-12-18 01:32:33 +00:00
|
|
|
gtk_label_set_text(GTK_LABEL(fontsel->font_label), _("Font:"));
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_widget_set_sensitive(fontsel->filter_button, TRUE);
|
1998-12-18 01:32:33 +00:00
|
|
|
gtk_label_set_text(GTK_LABEL(fontsel->font_label), _("Font: (Filter Applied)"));
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_font_selection_show_available_fonts(fontsel);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* This shows all the available fonts in the font clist. */
|
1998-06-15 23:29:27 +00:00
|
|
|
static void
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_font_selection_show_available_fonts (GtkFontSelection *fontsel)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
FontInfo *font_info, *font;
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontFilter *filter;
|
|
|
|
gint nfonts, i, j, k, row, style, font_row = -1;
|
1998-06-15 23:29:27 +00:00
|
|
|
gchar font_buffer[XLFD_MAX_FIELD_LEN * 2 + 4];
|
|
|
|
gchar *font_item;
|
|
|
|
gboolean matched, matched_style;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-10-30 01:34:06 +00:00
|
|
|
g_message("In show_available_fonts\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
1998-06-16 03:40:04 +00:00
|
|
|
font_info = fontsel_info->font_info;
|
|
|
|
nfonts = fontsel_info->nfonts;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Filter the list of fonts. */
|
|
|
|
gtk_clist_freeze (GTK_CLIST(fontsel->font_clist));
|
|
|
|
gtk_clist_clear (GTK_CLIST(fontsel->font_clist));
|
|
|
|
for (i = 0; i < nfonts; i++)
|
|
|
|
{
|
|
|
|
font = &font_info[i];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Check if the foundry passes through all filters. */
|
|
|
|
matched = TRUE;
|
|
|
|
for (k = 0; k < GTK_NUM_FONT_FILTERS; k++)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
filter = &fontsel->filters[k];
|
|
|
|
|
|
|
|
if (filter->property_nfilters[FOUNDRY] != 0)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
matched = FALSE;
|
|
|
|
for (j = 0; j < filter->property_nfilters[FOUNDRY]; j++)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
if (font->foundry == filter->property_filters[FOUNDRY][j])
|
|
|
|
{
|
|
|
|
matched = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-12-07 20:56:46 +00:00
|
|
|
if (!matched)
|
|
|
|
break;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
if (!matched)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Now check if the other properties are matched in at least one style.*/
|
|
|
|
matched_style = FALSE;
|
|
|
|
for (style = 0; style < font->nstyles; style++)
|
|
|
|
{
|
|
|
|
if (gtk_font_selection_style_visible(fontsel, font, style))
|
|
|
|
{
|
|
|
|
matched_style = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!matched_style)
|
|
|
|
continue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Insert the font in the clist. */
|
|
|
|
if ((i > 0 && font->family == font_info[i-1].family)
|
|
|
|
|| (i < nfonts - 1 && font->family == font_info[i+1].family))
|
|
|
|
{
|
|
|
|
sprintf(font_buffer, "%s (%s)", font->family,
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->properties[FOUNDRY][font->foundry]);
|
1998-06-15 23:29:27 +00:00
|
|
|
font_item = font_buffer;
|
|
|
|
row = gtk_clist_append(GTK_CLIST(fontsel->font_clist), &font_item);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
row = gtk_clist_append(GTK_CLIST(fontsel->font_clist),
|
|
|
|
&font->family);
|
|
|
|
}
|
|
|
|
gtk_clist_set_row_data(GTK_CLIST(fontsel->font_clist), row,
|
1998-06-18 22:32:36 +00:00
|
|
|
GINT_TO_POINTER (i));
|
1998-10-30 01:34:06 +00:00
|
|
|
if (fontsel->font_index == i)
|
|
|
|
font_row = row;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
gtk_clist_thaw (GTK_CLIST(fontsel->font_clist));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* If the currently-selected font isn't in the new list, reset the
|
|
|
|
selection. */
|
|
|
|
if (font_row == -1)
|
|
|
|
{
|
|
|
|
fontsel->font_index = -1;
|
|
|
|
if (fontsel->font)
|
|
|
|
gdk_font_unref(fontsel->font);
|
|
|
|
fontsel->font = NULL;
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->font_entry), "");
|
|
|
|
gtk_clist_clear (GTK_CLIST(fontsel->font_style_clist));
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->font_style_entry), "");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_clist_select_row(GTK_CLIST(fontsel->font_clist), font_row, 0);
|
|
|
|
if (gtk_clist_row_is_visible(GTK_CLIST(fontsel->font_clist), font_row)
|
|
|
|
!= GTK_VISIBILITY_FULL)
|
|
|
|
gtk_clist_moveto(GTK_CLIST(fontsel->font_clist), font_row, -1, 0.5, 0);
|
|
|
|
|
|
|
|
gtk_font_selection_show_available_styles (fontsel);
|
|
|
|
gtk_font_selection_select_best_style (fontsel, FALSE);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns TRUE if the style is not currently filtered out. */
|
|
|
|
static gboolean
|
|
|
|
gtk_font_selection_style_visible(GtkFontSelection *fontsel,
|
|
|
|
FontInfo *font,
|
1998-10-30 01:34:06 +00:00
|
|
|
gint style_index)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
FontStyle *styles, *style;
|
|
|
|
GtkFontFilter *filter;
|
1998-06-15 23:29:27 +00:00
|
|
|
guint16 value;
|
1998-10-30 01:34:06 +00:00
|
|
|
gint prop, i, j;
|
1998-06-15 23:29:27 +00:00
|
|
|
gboolean matched;
|
1998-10-30 01:34:06 +00:00
|
|
|
gint type_filter;
|
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
styles = &fontsel_info->font_styles[font->style_index];
|
1998-10-30 01:34:06 +00:00
|
|
|
style = &styles[style_index];
|
|
|
|
|
|
|
|
/* Check if font_type of style is filtered. */
|
|
|
|
type_filter = fontsel->filters[GTK_FONT_FILTER_BASE].font_type
|
|
|
|
& fontsel->filters[GTK_FONT_FILTER_USER].font_type;
|
|
|
|
if (!(style->flags & type_filter))
|
|
|
|
return FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
value = style->properties[prop];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Check each filter. */
|
|
|
|
for (i = 0; i < GTK_NUM_FONT_FILTERS; i++)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
filter = &fontsel->filters[i];
|
|
|
|
|
|
|
|
if (filter->property_nfilters[prop] != 0)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
matched = FALSE;
|
|
|
|
for (j = 0; j < filter->property_nfilters[prop]; j++)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
if (value == filter->property_filters[prop][j])
|
|
|
|
{
|
|
|
|
matched = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-10-30 01:34:06 +00:00
|
|
|
if (!matched)
|
|
|
|
return FALSE;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* This resets the font type to bitmap or scalable, and sets all the filter
|
|
|
|
clists to the wildcard '*' options. */
|
1998-06-15 23:29:27 +00:00
|
|
|
static void
|
|
|
|
gtk_font_selection_reset_filter (GtkWidget *w,
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontSelection *fontsel)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
gint prop, base_font_type;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
fontsel->filters[GTK_FONT_FILTER_USER].font_type = GTK_FONT_BITMAP
|
|
|
|
| GTK_FONT_SCALABLE;
|
|
|
|
|
|
|
|
base_font_type = fontsel->filters[GTK_FONT_FILTER_BASE].font_type;
|
|
|
|
if (base_font_type & GTK_FONT_BITMAP)
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_bitmaps_button), TRUE);
|
1998-10-30 01:34:06 +00:00
|
|
|
if (base_font_type & GTK_FONT_SCALABLE)
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_scalable_button), TRUE);
|
1998-10-30 01:34:06 +00:00
|
|
|
if (base_font_type & GTK_FONT_SCALABLE_BITMAP)
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_scaled_bitmaps_button), FALSE);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
gtk_clist_select_row(GTK_CLIST(fontsel->filter_clists[prop]), 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This clears the filter, showing all fonts and styles again. */
|
|
|
|
static void
|
1998-06-19 01:26:24 +00:00
|
|
|
gtk_font_selection_on_clear_filter (GtkWidget *w,
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontSelection *fontsel)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
gtk_font_selection_clear_filter(fontsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
/* This resets the user filter, showing all fonts and styles which pass the
|
|
|
|
base filter again. Note that the font type is set to bitmaps and scalable
|
|
|
|
fonts - scaled bitmaps are not shown. */
|
1998-06-15 23:29:27 +00:00
|
|
|
static void
|
|
|
|
gtk_font_selection_clear_filter (GtkFontSelection *fontsel)
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
GtkFontFilter *filter;
|
|
|
|
gint prop;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("In clear_filter\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
/* Clear the filter data. */
|
1998-10-30 01:34:06 +00:00
|
|
|
filter = &fontsel->filters[GTK_FONT_FILTER_USER];
|
|
|
|
filter->font_type = GTK_FONT_BITMAP | GTK_FONT_SCALABLE;
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
g_free(filter->property_filters[prop]);
|
|
|
|
filter->property_filters[prop] = NULL;
|
|
|
|
filter->property_nfilters[prop] = 0;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Select all the '*'s on the filter page. */
|
|
|
|
gtk_font_selection_reset_filter(NULL, fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-19 01:26:24 +00:00
|
|
|
/* Update the main notebook page. */
|
|
|
|
gtk_widget_set_sensitive(fontsel->filter_button, FALSE);
|
1998-12-18 01:32:33 +00:00
|
|
|
gtk_label_set_text(GTK_LABEL(fontsel->font_label), _("Font:"));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_font_selection_show_available_fonts(fontsel);
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
void
|
|
|
|
gtk_font_selection_set_filter (GtkFontSelection *fontsel,
|
|
|
|
GtkFontFilterType filter_type,
|
|
|
|
GtkFontType font_type,
|
|
|
|
gchar **foundries,
|
|
|
|
gchar **weights,
|
|
|
|
gchar **slants,
|
|
|
|
gchar **setwidths,
|
|
|
|
gchar **spacings,
|
|
|
|
gchar **charsets)
|
|
|
|
{
|
|
|
|
GtkFontFilter *filter;
|
|
|
|
gchar **filter_strings [GTK_NUM_FONT_PROPERTIES];
|
|
|
|
gchar *filter_string;
|
|
|
|
gchar *property, *property_alt;
|
|
|
|
gint prop, nfilters, i, j, num_found;
|
|
|
|
gint base_font_type, user_font_type;
|
|
|
|
gboolean filter_set;
|
|
|
|
|
|
|
|
/* Put them into an array so we can use a simple loop. */
|
|
|
|
filter_strings[FOUNDRY] = foundries;
|
|
|
|
filter_strings[WEIGHT] = weights;
|
|
|
|
filter_strings[SLANT] = slants;
|
|
|
|
filter_strings[SET_WIDTH] = setwidths;
|
|
|
|
filter_strings[SPACING] = spacings;
|
|
|
|
filter_strings[CHARSET] = charsets;
|
|
|
|
|
|
|
|
filter = &fontsel->filters[filter_type];
|
|
|
|
filter->font_type = font_type;
|
|
|
|
|
|
|
|
/* Free the old filter data, and insert the new. */
|
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
g_free(filter->property_filters[prop]);
|
|
|
|
filter->property_filters[prop] = NULL;
|
|
|
|
filter->property_nfilters[prop] = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
if (filter_strings[prop])
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Count how many items in the new array. */
|
|
|
|
nfilters = 0;
|
|
|
|
while (filter_strings[prop][nfilters])
|
|
|
|
nfilters++;
|
|
|
|
|
|
|
|
filter->property_filters[prop] = g_new(guint16, nfilters);
|
|
|
|
filter->property_nfilters[prop] = 0;
|
|
|
|
|
|
|
|
/* Now convert the strings to property indices. */
|
|
|
|
num_found = 0;
|
|
|
|
for (i = 0; i < nfilters; i++)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
filter_string = filter_strings[prop][i];
|
|
|
|
for (j = 0; j < fontsel_info->nproperties[prop]; j++)
|
|
|
|
{
|
1999-04-05 16:20:24 +00:00
|
|
|
property = _(fontsel_info->properties[prop][j]);
|
1998-10-30 01:34:06 +00:00
|
|
|
property_alt = NULL;
|
|
|
|
if (prop == SLANT)
|
|
|
|
property_alt = gtk_font_selection_expand_slant_code(property);
|
|
|
|
else if (prop == SPACING)
|
|
|
|
property_alt = gtk_font_selection_expand_spacing_code(property);
|
|
|
|
if (!strcmp (filter_string, property)
|
|
|
|
|| (property_alt && !strcmp (filter_string, property_alt)))
|
|
|
|
{
|
|
|
|
filter->property_filters[prop][num_found] = j;
|
|
|
|
num_found++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-10-30 01:34:06 +00:00
|
|
|
filter->property_nfilters[prop] = num_found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now set the clists on the filter page according to the new filter. */
|
|
|
|
gtk_font_selection_update_filter_lists (fontsel);
|
|
|
|
|
|
|
|
if (filter_type == GTK_FONT_FILTER_BASE)
|
|
|
|
{
|
|
|
|
user_font_type = fontsel->filters[GTK_FONT_FILTER_USER].font_type;
|
|
|
|
if (font_type & GTK_FONT_BITMAP)
|
|
|
|
{
|
|
|
|
gtk_widget_set_sensitive (fontsel->type_bitmaps_button, TRUE);
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_bitmaps_button), user_font_type & GTK_FONT_BITMAP);
|
1998-10-30 01:34:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_widget_set_sensitive (fontsel->type_bitmaps_button, FALSE);
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_bitmaps_button), FALSE);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
if (font_type & GTK_FONT_SCALABLE)
|
|
|
|
{
|
|
|
|
gtk_widget_set_sensitive (fontsel->type_scalable_button, TRUE);
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_scalable_button), user_font_type & GTK_FONT_SCALABLE);
|
1998-10-30 01:34:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_widget_set_sensitive (fontsel->type_scalable_button, FALSE);
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_scalable_button), FALSE);
|
1998-10-30 01:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (font_type & GTK_FONT_SCALABLE_BITMAP)
|
|
|
|
{
|
|
|
|
gtk_widget_set_sensitive (fontsel->type_scaled_bitmaps_button, TRUE);
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_scaled_bitmaps_button), user_font_type & GTK_FONT_SCALABLE_BITMAP);
|
1998-10-30 01:34:06 +00:00
|
|
|
}
|
|
|
|
else
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-10-30 01:34:06 +00:00
|
|
|
gtk_widget_set_sensitive (fontsel->type_scaled_bitmaps_button, FALSE);
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_scaled_bitmaps_button), FALSE);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
}
|
1998-10-30 01:34:06 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
base_font_type = fontsel->filters[GTK_FONT_FILTER_BASE].font_type;
|
|
|
|
if (base_font_type & GTK_FONT_BITMAP)
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_bitmaps_button), font_type & GTK_FONT_BITMAP);
|
1998-10-30 01:34:06 +00:00
|
|
|
|
|
|
|
if (base_font_type & GTK_FONT_SCALABLE)
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_scalable_button), font_type & GTK_FONT_SCALABLE);
|
1998-10-30 01:34:06 +00:00
|
|
|
|
|
|
|
if (base_font_type & GTK_FONT_SCALABLE_BITMAP)
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fontsel->type_scaled_bitmaps_button), font_type & GTK_FONT_SCALABLE_BITMAP);
|
1998-10-30 01:34:06 +00:00
|
|
|
|
|
|
|
/* If the user filter is not the default, make the 'Reset Filter' button
|
|
|
|
sensitive. */
|
|
|
|
filter_set = FALSE;
|
|
|
|
if (font_type != (GTK_FONT_BITMAP | GTK_FONT_SCALABLE))
|
|
|
|
filter_set = TRUE;
|
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
if (filter->property_nfilters[prop] != 0)
|
|
|
|
filter_set = TRUE;
|
|
|
|
}
|
|
|
|
if (filter_set)
|
|
|
|
gtk_widget_set_sensitive (fontsel->filter_button, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_font_selection_show_available_fonts (fontsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This sets the colour of each property in the filter clists according to
|
|
|
|
the base filter. i.e. Filtered properties are shown as insensitive. */
|
|
|
|
static void
|
|
|
|
gtk_font_selection_update_filter_lists (GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
GtkWidget *clist;
|
|
|
|
GdkColor *inactive_fg, *inactive_bg, *fg, *bg;
|
|
|
|
gint prop, row, index;
|
|
|
|
|
|
|
|
/* We have to make sure the clist is realized to use the colours. */
|
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
clist = fontsel->filter_clists[prop];
|
|
|
|
gtk_widget_realize (clist);
|
|
|
|
inactive_fg = &clist->style->fg[GTK_STATE_INSENSITIVE];
|
|
|
|
inactive_bg = &clist->style->bg[GTK_STATE_INSENSITIVE];
|
|
|
|
for (row = 1; row < GTK_CLIST(clist)->rows; row++)
|
|
|
|
{
|
|
|
|
index = GPOINTER_TO_INT (gtk_clist_get_row_data(GTK_CLIST(clist),
|
|
|
|
row));
|
|
|
|
/* Set the colour according to the base filter. */
|
|
|
|
if (gtk_font_selection_filter_state (fontsel, GTK_FONT_FILTER_BASE,
|
|
|
|
prop, index) == NOT_FILTERED)
|
|
|
|
{
|
|
|
|
fg = inactive_fg;
|
|
|
|
bg = inactive_bg;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fg = NULL;
|
|
|
|
bg = NULL;
|
|
|
|
}
|
|
|
|
gtk_clist_set_foreground(GTK_CLIST(clist), row, fg);
|
|
|
|
gtk_clist_set_background(GTK_CLIST(clist), row, bg);
|
|
|
|
|
|
|
|
/* Set the selection state according to the user filter. */
|
|
|
|
if (gtk_font_selection_filter_state (fontsel, GTK_FONT_FILTER_USER,
|
|
|
|
prop, index) == FILTERED
|
|
|
|
&& fg == NULL)
|
|
|
|
gtk_clist_select_row (GTK_CLIST (clist), row, 0);
|
|
|
|
else
|
|
|
|
gtk_clist_unselect_row (GTK_CLIST (clist), row, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns whether a property value is in the filter or not, or if the
|
|
|
|
property has no filter set. */
|
|
|
|
static GtkFontPropertyFilterState
|
|
|
|
gtk_font_selection_filter_state (GtkFontSelection *fontsel,
|
|
|
|
GtkFontFilterType filter_type,
|
|
|
|
gint property,
|
|
|
|
gint index)
|
|
|
|
{
|
|
|
|
GtkFontFilter *filter;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
filter = &fontsel->filters[filter_type];
|
|
|
|
if (filter->property_nfilters[property] == 0)
|
|
|
|
return NOT_SET;
|
|
|
|
|
|
|
|
for (i = 0; i < filter->property_nfilters[property]; i++)
|
|
|
|
{
|
|
|
|
if (filter->property_filters[property][i] == index)
|
|
|
|
return FILTERED;
|
|
|
|
}
|
|
|
|
return NOT_FILTERED;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
1999-03-13 16:40:24 +00:00
|
|
|
|
|
|
|
static gint num_fonts;
|
|
|
|
static gint font_names_size;
|
|
|
|
static gchar **xfontnames;
|
|
|
|
static HDC hdc;
|
|
|
|
|
|
|
|
static char *
|
|
|
|
logfont_to_xlfd (const LOGFONT *lfp,
|
|
|
|
int size,
|
|
|
|
int res,
|
|
|
|
int avg_width)
|
|
|
|
{
|
|
|
|
const gchar *weight;
|
|
|
|
const gchar *registry, *encoding;
|
|
|
|
int point_size;
|
|
|
|
static int logpixelsy = 0;
|
|
|
|
gchar facename[LF_FACESIZE*3];
|
1999-09-30 16:59:08 +00:00
|
|
|
gchar *p;
|
|
|
|
const gchar *q;
|
1999-03-13 16:40:24 +00:00
|
|
|
|
|
|
|
if (logpixelsy == 0)
|
|
|
|
{
|
|
|
|
HDC hdc = GetDC (NULL);
|
|
|
|
logpixelsy = GetDeviceCaps (hdc, LOGPIXELSY);
|
|
|
|
ReleaseDC (NULL, hdc);
|
|
|
|
}
|
|
|
|
|
1999-04-05 16:20:24 +00:00
|
|
|
/* Don't use _() here, only N_(), the actual translation is done elsewhere */
|
1999-03-13 16:40:24 +00:00
|
|
|
if (lfp->lfWeight >= FW_HEAVY)
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("heavy");
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfWeight >= FW_EXTRABOLD)
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("extrabold");
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfWeight >= FW_BOLD)
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("bold");
|
1999-07-21 19:27:25 +00:00
|
|
|
#ifdef FW_DEMIBOLD
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfWeight >= FW_DEMIBOLD)
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("demibold");
|
1999-07-21 19:27:25 +00:00
|
|
|
#endif
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfWeight >= FW_MEDIUM)
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("medium");
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfWeight >= FW_NORMAL)
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("normal");
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfWeight >= FW_LIGHT)
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("light");
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfWeight >= FW_EXTRALIGHT)
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("extralight");
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfWeight >= FW_THIN)
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("thin");
|
1999-03-13 16:40:24 +00:00
|
|
|
else
|
1999-04-05 16:20:24 +00:00
|
|
|
weight = N_("regular");
|
1999-03-13 16:40:24 +00:00
|
|
|
|
|
|
|
if (lfp->lfCharSet == ANSI_CHARSET)
|
|
|
|
{
|
|
|
|
registry = "iso8859";
|
|
|
|
encoding = "1";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
registry = "windows";
|
|
|
|
if (lfp->lfCharSet == DEFAULT_CHARSET)
|
|
|
|
encoding = "default";
|
|
|
|
else if (lfp->lfCharSet == SYMBOL_CHARSET)
|
|
|
|
encoding = "symbol";
|
|
|
|
else if (lfp->lfCharSet == SHIFTJIS_CHARSET)
|
|
|
|
encoding = "shiftjis";
|
|
|
|
else if (lfp->lfCharSet == GB2312_CHARSET)
|
|
|
|
encoding = "gb2312";
|
|
|
|
else if (lfp->lfCharSet == HANGEUL_CHARSET)
|
|
|
|
encoding = "hangeul";
|
|
|
|
else if (lfp->lfCharSet == CHINESEBIG5_CHARSET)
|
|
|
|
encoding = "chinesebig5";
|
|
|
|
else if (lfp->lfCharSet == OEM_CHARSET)
|
|
|
|
encoding = "oem";
|
1999-07-21 19:27:25 +00:00
|
|
|
#ifdef JOHAB_CHARSET
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfCharSet == JOHAB_CHARSET)
|
|
|
|
encoding = "johab";
|
1999-07-21 19:27:25 +00:00
|
|
|
#endif
|
1999-03-13 16:40:24 +00:00
|
|
|
else if (lfp->lfCharSet == HEBREW_CHARSET)
|
|
|
|
encoding = "hebrew";
|
|
|
|
else if (lfp->lfCharSet == ARABIC_CHARSET)
|
|
|
|
encoding = "arabic";
|
|
|
|
else if (lfp->lfCharSet == GREEK_CHARSET)
|
|
|
|
encoding = "greek";
|
|
|
|
else if (lfp->lfCharSet == TURKISH_CHARSET)
|
|
|
|
encoding = "turkish";
|
|
|
|
else if (lfp->lfCharSet == THAI_CHARSET)
|
|
|
|
encoding = "thai";
|
|
|
|
else if (lfp->lfCharSet == EASTEUROPE_CHARSET)
|
|
|
|
encoding = "easteurope";
|
|
|
|
else if (lfp->lfCharSet == RUSSIAN_CHARSET)
|
|
|
|
encoding = "russian";
|
|
|
|
else if (lfp->lfCharSet == MAC_CHARSET)
|
|
|
|
encoding = "mac";
|
|
|
|
else if (lfp->lfCharSet == BALTIC_CHARSET)
|
|
|
|
encoding = "baltic";
|
|
|
|
else
|
|
|
|
encoding = "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
point_size = (int) (((double) size/logpixelsy) * 720.);
|
|
|
|
|
|
|
|
if (res == -1)
|
|
|
|
res = logpixelsy;
|
|
|
|
|
|
|
|
/* Replace illegal characters with hex escapes. */
|
|
|
|
p = facename;
|
|
|
|
q = lfp->lfFaceName;
|
|
|
|
while (*q)
|
|
|
|
{
|
|
|
|
if (*q == '-' || *q == '*' || *q == '?' || *q == '%')
|
|
|
|
p += sprintf (p, "%%%.02x", *q);
|
|
|
|
else
|
|
|
|
*p++ = *q;
|
|
|
|
q++;
|
|
|
|
}
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
return g_strdup_printf
|
|
|
|
("-%s-%s-%s-%s-%s-%s-%d-%d-%d-%d-%s-%d-%s-%s",
|
|
|
|
"unknown",
|
|
|
|
facename,
|
|
|
|
weight,
|
|
|
|
(lfp->lfItalic ?
|
|
|
|
((lfp->lfPitchAndFamily & 0xF0) == FF_ROMAN
|
|
|
|
|| (lfp->lfPitchAndFamily & 0xF0) == FF_SCRIPT ?
|
|
|
|
"i" : "o") : "r"),
|
|
|
|
"normal",
|
|
|
|
"",
|
|
|
|
size,
|
|
|
|
point_size,
|
|
|
|
res,
|
|
|
|
res,
|
|
|
|
((lfp->lfPitchAndFamily & 0x03) == FIXED_PITCH ? "m" : "p"),
|
|
|
|
avg_width,
|
|
|
|
registry, encoding);
|
|
|
|
}
|
|
|
|
|
|
|
|
int CALLBACK
|
|
|
|
InnerEnumFontFamExProc (const LOGFONT *lfp,
|
|
|
|
const TEXTMETRIC *metrics,
|
|
|
|
DWORD fontType,
|
|
|
|
LPARAM lParam)
|
|
|
|
{
|
|
|
|
int size;
|
|
|
|
|
|
|
|
if (fontType == TRUETYPE_FONTTYPE)
|
|
|
|
{
|
|
|
|
size = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size = lfp->lfHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
num_fonts++;
|
|
|
|
if (num_fonts == font_names_size)
|
|
|
|
{
|
|
|
|
font_names_size *= 2;
|
|
|
|
xfontnames = g_realloc (xfontnames, font_names_size * sizeof (gchar *));
|
|
|
|
}
|
|
|
|
xfontnames[num_fonts-1] =
|
|
|
|
logfont_to_xlfd (lfp, size, 0, 0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CALLBACK
|
|
|
|
EnumFontFamExProc (const LOGFONT *lfp,
|
|
|
|
const TEXTMETRIC *metrics,
|
|
|
|
DWORD fontType,
|
|
|
|
LPARAM lParam)
|
|
|
|
{
|
|
|
|
if (fontType == TRUETYPE_FONTTYPE)
|
|
|
|
{
|
|
|
|
LOGFONT lf = *lfp;
|
|
|
|
lf.lfPitchAndFamily = 0;
|
|
|
|
EnumFontFamiliesEx (hdc, &lf, InnerEnumFontFamExProc, 0, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
InnerEnumFontFamExProc (lfp, metrics, fontType, lParam);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* These functions all deal with creating the main class arrays containing
|
|
|
|
* the data about all available fonts.
|
|
|
|
*****************************************************************************/
|
|
|
|
static void
|
1998-06-16 03:40:04 +00:00
|
|
|
gtk_font_selection_get_fonts (void)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
1998-06-15 23:29:27 +00:00
|
|
|
gchar **xfontnames;
|
1999-03-13 16:40:24 +00:00
|
|
|
gint num_fonts;
|
1999-09-29 23:47:22 +00:00
|
|
|
#elif defined (GDK_WINDOWING_WIN32)
|
1999-03-13 16:40:24 +00:00
|
|
|
LOGFONT logfont;
|
1999-03-30 12:06:00 +00:00
|
|
|
#else
|
|
|
|
gint num_fonts = 0;
|
|
|
|
gchar **xfontnames = NULL;
|
1999-03-13 16:40:24 +00:00
|
|
|
#endif
|
1998-06-15 23:29:27 +00:00
|
|
|
GSList **fontnames;
|
|
|
|
gchar *fontname;
|
|
|
|
GSList * temp_list;
|
|
|
|
gint i, prop, style, size;
|
|
|
|
gint npixel_sizes = 0, npoint_sizes = 0;
|
|
|
|
FontInfo *font;
|
|
|
|
FontStyle *current_style, *prev_style, *tmp_style;
|
|
|
|
gboolean matched_style, found_size;
|
|
|
|
gint pixels, points, res_x, res_y;
|
|
|
|
gchar field_buffer[XLFD_MAX_FIELD_LEN];
|
|
|
|
gchar *field;
|
|
|
|
guint8 flags;
|
|
|
|
guint16 *pixel_sizes, *point_sizes, *tmp_sizes;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info = g_new (GtkFontSelInfo, 1);
|
1999-03-13 16:40:24 +00:00
|
|
|
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Get a maximum of MAX_FONTS fontnames from the X server.
|
|
|
|
Use "-*" as the pattern rather than "-*-*-*-*-*-*-*-*-*-*-*-*-*-*" since
|
|
|
|
the latter may result in fonts being returned which don't actually exist.
|
|
|
|
xlsfonts also uses "*" so I think it's OK. "-*" gets rid of aliases. */
|
|
|
|
xfontnames = XListFonts (GDK_DISPLAY(), "-*", MAX_FONTS, &num_fonts);
|
|
|
|
/* Output a warning if we actually get MAX_FONTS fonts. */
|
|
|
|
if (num_fonts == MAX_FONTS)
|
1998-12-18 01:32:33 +00:00
|
|
|
g_warning(_("MAX_FONTS exceeded. Some fonts may be missing."));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1999-09-29 23:47:22 +00:00
|
|
|
#elif defined (GDK_WINDOWING_WIN32)
|
1999-03-13 16:40:24 +00:00
|
|
|
num_fonts = 0;
|
|
|
|
hdc = GetDC (NULL);
|
|
|
|
font_names_size = 100;
|
|
|
|
xfontnames = g_new (gchar *, font_names_size);
|
|
|
|
logfont.lfCharSet = DEFAULT_CHARSET;
|
|
|
|
logfont.lfFaceName[0] = '\0';
|
|
|
|
logfont.lfPitchAndFamily = 0;
|
|
|
|
EnumFontFamiliesEx (hdc, &logfont, EnumFontFamExProc, 0, 0);
|
|
|
|
ReleaseDC (NULL, hdc);
|
|
|
|
#endif
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* The maximum size of all these tables is the number of font names
|
|
|
|
returned. We realloc them later when we know exactly how many
|
|
|
|
unique entries there are. */
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->font_info = g_new (FontInfo, num_fonts);
|
|
|
|
fontsel_info->font_styles = g_new (FontStyle, num_fonts);
|
|
|
|
fontsel_info->pixel_sizes = g_new (guint16, num_fonts);
|
|
|
|
fontsel_info->point_sizes = g_new (guint16, num_fonts);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontnames = g_new (GSList*, num_fonts);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Create the initial arrays for the property value strings, though they
|
|
|
|
may be realloc'ed later. Put the wildcard '*' in the first elements. */
|
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->properties[prop] = g_new(gchar*, PROPERTY_ARRAY_INCREMENT);
|
|
|
|
fontsel_info->space_allocated[prop] = PROPERTY_ARRAY_INCREMENT;
|
|
|
|
fontsel_info->nproperties[prop] = 1;
|
|
|
|
fontsel_info->properties[prop][0] = "*";
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Insert the font families into the main table, sorted by family and
|
|
|
|
foundry (fonts with different foundries are placed in seaparate FontInfos.
|
|
|
|
All fontnames in each family + foundry are placed into the fontnames
|
|
|
|
array of lists. */
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->nfonts = 0;
|
1998-06-15 23:29:27 +00:00
|
|
|
for (i = 0; i < num_fonts; i++)
|
|
|
|
{
|
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("%s\n", xfontnames[i]);
|
1998-06-15 23:29:27 +00:00
|
|
|
#endif
|
|
|
|
if (gtk_font_selection_is_xlfd_font_name (xfontnames[i]))
|
1998-06-16 03:40:04 +00:00
|
|
|
gtk_font_selection_insert_font (fontnames, &fontsel_info->nfonts, xfontnames[i]);
|
1998-06-15 23:29:27 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef FONTSEL_DEBUG
|
|
|
|
g_warning("Skipping invalid font: %s", xfontnames[i]);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Since many font names will be in the same FontInfo not all of the
|
|
|
|
allocated FontInfo table will be used, so we will now reallocate it
|
|
|
|
with the real size. */
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->font_info = g_realloc(fontsel_info->font_info,
|
1998-08-18 03:59:41 +00:00
|
|
|
sizeof(FontInfo) * fontsel_info->nfonts);
|
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Now we work out which choices of weight/slant etc. are valid for each
|
|
|
|
font. */
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->nstyles = 0;
|
|
|
|
current_style = fontsel_info->font_styles;
|
|
|
|
for (i = 0; i < fontsel_info->nfonts; i++)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
font = &fontsel_info->font_info[i];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Use the next free position in the styles array. */
|
1998-06-16 03:40:04 +00:00
|
|
|
font->style_index = fontsel_info->nstyles;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Now step through each of the fontnames with this family, and create
|
|
|
|
a style for each fontname. Each style contains the index into the
|
|
|
|
weights/slants etc. arrays, and a number of pixel/point sizes. */
|
|
|
|
style = 0;
|
|
|
|
temp_list = fontnames[i];
|
|
|
|
while (temp_list)
|
|
|
|
{
|
|
|
|
fontname = temp_list->data;
|
|
|
|
temp_list = temp_list->next;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
current_style->properties[prop]
|
1998-06-16 03:40:04 +00:00
|
|
|
= gtk_font_selection_insert_field (fontname, prop);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
current_style->pixel_sizes_index = npixel_sizes;
|
1998-07-25 12:09:38 +00:00
|
|
|
current_style->npixel_sizes = 0;
|
1998-06-15 23:29:27 +00:00
|
|
|
current_style->point_sizes_index = npoint_sizes;
|
1998-07-25 12:09:38 +00:00
|
|
|
current_style->npoint_sizes = 0;
|
1998-06-15 23:29:27 +00:00
|
|
|
current_style->flags = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname, XLFD_PIXELS,
|
|
|
|
field_buffer);
|
|
|
|
pixels = atoi(field);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname, XLFD_POINTS,
|
|
|
|
field_buffer);
|
|
|
|
points = atoi(field);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname,
|
|
|
|
XLFD_RESOLUTION_X,
|
|
|
|
field_buffer);
|
|
|
|
res_x = atoi(field);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname,
|
|
|
|
XLFD_RESOLUTION_Y,
|
|
|
|
field_buffer);
|
|
|
|
res_y = atoi(field);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (pixels == 0 && points == 0)
|
1998-06-28 07:46:10 +00:00
|
|
|
{
|
|
|
|
if (res_x == 0 && res_y == 0)
|
1998-10-30 01:34:06 +00:00
|
|
|
flags = GTK_FONT_SCALABLE;
|
1998-06-28 07:46:10 +00:00
|
|
|
else
|
1998-10-30 01:34:06 +00:00
|
|
|
flags = GTK_FONT_SCALABLE_BITMAP;
|
1998-06-28 07:46:10 +00:00
|
|
|
}
|
1998-06-15 23:29:27 +00:00
|
|
|
else
|
1998-10-30 01:34:06 +00:00
|
|
|
flags = GTK_FONT_BITMAP;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Now we check to make sure that the style is unique. If it isn't
|
|
|
|
we forget it. */
|
1998-06-16 03:40:04 +00:00
|
|
|
prev_style = fontsel_info->font_styles + font->style_index;
|
1998-06-15 23:29:27 +00:00
|
|
|
matched_style = FALSE;
|
|
|
|
while (prev_style < current_style)
|
|
|
|
{
|
|
|
|
matched_style = TRUE;
|
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
if (prev_style->properties[prop]
|
|
|
|
!= current_style->properties[prop])
|
|
|
|
{
|
|
|
|
matched_style = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (matched_style)
|
|
|
|
break;
|
|
|
|
prev_style++;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* If we matched an existing style, we need to add the pixels &
|
|
|
|
point sizes to the style. If not, we insert the pixel & point
|
|
|
|
sizes into our new style. Note that we don't add sizes for
|
|
|
|
scalable fonts. */
|
|
|
|
if (matched_style)
|
|
|
|
{
|
|
|
|
prev_style->flags |= flags;
|
1998-10-30 01:34:06 +00:00
|
|
|
if (flags == GTK_FONT_BITMAP)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
pixel_sizes = fontsel_info->pixel_sizes
|
1998-06-15 23:29:27 +00:00
|
|
|
+ prev_style->pixel_sizes_index;
|
|
|
|
found_size = FALSE;
|
|
|
|
for (size = 0; size < prev_style->npixel_sizes; size++)
|
|
|
|
{
|
|
|
|
if (pixels == *pixel_sizes)
|
|
|
|
{
|
|
|
|
found_size = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (pixels < *pixel_sizes)
|
|
|
|
break;
|
|
|
|
pixel_sizes++;
|
|
|
|
}
|
|
|
|
/* We need to move all the following pixel sizes up, and also
|
|
|
|
update the indexes of any following styles. */
|
|
|
|
if (!found_size)
|
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
for (tmp_sizes = fontsel_info->pixel_sizes + npixel_sizes;
|
1998-06-15 23:29:27 +00:00
|
|
|
tmp_sizes > pixel_sizes; tmp_sizes--)
|
|
|
|
*tmp_sizes = *(tmp_sizes - 1);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
*pixel_sizes = pixels;
|
|
|
|
npixel_sizes++;
|
|
|
|
prev_style->npixel_sizes++;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
tmp_style = prev_style + 1;
|
|
|
|
while (tmp_style < current_style)
|
|
|
|
{
|
|
|
|
tmp_style->pixel_sizes_index++;
|
|
|
|
tmp_style++;
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
point_sizes = fontsel_info->point_sizes
|
1998-06-15 23:29:27 +00:00
|
|
|
+ prev_style->point_sizes_index;
|
|
|
|
found_size = FALSE;
|
|
|
|
for (size = 0; size < prev_style->npoint_sizes; size++)
|
|
|
|
{
|
|
|
|
if (points == *point_sizes)
|
|
|
|
{
|
|
|
|
found_size = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (points < *point_sizes)
|
|
|
|
break;
|
|
|
|
point_sizes++;
|
|
|
|
}
|
|
|
|
/* We need to move all the following point sizes up, and also
|
|
|
|
update the indexes of any following styles. */
|
|
|
|
if (!found_size)
|
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
for (tmp_sizes = fontsel_info->point_sizes + npoint_sizes;
|
1998-06-15 23:29:27 +00:00
|
|
|
tmp_sizes > point_sizes; tmp_sizes--)
|
|
|
|
*tmp_sizes = *(tmp_sizes - 1);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
*point_sizes = points;
|
|
|
|
npoint_sizes++;
|
|
|
|
prev_style->npoint_sizes++;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
tmp_style = prev_style + 1;
|
|
|
|
while (tmp_style < current_style)
|
|
|
|
{
|
|
|
|
tmp_style->point_sizes_index++;
|
|
|
|
tmp_style++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
current_style->flags = flags;
|
1998-10-30 01:34:06 +00:00
|
|
|
if (flags == GTK_FONT_BITMAP)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->pixel_sizes[npixel_sizes++] = pixels;
|
1998-06-15 23:29:27 +00:00
|
|
|
current_style->npixel_sizes = 1;
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->point_sizes[npoint_sizes++] = points;
|
1998-06-15 23:29:27 +00:00
|
|
|
current_style->npoint_sizes = 1;
|
|
|
|
}
|
|
|
|
style++;
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->nstyles++;
|
1998-06-15 23:29:27 +00:00
|
|
|
current_style++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_slist_free(fontnames[i]);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Set nstyles to the real value, minus duplicated fontnames.
|
|
|
|
Note that we aren't using all the allocated memory if fontnames are
|
|
|
|
duplicated. */
|
|
|
|
font->nstyles = style;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Since some repeated styles may be skipped we won't have used all the
|
|
|
|
allocated space, so we will now reallocate it with the real size. */
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->font_styles = g_realloc(fontsel_info->font_styles,
|
1998-08-18 03:59:41 +00:00
|
|
|
sizeof(FontStyle) * fontsel_info->nstyles);
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->pixel_sizes = g_realloc(fontsel_info->pixel_sizes,
|
1998-08-18 03:59:41 +00:00
|
|
|
sizeof(guint16) * npixel_sizes);
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->point_sizes = g_realloc(fontsel_info->point_sizes,
|
1998-08-18 03:59:41 +00:00
|
|
|
sizeof(guint16) * npoint_sizes);
|
1998-06-15 23:29:27 +00:00
|
|
|
g_free(fontnames);
|
1999-03-13 16:40:24 +00:00
|
|
|
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
1998-06-15 23:29:27 +00:00
|
|
|
XFreeFontNames (xfontnames);
|
1999-09-29 23:47:22 +00:00
|
|
|
#elif defined (GDK_WINDOWING_WIN32)
|
1999-03-13 16:40:24 +00:00
|
|
|
for (i = 0; i < num_fonts; i++)
|
|
|
|
g_free (xfontnames[i]);
|
|
|
|
g_free (xfontnames);
|
|
|
|
#endif
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Debugging Output */
|
|
|
|
/* This outputs all FontInfos. */
|
|
|
|
#ifdef FONTSEL_DEBUG
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("\n\n Font Family Weight Slant Set Width Spacing Charset\n\n");
|
1998-06-16 03:40:04 +00:00
|
|
|
for (i = 0; i < fontsel_info->nfonts; i++)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
FontInfo *font = &fontsel_info->font_info[i];
|
|
|
|
FontStyle *styles = fontsel_info->font_styles + font->style_index;
|
1998-06-15 23:29:27 +00:00
|
|
|
for (style = 0; style < font->nstyles; style++)
|
|
|
|
{
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("%5i %-16.16s ", i, font->family);
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("%-9.9s ",
|
|
|
|
fontsel_info->properties[prop][styles->properties[prop]]);
|
|
|
|
g_message("\n ");
|
|
|
|
|
1998-10-30 01:34:06 +00:00
|
|
|
if (styles->flags & GTK_FONT_BITMAP)
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("Bitmapped font ");
|
1998-10-30 01:34:06 +00:00
|
|
|
if (styles->flags & GTK_FONT_SCALABLE)
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("Scalable font ");
|
1998-10-30 01:34:06 +00:00
|
|
|
if (styles->flags & GTK_FONT_SCALABLE_BITMAP)
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("Scalable-Bitmapped font ");
|
|
|
|
g_message("\n");
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (styles->npixel_sizes)
|
|
|
|
{
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message(" Pixel sizes: ");
|
1998-06-16 03:40:04 +00:00
|
|
|
tmp_sizes = fontsel_info->pixel_sizes + styles->pixel_sizes_index;
|
1998-06-15 23:29:27 +00:00
|
|
|
for (size = 0; size < styles->npixel_sizes; size++)
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("%i ", *tmp_sizes++);
|
|
|
|
g_message("\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (styles->npoint_sizes)
|
|
|
|
{
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message(" Point sizes: ");
|
1998-06-16 03:40:04 +00:00
|
|
|
tmp_sizes = fontsel_info->point_sizes + styles->point_sizes_index;
|
1998-06-15 23:29:27 +00:00
|
|
|
for (size = 0; size < styles->npoint_sizes; size++)
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("%i ", *tmp_sizes++);
|
|
|
|
g_message("\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
g_message("\n");
|
1998-06-15 23:29:27 +00:00
|
|
|
styles++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* This outputs all available properties. */
|
|
|
|
for (prop = 0; prop < GTK_NUM_FONT_PROPERTIES; prop++)
|
|
|
|
{
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message("Property: %s\n", xlfd_field_names[xlfd_index[prop]]);
|
1998-06-16 03:40:04 +00:00
|
|
|
for (i = 0; i < fontsel_info->nproperties[prop]; i++)
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message(" %s\n", fontsel_info->properties[prop][i]);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This inserts the given fontname into the FontInfo table.
|
|
|
|
If a FontInfo already exists with the same family and foundry, then the
|
|
|
|
fontname is added to the FontInfos list of fontnames, else a new FontInfo
|
|
|
|
is created and inserted in alphabetical order in the table. */
|
|
|
|
static void
|
1998-06-16 03:40:04 +00:00
|
|
|
gtk_font_selection_insert_font (GSList *fontnames[],
|
1998-06-15 23:29:27 +00:00
|
|
|
gint *ntable,
|
|
|
|
gchar *fontname)
|
|
|
|
{
|
|
|
|
FontInfo *table;
|
|
|
|
FontInfo temp_info;
|
|
|
|
GSList *temp_fontname;
|
|
|
|
gchar *family;
|
|
|
|
gboolean family_exists = FALSE;
|
|
|
|
gint foundry;
|
|
|
|
gint lower, upper;
|
|
|
|
gint middle, cmp;
|
|
|
|
gchar family_buffer[XLFD_MAX_FIELD_LEN];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
table = fontsel_info->font_info;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* insert a fontname into a table */
|
|
|
|
family = gtk_font_selection_get_xlfd_field (fontname, XLFD_FAMILY,
|
|
|
|
family_buffer);
|
|
|
|
if (!family)
|
|
|
|
return;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
foundry = gtk_font_selection_insert_field (fontname, FOUNDRY);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
lower = 0;
|
|
|
|
if (*ntable > 0)
|
|
|
|
{
|
|
|
|
/* Do a binary search to determine if we have already encountered
|
|
|
|
* a font with this family & foundry. */
|
|
|
|
upper = *ntable;
|
|
|
|
while (lower < upper)
|
|
|
|
{
|
|
|
|
middle = (lower + upper) >> 1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
cmp = strcmp (family, table[middle].family);
|
|
|
|
/* If the family matches we sort by the foundry. */
|
|
|
|
if (cmp == 0)
|
|
|
|
{
|
|
|
|
family_exists = TRUE;
|
|
|
|
family = table[middle].family;
|
1998-06-16 03:40:04 +00:00
|
|
|
cmp = strcmp(fontsel_info->properties[FOUNDRY][foundry],
|
|
|
|
fontsel_info->properties[FOUNDRY][table[middle].foundry]);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (cmp == 0)
|
|
|
|
{
|
|
|
|
fontnames[middle] = g_slist_prepend (fontnames[middle],
|
|
|
|
fontname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (cmp < 0)
|
|
|
|
upper = middle;
|
|
|
|
else
|
|
|
|
lower = middle+1;
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Add another entry to the table for this new font family */
|
|
|
|
temp_info.family = family_exists ? family : g_strdup(family);
|
|
|
|
temp_info.foundry = foundry;
|
|
|
|
temp_fontname = g_slist_prepend (NULL, fontname);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
(*ntable)++;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Quickly insert the entry into the table in sorted order
|
|
|
|
* using a modification of insertion sort and the knowledge
|
|
|
|
* that the entries proper position in the table was determined
|
|
|
|
* above in the binary search and is contained in the "lower"
|
|
|
|
* variable. */
|
|
|
|
if (*ntable > 1)
|
|
|
|
{
|
|
|
|
upper = *ntable - 1;
|
|
|
|
while (lower != upper)
|
|
|
|
{
|
|
|
|
table[upper] = table[upper-1];
|
|
|
|
fontnames[upper] = fontnames[upper-1];
|
|
|
|
upper--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
table[lower] = temp_info;
|
|
|
|
fontnames[lower] = temp_fontname;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This checks that the specified field of the given fontname is in the
|
|
|
|
appropriate properties array. If not it is added. Thus eventually we get
|
|
|
|
arrays of all possible weights/slants etc. It returns the array index. */
|
|
|
|
static gint
|
1998-06-16 03:40:04 +00:00
|
|
|
gtk_font_selection_insert_field (gchar *fontname,
|
1998-06-15 23:29:27 +00:00
|
|
|
gint prop)
|
|
|
|
{
|
|
|
|
gchar field_buffer[XLFD_MAX_FIELD_LEN];
|
|
|
|
gchar *field;
|
|
|
|
guint16 index;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname, xlfd_index[prop],
|
|
|
|
field_buffer);
|
|
|
|
if (!field)
|
|
|
|
return 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* If the field is already in the array just return its index. */
|
1998-06-16 03:40:04 +00:00
|
|
|
for (index = 0; index < fontsel_info->nproperties[prop]; index++)
|
|
|
|
if (!strcmp(field, fontsel_info->properties[prop][index]))
|
1998-06-15 23:29:27 +00:00
|
|
|
return index;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Make sure we have enough space to add the field. */
|
1998-06-16 03:40:04 +00:00
|
|
|
if (fontsel_info->nproperties[prop] == fontsel_info->space_allocated[prop])
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
1998-06-16 03:40:04 +00:00
|
|
|
fontsel_info->space_allocated[prop] += PROPERTY_ARRAY_INCREMENT;
|
|
|
|
fontsel_info->properties[prop] = g_realloc(fontsel_info->properties[prop],
|
1998-08-18 03:59:41 +00:00
|
|
|
sizeof(gchar*)
|
|
|
|
* fontsel_info->space_allocated[prop]);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Add the new field. */
|
1998-06-16 03:40:04 +00:00
|
|
|
index = fontsel_info->nproperties[prop];
|
|
|
|
fontsel_info->properties[prop][index] = g_strdup(field);
|
|
|
|
fontsel_info->nproperties[prop]++;
|
1998-06-15 23:29:27 +00:00
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* These functions are the main public interface for getting/setting the font.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
GdkFont*
|
|
|
|
gtk_font_selection_get_font (GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (fontsel != NULL, NULL);
|
|
|
|
return fontsel->font;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gchar *
|
|
|
|
gtk_font_selection_get_font_name (GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
FontInfo *font;
|
|
|
|
gchar *family_str, *foundry_str;
|
|
|
|
gchar *property_str[GTK_NUM_STYLE_PROPERTIES];
|
|
|
|
gint prop;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
g_return_val_if_fail (fontsel != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GTK_IS_FONT_SELECTION (fontsel), NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* If no family has been selected return NULL. */
|
|
|
|
if (fontsel->font_index == -1)
|
|
|
|
return NULL;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
font = &fontsel_info->font_info[fontsel->font_index];
|
1998-06-15 23:29:27 +00:00
|
|
|
family_str = font->family;
|
1998-06-16 03:40:04 +00:00
|
|
|
foundry_str = fontsel_info->properties[FOUNDRY][font->foundry];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
property_str[prop]
|
1998-06-16 03:40:04 +00:00
|
|
|
= fontsel_info->properties[prop][fontsel->property_values[prop]];
|
1998-06-15 23:29:27 +00:00
|
|
|
if (strcmp (property_str[prop], "(nil)") == 0)
|
|
|
|
property_str[prop] = "";
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return gtk_font_selection_create_xlfd (fontsel->size,
|
|
|
|
fontsel->metric,
|
|
|
|
foundry_str,
|
|
|
|
family_str,
|
|
|
|
property_str[WEIGHT],
|
|
|
|
property_str[SLANT],
|
|
|
|
property_str[SET_WIDTH],
|
|
|
|
property_str[SPACING],
|
|
|
|
property_str[CHARSET]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This sets the current font, selecting the appropriate clist rows.
|
|
|
|
First we check the fontname is valid and try to find the font family
|
|
|
|
- i.e. the name in the main list. If we can't find that, then just return.
|
|
|
|
Next we try to set each of the properties according to the fontname.
|
1998-06-19 01:26:24 +00:00
|
|
|
Finally we select the font family & style in the clists. */
|
1998-06-15 23:29:27 +00:00
|
|
|
gboolean
|
|
|
|
gtk_font_selection_set_font_name (GtkFontSelection *fontsel,
|
|
|
|
const gchar *fontname)
|
|
|
|
{
|
|
|
|
gchar *family, *field;
|
|
|
|
gint index, prop, size;
|
|
|
|
guint16 foundry, value;
|
|
|
|
gchar family_buffer[XLFD_MAX_FIELD_LEN];
|
|
|
|
gchar field_buffer[XLFD_MAX_FIELD_LEN];
|
|
|
|
gchar buffer[16];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
g_return_val_if_fail (fontsel != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_FONT_SELECTION (fontsel), FALSE);
|
|
|
|
g_return_val_if_fail (fontname != NULL, FALSE);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Check it is a valid fontname. */
|
|
|
|
if (!gtk_font_selection_is_xlfd_font_name(fontname))
|
|
|
|
return FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
family = gtk_font_selection_get_xlfd_field (fontname, XLFD_FAMILY,
|
|
|
|
family_buffer);
|
|
|
|
if (!family)
|
|
|
|
return FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname, XLFD_FOUNDRY,
|
1998-08-18 03:59:41 +00:00
|
|
|
field_buffer);
|
1998-06-16 03:40:04 +00:00
|
|
|
foundry = gtk_font_selection_field_to_index (fontsel_info->properties[FOUNDRY],
|
|
|
|
fontsel_info->nproperties[FOUNDRY],
|
1998-06-15 23:29:27 +00:00
|
|
|
field);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
index = gtk_font_selection_find_font(fontsel, family, foundry);
|
|
|
|
if (index == -1)
|
|
|
|
return FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Convert the property fields into indices and set them. */
|
|
|
|
for (prop = 0; prop < GTK_NUM_STYLE_PROPERTIES; prop++)
|
|
|
|
{
|
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname, xlfd_index[prop],
|
|
|
|
field_buffer);
|
1998-06-16 03:40:04 +00:00
|
|
|
value = gtk_font_selection_field_to_index (fontsel_info->properties[prop],
|
|
|
|
fontsel_info->nproperties[prop],
|
1998-06-15 23:29:27 +00:00
|
|
|
field);
|
|
|
|
fontsel->property_values[prop] = value;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname, XLFD_POINTS,
|
|
|
|
field_buffer);
|
|
|
|
size = atoi(field);
|
|
|
|
if (size > 0)
|
|
|
|
{
|
|
|
|
if (size < 20)
|
|
|
|
size = 20;
|
|
|
|
fontsel->size = fontsel->selected_size = size;
|
1998-10-30 01:34:06 +00:00
|
|
|
fontsel->metric = GTK_FONT_METRIC_POINTS;
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(fontsel->points_button),
|
1998-06-15 23:29:27 +00:00
|
|
|
TRUE);
|
|
|
|
if (size % 10 == 0)
|
|
|
|
sprintf (buffer, "%i", size / 10);
|
|
|
|
else
|
|
|
|
sprintf (buffer, "%i.%i", size / 10, size % 10);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
field = gtk_font_selection_get_xlfd_field (fontname, XLFD_PIXELS,
|
|
|
|
field_buffer);
|
|
|
|
size = atoi(field);
|
|
|
|
if (size < 2)
|
|
|
|
size = 2;
|
|
|
|
fontsel->size = fontsel->selected_size = size;
|
1998-10-30 01:34:06 +00:00
|
|
|
fontsel->metric = GTK_FONT_METRIC_PIXELS;
|
1999-01-11 18:49:54 +00:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(fontsel->pixels_button),
|
1998-06-15 23:29:27 +00:00
|
|
|
TRUE);
|
|
|
|
sprintf (buffer, "%i", size);
|
|
|
|
}
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (fontsel->size_entry), buffer);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Clear any current filter. */
|
|
|
|
gtk_font_selection_clear_filter(fontsel);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Now find the best style match. */
|
|
|
|
fontsel->font_index = index;
|
|
|
|
gtk_clist_select_row(GTK_CLIST(fontsel->font_clist), index, 0);
|
|
|
|
if (GTK_WIDGET_MAPPED (fontsel->font_clist))
|
|
|
|
gtk_clist_moveto(GTK_CLIST(fontsel->font_clist), index, -1, 0.5, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_font_selection_show_available_styles (fontsel);
|
|
|
|
/* This will load the font. */
|
1998-06-19 01:26:24 +00:00
|
|
|
gtk_font_selection_select_best_style (fontsel, FALSE);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns the index of the given family, or -1 if not found */
|
|
|
|
static gint
|
|
|
|
gtk_font_selection_find_font (GtkFontSelection *fontsel,
|
|
|
|
gchar *family,
|
|
|
|
guint16 foundry)
|
|
|
|
{
|
|
|
|
FontInfo *font_info;
|
|
|
|
gint lower, upper, middle = -1, cmp, nfonts;
|
1998-12-07 20:56:46 +00:00
|
|
|
gint found_family = -1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-16 03:40:04 +00:00
|
|
|
font_info = fontsel_info->font_info;
|
|
|
|
nfonts = fontsel_info->nfonts;
|
1998-06-15 23:29:27 +00:00
|
|
|
if (nfonts == 0)
|
|
|
|
return -1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Do a binary search to find the font family. */
|
|
|
|
lower = 0;
|
|
|
|
upper = nfonts;
|
|
|
|
while (lower < upper)
|
|
|
|
{
|
|
|
|
middle = (lower + upper) >> 1;
|
|
|
|
|
|
|
|
cmp = strcmp (family, font_info[middle].family);
|
|
|
|
if (cmp == 0)
|
1998-12-07 20:56:46 +00:00
|
|
|
{
|
|
|
|
found_family = middle;
|
|
|
|
cmp = strcmp(fontsel_info->properties[FOUNDRY][foundry],
|
|
|
|
fontsel_info->properties[FOUNDRY][font_info[middle].foundry]);
|
|
|
|
}
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (cmp == 0)
|
|
|
|
return middle;
|
|
|
|
else if (cmp < 0)
|
|
|
|
upper = middle;
|
|
|
|
else if (cmp > 0)
|
|
|
|
lower = middle+1;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-07 20:56:46 +00:00
|
|
|
/* We couldn't find the family and foundry, but we may have just found the
|
|
|
|
family, so we return that. */
|
|
|
|
return found_family;
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This returns the text in the preview entry. You should copy the returned
|
|
|
|
text if you need it. */
|
|
|
|
gchar*
|
|
|
|
gtk_font_selection_get_preview_text (GtkFontSelection *fontsel)
|
|
|
|
{
|
|
|
|
return gtk_entry_get_text(GTK_ENTRY(fontsel->preview_entry));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This sets the text in the preview entry. */
|
|
|
|
void
|
|
|
|
gtk_font_selection_set_preview_text (GtkFontSelection *fontsel,
|
|
|
|
const gchar *text)
|
|
|
|
{
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(fontsel->preview_entry), text);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* These functions all deal with X Logical Font Description (XLFD) fontnames.
|
|
|
|
* See the freely available documentation about this.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns TRUE if the fontname is a valid XLFD.
|
|
|
|
* (It just checks if the number of dashes is 14, and that each
|
|
|
|
* field < XLFD_MAX_FIELD_LEN characters long - that's not in the XLFD but it
|
|
|
|
* makes it easier for me).
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
gtk_font_selection_is_xlfd_font_name (const gchar *fontname)
|
|
|
|
{
|
|
|
|
gint i = 0;
|
|
|
|
gint field_len = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
while (*fontname)
|
|
|
|
{
|
|
|
|
if (*fontname++ == '-')
|
|
|
|
{
|
|
|
|
if (field_len > XLFD_MAX_FIELD_LEN) return FALSE;
|
|
|
|
field_len = 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
field_len++;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return (i == 14) ? TRUE : FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This fills the buffer with the specified field from the X Logical Font
|
|
|
|
* Description name, and returns it. If fontname is NULL or the field is
|
|
|
|
* longer than XFLD_MAX_FIELD_LEN it returns NULL.
|
|
|
|
* Note: For the charset field, we also return the encoding, e.g. 'iso8859-1'.
|
|
|
|
*/
|
|
|
|
static gchar*
|
|
|
|
gtk_font_selection_get_xlfd_field (const gchar *fontname,
|
|
|
|
FontField field_num,
|
|
|
|
gchar *buffer)
|
|
|
|
{
|
|
|
|
const gchar *t1, *t2;
|
|
|
|
gint countdown, len, num_dashes;
|
1999-09-30 16:59:08 +00:00
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
|
|
|
gchar *p;
|
|
|
|
#endif
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (!fontname)
|
|
|
|
return NULL;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* we assume this is a valid fontname...that is, it has 14 fields */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
countdown = field_num;
|
|
|
|
t1 = fontname;
|
|
|
|
while (*t1 && (countdown >= 0))
|
|
|
|
if (*t1++ == '-')
|
|
|
|
countdown--;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
num_dashes = (field_num == XLFD_CHARSET) ? 2 : 1;
|
|
|
|
for (t2 = t1; *t2; t2++)
|
|
|
|
{
|
|
|
|
if (*t2 == '-' && --num_dashes == 0)
|
|
|
|
break;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (t1 != t2)
|
|
|
|
{
|
|
|
|
/* Check we don't overflow the buffer */
|
|
|
|
len = (long) t2 - (long) t1;
|
|
|
|
if (len > XLFD_MAX_FIELD_LEN - 1)
|
|
|
|
return NULL;
|
|
|
|
strncpy (buffer, t1, len);
|
|
|
|
buffer[len] = 0;
|
1999-09-29 23:47:22 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
1998-10-30 01:34:06 +00:00
|
|
|
/* Convert to lower case. */
|
|
|
|
g_strdown (buffer);
|
1999-09-30 16:59:08 +00:00
|
|
|
#elif defined (GDK_WINDOWING_WIN32)
|
|
|
|
/* Check for hex escapes in font family */
|
|
|
|
if (field_num == XLFD_FAMILY)
|
|
|
|
{
|
|
|
|
p = buffer;
|
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
if (*p == '%' && isxdigit (p[1]) && isxdigit (p[2]))
|
|
|
|
{
|
|
|
|
guint c;
|
|
|
|
sscanf (p+1, "%2x", &c);
|
|
|
|
*p = c;
|
|
|
|
strcpy (p+1, p+3);
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
1999-09-21 19:12:50 +00:00
|
|
|
#endif
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
strcpy(buffer, "(nil)");
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This returns a X Logical Font Description font name, given all the pieces.
|
|
|
|
* Note: this retval must be freed by the caller.
|
|
|
|
*/
|
|
|
|
static gchar *
|
|
|
|
gtk_font_selection_create_xlfd (gint size,
|
|
|
|
GtkFontMetricType metric,
|
|
|
|
gchar *foundry,
|
|
|
|
gchar *family,
|
|
|
|
gchar *weight,
|
|
|
|
gchar *slant,
|
|
|
|
gchar *set_width,
|
|
|
|
gchar *spacing,
|
|
|
|
gchar *charset)
|
|
|
|
{
|
|
|
|
gchar buffer[16];
|
|
|
|
gchar *pixel_size = "*", *point_size = "*", *fontname;
|
1999-09-30 16:59:08 +00:00
|
|
|
gchar *fam = family;
|
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
|
|
|
gchar *p, *q;
|
|
|
|
#endif
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (size <= 0)
|
|
|
|
return NULL;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
sprintf (buffer, "%d", (int) size);
|
1998-10-30 01:34:06 +00:00
|
|
|
if (metric == GTK_FONT_METRIC_PIXELS)
|
1998-06-15 23:29:27 +00:00
|
|
|
pixel_size = buffer;
|
|
|
|
else
|
|
|
|
point_size = buffer;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1999-09-30 16:59:08 +00:00
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
|
|
|
fam = g_malloc (strlen (family) * 3 + 1);
|
|
|
|
p = fam;
|
|
|
|
q = family;
|
|
|
|
while (*q)
|
|
|
|
{
|
|
|
|
if (*q == '-' || *q == '*' || *q == '?' || *q == '%')
|
|
|
|
p += sprintf (p, "%%%.02x", *q);
|
|
|
|
else
|
|
|
|
*p++ = *q;
|
|
|
|
q++;
|
|
|
|
}
|
|
|
|
*p = '\0';
|
|
|
|
#endif
|
1999-03-13 16:40:24 +00:00
|
|
|
fontname = g_strdup_printf ("-%s-%s-%s-%s-%s-*-%s-%s-*-*-%s-*-%s",
|
1999-09-30 16:59:08 +00:00
|
|
|
foundry, fam, weight, slant,
|
1999-03-13 16:40:24 +00:00
|
|
|
set_width, pixel_size, point_size,
|
|
|
|
spacing, charset);
|
1999-09-30 16:59:08 +00:00
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
|
|
|
g_free (fam);
|
|
|
|
#endif
|
1998-06-15 23:29:27 +00:00
|
|
|
return fontname;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* GtkFontSelectionDialog
|
|
|
|
*****************************************************************************/
|
|
|
|
|
1999-09-13 22:06:11 +00:00
|
|
|
GtkType
|
1998-08-17 14:48:51 +00:00
|
|
|
gtk_font_selection_dialog_get_type (void)
|
1998-06-15 23:29:27 +00:00
|
|
|
{
|
|
|
|
static guint font_selection_dialog_type = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
if (!font_selection_dialog_type)
|
|
|
|
{
|
|
|
|
GtkTypeInfo fontsel_diag_info =
|
|
|
|
{
|
|
|
|
"GtkFontSelectionDialog",
|
|
|
|
sizeof (GtkFontSelectionDialog),
|
|
|
|
sizeof (GtkFontSelectionDialogClass),
|
|
|
|
(GtkClassInitFunc) gtk_font_selection_dialog_class_init,
|
|
|
|
(GtkObjectInitFunc) gtk_font_selection_dialog_init,
|
1998-07-04 15:31:30 +00:00
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
1998-06-28 07:46:10 +00:00
|
|
|
(GtkClassInitFunc) NULL,
|
1998-06-15 23:29:27 +00:00
|
|
|
};
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-08-17 14:48:51 +00:00
|
|
|
font_selection_dialog_type = gtk_type_unique (GTK_TYPE_WINDOW, &fontsel_diag_info);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return font_selection_dialog_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_selection_dialog_class_init (GtkFontSelectionDialogClass *klass)
|
|
|
|
{
|
|
|
|
GtkObjectClass *object_class;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
object_class = (GtkObjectClass*) klass;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-08-17 14:48:51 +00:00
|
|
|
font_selection_dialog_parent_class = gtk_type_class (GTK_TYPE_WINDOW);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_font_selection_dialog_init (GtkFontSelectionDialog *fontseldiag)
|
|
|
|
{
|
|
|
|
fontseldiag->dialog_width = -1;
|
|
|
|
fontseldiag->auto_resize = TRUE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_widget_set_events(GTK_WIDGET(fontseldiag), GDK_STRUCTURE_MASK);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (fontseldiag), "configure_event",
|
|
|
|
(GtkSignalFunc) gtk_font_selection_dialog_on_configure,
|
|
|
|
fontseldiag);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-11-28 07:42:37 +00:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (fontseldiag), 4);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_window_set_policy(GTK_WINDOW(fontseldiag), FALSE, TRUE, TRUE);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontseldiag->main_vbox = gtk_vbox_new (FALSE, 4);
|
|
|
|
gtk_widget_show (fontseldiag->main_vbox);
|
|
|
|
gtk_container_add (GTK_CONTAINER (fontseldiag), fontseldiag->main_vbox);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
fontseldiag->fontsel = gtk_font_selection_new();
|
|
|
|
gtk_widget_show (fontseldiag->fontsel);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontseldiag->main_vbox),
|
|
|
|
fontseldiag->fontsel, TRUE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
/* Create the action area */
|
|
|
|
fontseldiag->action_area = gtk_hbutton_box_new ();
|
|
|
|
gtk_button_box_set_layout(GTK_BUTTON_BOX(fontseldiag->action_area),
|
|
|
|
GTK_BUTTONBOX_END);
|
|
|
|
gtk_button_box_set_spacing(GTK_BUTTON_BOX(fontseldiag->action_area), 5);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontseldiag->main_vbox),
|
|
|
|
fontseldiag->action_area, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (fontseldiag->action_area);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontseldiag->ok_button = gtk_button_new_with_label(_("OK"));
|
1998-06-15 23:29:27 +00:00
|
|
|
GTK_WIDGET_SET_FLAGS (fontseldiag->ok_button, GTK_CAN_DEFAULT);
|
|
|
|
gtk_widget_show(fontseldiag->ok_button);
|
|
|
|
gtk_box_pack_start (GTK_BOX (fontseldiag->action_area),
|
|
|
|
fontseldiag->ok_button, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_grab_default (fontseldiag->ok_button);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontseldiag->apply_button = gtk_button_new_with_label(_("Apply"));
|
1998-06-15 23:29:27 +00:00
|
|
|
GTK_WIDGET_SET_FLAGS (fontseldiag->apply_button, GTK_CAN_DEFAULT);
|
|
|
|
/*gtk_widget_show(fontseldiag->apply_button);*/
|
|
|
|
gtk_box_pack_start (GTK_BOX(fontseldiag->action_area),
|
|
|
|
fontseldiag->apply_button, TRUE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-12-18 01:32:33 +00:00
|
|
|
fontseldiag->cancel_button = gtk_button_new_with_label(_("Cancel"));
|
1998-06-15 23:29:27 +00:00
|
|
|
GTK_WIDGET_SET_FLAGS (fontseldiag->cancel_button, GTK_CAN_DEFAULT);
|
|
|
|
gtk_widget_show(fontseldiag->cancel_button);
|
|
|
|
gtk_box_pack_start (GTK_BOX(fontseldiag->action_area),
|
|
|
|
fontseldiag->cancel_button, TRUE, TRUE, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget*
|
|
|
|
gtk_font_selection_dialog_new (const gchar *title)
|
|
|
|
{
|
|
|
|
GtkFontSelectionDialog *fontseldiag;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-08-17 14:48:51 +00:00
|
|
|
fontseldiag = gtk_type_new (GTK_TYPE_FONT_SELECTION_DIALOG);
|
1998-06-15 23:29:27 +00:00
|
|
|
gtk_window_set_title (GTK_WINDOW (fontseldiag),
|
1998-12-18 01:32:33 +00:00
|
|
|
title ? title : _("Font Selection"));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return GTK_WIDGET (fontseldiag);
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar*
|
|
|
|
gtk_font_selection_dialog_get_font_name (GtkFontSelectionDialog *fsd)
|
|
|
|
{
|
|
|
|
return gtk_font_selection_get_font_name(GTK_FONT_SELECTION(fsd->fontsel));
|
|
|
|
}
|
|
|
|
|
|
|
|
GdkFont*
|
|
|
|
gtk_font_selection_dialog_get_font (GtkFontSelectionDialog *fsd)
|
|
|
|
{
|
|
|
|
return gtk_font_selection_get_font(GTK_FONT_SELECTION(fsd->fontsel));
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gtk_font_selection_dialog_set_font_name (GtkFontSelectionDialog *fsd,
|
|
|
|
const gchar *fontname)
|
|
|
|
{
|
|
|
|
return gtk_font_selection_set_font_name(GTK_FONT_SELECTION(fsd->fontsel),
|
|
|
|
fontname);
|
1998-10-30 01:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_font_selection_dialog_set_filter (GtkFontSelectionDialog *fsd,
|
|
|
|
GtkFontFilterType filter_type,
|
|
|
|
GtkFontType font_type,
|
|
|
|
gchar **foundries,
|
|
|
|
gchar **weights,
|
|
|
|
gchar **slants,
|
|
|
|
gchar **setwidths,
|
|
|
|
gchar **spacings,
|
|
|
|
gchar **charsets)
|
|
|
|
{
|
|
|
|
gtk_font_selection_set_filter (GTK_FONT_SELECTION (fsd->fontsel),
|
|
|
|
filter_type, font_type,
|
|
|
|
foundries, weights, slants, setwidths,
|
|
|
|
spacings, charsets);
|
1998-06-15 23:29:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gchar*
|
|
|
|
gtk_font_selection_dialog_get_preview_text (GtkFontSelectionDialog *fsd)
|
|
|
|
{
|
|
|
|
return gtk_font_selection_get_preview_text(GTK_FONT_SELECTION(fsd->fontsel));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_font_selection_dialog_set_preview_text (GtkFontSelectionDialog *fsd,
|
|
|
|
const gchar *text)
|
|
|
|
{
|
|
|
|
gtk_font_selection_set_preview_text(GTK_FONT_SELECTION(fsd->fontsel), text);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This turns auto-shrink off if the user resizes the width of the dialog.
|
|
|
|
It also turns it back on again if the user resizes it back to its normal
|
|
|
|
width. */
|
|
|
|
static gint
|
|
|
|
gtk_font_selection_dialog_on_configure (GtkWidget *widget,
|
|
|
|
GdkEventConfigure *event,
|
|
|
|
GtkFontSelectionDialog *fsd)
|
|
|
|
{
|
|
|
|
/* This sets the initial width. */
|
|
|
|
if (fsd->dialog_width == -1)
|
|
|
|
fsd->dialog_width = event->width;
|
|
|
|
else if (fsd->auto_resize && fsd->dialog_width != event->width)
|
|
|
|
{
|
|
|
|
fsd->auto_resize = FALSE;
|
|
|
|
gtk_window_set_policy(GTK_WINDOW(fsd), FALSE, TRUE, FALSE);
|
|
|
|
}
|
|
|
|
else if (!fsd->auto_resize && fsd->dialog_width == event->width)
|
|
|
|
{
|
|
|
|
fsd->auto_resize = TRUE;
|
|
|
|
gtk_window_set_policy(GTK_WINDOW(fsd), FALSE, TRUE, TRUE);
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-06-15 23:29:27 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|