]> Pileus Git - ~andy/gtk/blob - gdk/quartz/gdkfont-quartz.c
71edb993ee7a9295f65afb76d37b1051d32e1ccd
[~andy/gtk] / gdk / quartz / gdkfont-quartz.c
1 /* gdkwindow-quartz.c
2  *
3  * Copyright (C) 2005 Imendio AB
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21
22 #include "config.h"
23
24 #include "gdkfont.h"
25
26 GdkFont*
27 gdk_font_load_for_display (GdkDisplay  *display,
28                            const gchar *font_name)
29 {
30   /* FIXME: Implement */
31   return NULL;
32 }
33
34 GdkFont*
35 gdk_font_from_description_for_display (GdkDisplay           *display,
36                                        PangoFontDescription *desc)
37 {
38   /* FIXME: Implement */
39   return NULL;
40 }
41
42 GdkFont *
43 gdk_fontset_load_for_display (GdkDisplay  *display,
44                               const gchar *fontset_name)
45 {
46   return NULL;
47 }
48
49 GdkFont*
50 gdk_fontset_load (const gchar *fontset_name)
51 {
52   return NULL;
53 }
54
55 void
56 _gdk_font_destroy (GdkFont *font)
57 {
58   /* FIXME: Implement */
59 }
60
61 gint
62 _gdk_font_strlen (GdkFont     *font,
63                   const gchar *str)
64 {
65   /* FIXME: Implement */
66   return -1;
67 }
68
69 gint
70 gdk_font_id (const GdkFont *font)
71 {
72   /* FIXME: Implement */
73   return 0;
74 }
75
76 gboolean
77 gdk_font_equal (const GdkFont *fonta,
78                 const GdkFont *fontb)
79 {
80   /* FIXME: Implement */
81   return FALSE;
82 }
83
84 GdkDisplay* 
85 gdk_font_get_display (GdkFont* font)
86 {
87   /* FIXME: Implement */ 
88   return NULL;
89 }