]> Pileus Git - ~andy/gtk/blob - gtk/gtkfontbutton.h
Create 'composited' label.
[~andy/gtk] / gtk / gtkfontbutton.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1998 David Abilleira Freijeiro <odaf@nexo.es>
3  * All rights reserved
4  * Based on gnome-color-picker by Federico Mena <federico@nuclecu.unam.mx>
5  * 
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Cambridge, MA 02139, USA.
19  */
20 /*
21  * Modified by the GTK+ Team and others 2003.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GTK_FONT_BUTTON_H__
28 #define __GTK_FONT_BUTTON_H__
29
30 #include <gtk/gtkbutton.h>
31
32
33 G_BEGIN_DECLS
34
35 /* GtkFontButton is a button widget that allow user to select a font.
36  */
37
38 #define GTK_TYPE_FONT_BUTTON             (gtk_font_button_get_type ())
39 #define GTK_FONT_BUTTON(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FONT_BUTTON, GtkFontButton))
40 #define GTK_FONT_BUTTON_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FONT_BUTTON, GtkFontButtonClass))
41 #define GTK_IS_FONT_BUTTON(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FONT_BUTTON))
42 #define GTK_IS_FONT_BUTTON_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FONT_BUTTON))
43 #define GTK_FONT_BUTTON_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FONT_BUTTON, GtkFontButtonClass))
44
45 typedef struct _GtkFontButton        GtkFontButton;
46 typedef struct _GtkFontButtonClass   GtkFontButtonClass;
47 typedef struct _GtkFontButtonPrivate GtkFontButtonPrivate;
48
49 struct _GtkFontButton {
50   GtkButton button;
51
52   /*< private >*/
53   GtkFontButtonPrivate *priv;
54 };
55
56 struct _GtkFontButtonClass {
57   GtkButtonClass parent_class;
58
59   /* font_set signal is emitted when font is chosen */
60   void (* font_set) (GtkFontButton *gfp);
61
62   /* Padding for future expansion */
63   void (*_gtk_reserved1) (void);
64   void (*_gtk_reserved2) (void);
65   void (*_gtk_reserved3) (void);
66   void (*_gtk_reserved4) (void);
67 };
68
69
70 GType                 gtk_font_button_get_type       (void) G_GNUC_CONST;
71 GtkWidget            *gtk_font_button_new            (void);
72 GtkWidget            *gtk_font_button_new_with_font  (const gchar   *fontname);
73
74 G_CONST_RETURN gchar *gtk_font_button_get_title      (GtkFontButton *font_button);
75 void                  gtk_font_button_set_title      (GtkFontButton *font_button,
76                                                       const gchar   *title);
77 gboolean              gtk_font_button_get_use_font   (GtkFontButton *font_button);
78 void                  gtk_font_button_set_use_font   (GtkFontButton *font_button,
79                                                       gboolean       use_font);
80 gboolean              gtk_font_button_get_use_size   (GtkFontButton *font_button);
81 void                  gtk_font_button_set_use_size   (GtkFontButton *font_button,
82                                                       gboolean       use_size);
83 G_CONST_RETURN gchar* gtk_font_button_get_font_name  (GtkFontButton *font_button);
84 gboolean              gtk_font_button_set_font_name  (GtkFontButton *font_button,
85                                                       const gchar   *fontname);
86 gboolean              gtk_font_button_get_show_style (GtkFontButton *font_button);
87 void                  gtk_font_button_set_show_style (GtkFontButton *font_button,
88                                                       gboolean       show_style);
89 gboolean              gtk_font_button_get_show_size  (GtkFontButton *font_button);
90 void                  gtk_font_button_set_show_size  (GtkFontButton *font_button,
91                                                       gboolean       show_size);
92
93 G_END_DECLS
94
95     
96 #endif /* __GTK_FONT_BUTTON_H__ */
97
98
99
100