]> Pileus Git - ~andy/gtk/blobdiff - gdk/gdkfont.h
Remove support for Windows 9x/ME. GTK+ hasn't worked on Win9x since 2.6 or
[~andy/gtk] / gdk / gdkfont.h
index bafee8d3fd9b99df6986974ac7238d9b56696607..18061daa6e57894bc51aaafc283f5aadc272e10f 100644 (file)
@@ -1,12 +1,40 @@
+/* GDK - The GIMP Drawing Kit
+ * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser 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.
+ */
+
+/*
+ * Modified by the GTK+ Team and others 1997-2000.  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/. 
+ */
+
+#if !defined(GDK_DISABLE_DEPRECATED) || defined(GDK_COMPILATION) || defined(GTK_COMPILATION)
+
 #ifndef __GDK_FONT_H__
 #define __GDK_FONT_H__
 
 #include <gdk/gdktypes.h>
 #include <pango/pango-font.h>
 
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
+G_BEGIN_DECLS
+
+#define GDK_TYPE_FONT gdk_font_get_type ()
 
 /* Types of font.
  *   GDK_FONT_FONT: the font is an XFontStruct.
@@ -25,19 +53,7 @@ struct _GdkFont
   gint descent;
 };
 
-#ifdef GDK_WINDOWING_WIN32
-/* Temporary functions, will be replaced by something else for all backends
- * eventually. Don't use!
- */
-gchar**  gdk_font_list_new  (const gchar    *font_pattern, gint *n_returned);
-void     gdk_font_list_free (gchar **font_list);
-#endif
-GdkFont* gdk_font_load     (const gchar    *font_name);
-GdkFont* gdk_fontset_load   (const gchar    *fontset_name);
-
-GdkFont* gdk_font_load             (const gchar          *font_name);
-GdkFont* gdk_fontset_load          (const gchar          *fontset_name);
-GdkFont* gdk_font_from_description (PangoFontDescription *font_desc);
+GType    gdk_font_get_type  (void) G_GNUC_CONST;
 
 GdkFont* gdk_font_ref      (GdkFont        *font);
 void    gdk_font_unref     (GdkFont        *font);
@@ -45,6 +61,21 @@ gint  gdk_font_id        (const GdkFont  *font);
 gboolean gdk_font_equal            (const GdkFont  *fonta,
                             const GdkFont  *fontb);
 
+GdkFont *gdk_font_load_for_display             (GdkDisplay           *display,
+                                               const gchar          *font_name);
+GdkFont *gdk_fontset_load_for_display          (GdkDisplay           *display,
+                                               const gchar          *fontset_name);
+GdkFont *gdk_font_from_description_for_display (GdkDisplay           *display,
+                                               PangoFontDescription *font_desc);
+
+#ifndef GDK_DISABLE_DEPRECATED
+
+#ifndef GDK_MULTIHEAD_SAFE
+GdkFont* gdk_font_load             (const gchar          *font_name);
+GdkFont* gdk_fontset_load          (const gchar          *fontset_name);
+GdkFont* gdk_font_from_description (PangoFontDescription *font_desc);
+#endif
+
 gint    gdk_string_width   (GdkFont        *font,
                             const gchar    *string);
 gint    gdk_text_width     (GdkFont        *font,
@@ -96,14 +127,12 @@ void     gdk_string_extents (GdkFont     *font,
                             gint        *ascent,
                             gint        *descent);
 
-#ifdef GDK_WINDOWING_WIN32
-/* Ditto temporary */
-gchar*   gdk_font_full_name_get (GdkFont *font);
-void    gdk_font_full_name_free (gchar *name);
-#endif
+GdkDisplay * gdk_font_get_display (GdkFont *font);
 
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
+#endif /* GDK_DISABLE_DEPRECATED */
+
+G_END_DECLS
 
 #endif /* __GDK_FONT_H__ */
+
+#endif /* !GDK_DISABLE_DEPRECATED || GDK_COMPILATION || GTK_COMPILATION */