]> Pileus Git - ~andy/gtk/blob - gtk/deprecated/gtkfontsel.h
filechooserbutton: Test that the expected filename is shown
[~andy/gtk] / gtk / deprecated / gtkfontsel.h
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 GType        gtk_font_selection_get_type          (void) G_GNUC_CONST;
107 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
108 GtkWidget *  gtk_font_selection_new               (void);
109 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
110 GtkWidget *  gtk_font_selection_get_family_list   (GtkFontSelection *fontsel);
111 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
112 GtkWidget *  gtk_font_selection_get_face_list     (GtkFontSelection *fontsel);
113 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
114 GtkWidget *  gtk_font_selection_get_size_entry    (GtkFontSelection *fontsel);
115 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
116 GtkWidget *  gtk_font_selection_get_size_list     (GtkFontSelection *fontsel);
117 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
118 GtkWidget *  gtk_font_selection_get_preview_entry (GtkFontSelection *fontsel);
119 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
120 PangoFontFamily *
121              gtk_font_selection_get_family        (GtkFontSelection *fontsel);
122 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
123 PangoFontFace *
124              gtk_font_selection_get_face          (GtkFontSelection *fontsel);
125 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
126 gint         gtk_font_selection_get_size          (GtkFontSelection *fontsel);
127 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
128 gchar*       gtk_font_selection_get_font_name     (GtkFontSelection *fontsel);
129
130 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
131 gboolean     gtk_font_selection_set_font_name     (GtkFontSelection *fontsel,
132                                                    const gchar      *fontname);
133 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
134 const gchar* gtk_font_selection_get_preview_text  (GtkFontSelection *fontsel);
135 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
136 void         gtk_font_selection_set_preview_text  (GtkFontSelection *fontsel,
137                                                    const gchar      *text);
138
139
140 GType      gtk_font_selection_dialog_get_type          (void) G_GNUC_CONST;
141 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
142 GtkWidget *gtk_font_selection_dialog_new               (const gchar            *title);
143
144 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
145 GtkWidget *gtk_font_selection_dialog_get_ok_button     (GtkFontSelectionDialog *fsd);
146 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
147 GtkWidget *gtk_font_selection_dialog_get_cancel_button (GtkFontSelectionDialog *fsd);
148 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
149 GtkWidget *gtk_font_selection_dialog_get_font_selection (GtkFontSelectionDialog *fsd);
150 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
151 gchar*     gtk_font_selection_dialog_get_font_name     (GtkFontSelectionDialog *fsd);
152 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
153 gboolean   gtk_font_selection_dialog_set_font_name     (GtkFontSelectionDialog *fsd,
154                                                         const gchar            *fontname);
155 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
156 const gchar*
157           gtk_font_selection_dialog_get_preview_text   (GtkFontSelectionDialog *fsd);
158 GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser)
159 void      gtk_font_selection_dialog_set_preview_text   (GtkFontSelectionDialog *fsd,
160                                                         const gchar            *text);
161
162 G_END_DECLS
163
164
165 #endif /* __GTK_FONTSEL_H__ */