1 | /* GTK - The GIMP Toolkit |
2 | * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald |
3 | * |
4 | * GtkFontSelection widget for Gtk+, by Damon Chaplin, May 1998. |
5 | * Based on the GnomeFontSelector widget, by Elliot Lee, but major changes. |
6 | * The GnomeFontSelector was derived from app/text_tool.c in the GIMP. |
7 | * |
8 | * This library is free software; you can redistribute it and/or |
9 | * modify it under the terms of the GNU Lesser General Public |
10 | * License as published by the Free Software Foundation; either |
11 | * version 2 of the License, or (at your option) any later version. |
12 | * |
13 | * This library is distributed in the hope that it will be useful, |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 | * Lesser General Public License for more details. |
17 | * |
18 | * You should have received a copy of the GNU Lesser General Public |
19 | * License along with this library. If not, see <http://www.gnu.org/licenses/>. |
20 | */ |
21 | |
22 | /* |
23 | * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS |
24 | * file for a list of people on the GTK+ Team. See the ChangeLog |
25 | * files for a list of changes. These files are distributed with |
26 | * GTK+ at ftp://ftp.gtk.org/pub/gtk/. |
27 | */ |
28 | |
29 | #ifndef __GTK_FONTSEL_H__ |
30 | #define __GTK_FONTSEL_H__ |
31 | |
32 | |
33 | #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) |
34 | #error "Only <gtk/gtk.h> can be included directly." |
35 | #endif |
36 | |
37 | #include <gtk/gtkdialog.h> |
38 | #include <gtk/gtkbox.h> |
39 | |
40 | |
41 | G_BEGIN_DECLS |
42 | |
43 | #define GTK_TYPE_FONT_SELECTION (gtk_font_selection_get_type ()) |
44 | #define GTK_FONT_SELECTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FONT_SELECTION, GtkFontSelection)) |
45 | #define GTK_FONT_SELECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FONT_SELECTION, GtkFontSelectionClass)) |
46 | #define GTK_IS_FONT_SELECTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FONT_SELECTION)) |
47 | #define GTK_IS_FONT_SELECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FONT_SELECTION)) |
48 | #define GTK_FONT_SELECTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FONT_SELECTION, GtkFontSelectionClass)) |
49 | |
50 | |
51 | #define GTK_TYPE_FONT_SELECTION_DIALOG (gtk_font_selection_dialog_get_type ()) |
52 | #define GTK_FONT_SELECTION_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FONT_SELECTION_DIALOG, GtkFontSelectionDialog)) |
53 | #define GTK_FONT_SELECTION_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FONT_SELECTION_DIALOG, GtkFontSelectionDialogClass)) |
54 | #define GTK_IS_FONT_SELECTION_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FONT_SELECTION_DIALOG)) |
55 | #define GTK_IS_FONT_SELECTION_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FONT_SELECTION_DIALOG)) |
56 | #define GTK_FONT_SELECTION_DIALOG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FONT_SELECTION_DIALOG, GtkFontSelectionDialogClass)) |
57 | |
58 | |
59 | typedef struct _GtkFontSelection GtkFontSelection; |
60 | typedef struct _GtkFontSelectionPrivate GtkFontSelectionPrivate; |
61 | typedef struct _GtkFontSelectionClass GtkFontSelectionClass; |
62 | |
63 | typedef struct _GtkFontSelectionDialog GtkFontSelectionDialog; |
64 | typedef struct _GtkFontSelectionDialogPrivate GtkFontSelectionDialogPrivate; |
65 | typedef struct _GtkFontSelectionDialogClass GtkFontSelectionDialogClass; |
66 | |
67 | struct _GtkFontSelection |
68 | { |
69 | GtkBox parent_instance; |
70 | |
71 | /*< private >*/ |
72 | GtkFontSelectionPrivate *priv; |
73 | }; |
74 | |
75 | struct _GtkFontSelectionClass |
76 | { |
77 | GtkBoxClass parent_class; |
78 | |
79 | /* Padding for future expansion */ |
80 | void (*_gtk_reserved1) (void); |
81 | void (*_gtk_reserved2) (void); |
82 | void (*_gtk_reserved3) (void); |
83 | void (*_gtk_reserved4) (void); |
84 | }; |
85 | |
86 | |
87 | struct _GtkFontSelectionDialog |
88 | { |
89 | GtkDialog parent_instance; |
90 | |
91 | /*< private >*/ |
92 | GtkFontSelectionDialogPrivate *priv; |
93 | }; |
94 | |
95 | struct _GtkFontSelectionDialogClass |
96 | { |
97 | GtkDialogClass parent_class; |
98 | |
99 | /* Padding for future expansion */ |
100 | void (*_gtk_reserved1) (void); |
101 | void (*_gtk_reserved2) (void); |
102 | void (*_gtk_reserved3) (void); |
103 | void (*_gtk_reserved4) (void); |
104 | }; |
105 | |
106 | GDK_DEPRECATED_IN_3_2 |
107 | GType gtk_font_selection_get_type (void) G_GNUC_CONST; |
108 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
109 | GtkWidget * gtk_font_selection_new (void); |
110 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
111 | GtkWidget * gtk_font_selection_get_family_list (GtkFontSelection *fontsel); |
112 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
113 | GtkWidget * gtk_font_selection_get_face_list (GtkFontSelection *fontsel); |
114 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
115 | GtkWidget * gtk_font_selection_get_size_entry (GtkFontSelection *fontsel); |
116 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
117 | GtkWidget * gtk_font_selection_get_size_list (GtkFontSelection *fontsel); |
118 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
119 | GtkWidget * gtk_font_selection_get_preview_entry (GtkFontSelection *fontsel); |
120 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
121 | PangoFontFamily * |
122 | gtk_font_selection_get_family (GtkFontSelection *fontsel); |
123 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
124 | PangoFontFace * |
125 | gtk_font_selection_get_face (GtkFontSelection *fontsel); |
126 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
127 | gint gtk_font_selection_get_size (GtkFontSelection *fontsel); |
128 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
129 | gchar* gtk_font_selection_get_font_name (GtkFontSelection *fontsel); |
130 | |
131 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
132 | gboolean gtk_font_selection_set_font_name (GtkFontSelection *fontsel, |
133 | const gchar *fontname); |
134 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
135 | const gchar* gtk_font_selection_get_preview_text (GtkFontSelection *fontsel); |
136 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
137 | void gtk_font_selection_set_preview_text (GtkFontSelection *fontsel, |
138 | const gchar *text); |
139 | |
140 | GDK_DEPRECATED_IN_3_2 |
141 | GType gtk_font_selection_dialog_get_type (void) G_GNUC_CONST; |
142 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
143 | GtkWidget *gtk_font_selection_dialog_new (const gchar *title); |
144 | |
145 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
146 | GtkWidget *gtk_font_selection_dialog_get_ok_button (GtkFontSelectionDialog *fsd); |
147 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
148 | GtkWidget *gtk_font_selection_dialog_get_cancel_button (GtkFontSelectionDialog *fsd); |
149 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
150 | GtkWidget *gtk_font_selection_dialog_get_font_selection (GtkFontSelectionDialog *fsd); |
151 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
152 | gchar* gtk_font_selection_dialog_get_font_name (GtkFontSelectionDialog *fsd); |
153 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
154 | gboolean gtk_font_selection_dialog_set_font_name (GtkFontSelectionDialog *fsd, |
155 | const gchar *fontname); |
156 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
157 | const gchar* |
158 | gtk_font_selection_dialog_get_preview_text (GtkFontSelectionDialog *fsd); |
159 | GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) |
160 | void gtk_font_selection_dialog_set_preview_text (GtkFontSelectionDialog *fsd, |
161 | const gchar *text); |
162 | |
163 | G_END_DECLS |
164 | |
165 | |
166 | #endif /* __GTK_FONTSEL_H__ */ |
167 | |