]> Pileus Git - ~andy/gtk/blob - gtk/gtklabel.h
Get rid of a bunch of g_strdup_printf("%s%s") in favor of g_strconcat().
[~andy/gtk] / gtk / gtklabel.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 /*
20  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
21  * file for a list of people on the GTK+ Team.  See the ChangeLog
22  * files for a list of changes.  These files are distributed with
23  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
24  */
25
26 #ifndef __GTK_LABEL_H__
27 #define __GTK_LABEL_H__
28
29
30 #include <gdk/gdk.h>
31 #include <gtk/gtkmisc.h>
32
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif /* __cplusplus */
37
38
39 #define GTK_TYPE_LABEL            (gtk_label_get_type ())
40 #define GTK_LABEL(obj)            (GTK_CHECK_CAST ((obj), GTK_TYPE_LABEL, GtkLabel))
41 #define GTK_LABEL_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_LABEL, GtkLabelClass))
42 #define GTK_IS_LABEL(obj)         (GTK_CHECK_TYPE ((obj), GTK_TYPE_LABEL))
43 #define GTK_IS_LABEL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LABEL))
44 #define GTK_LABEL_GET_CLASS(obj)  (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_LABEL, GtkLabelClass))
45        
46
47 typedef struct _GtkLabel       GtkLabel;
48 typedef struct _GtkLabelClass  GtkLabelClass;
49
50 typedef struct _GtkLabelWord   GtkLabelWord;
51
52 struct _GtkLabel
53 {
54   GtkMisc misc;
55
56   gchar    *label;
57   gchar    *pattern;
58
59   guint   jtype : 2;
60   guint   wrap : 1;
61   
62   /*< private >*/
63   PangoLayout *layout;
64   PangoAttrList *attrs;
65 };
66
67 struct _GtkLabelClass
68 {
69   GtkMiscClass parent_class;
70 };
71
72 GtkType    gtk_label_get_type       (void) G_GNUC_CONST;
73 GtkWidget *gtk_label_new            (const char       *str);
74
75 void                  gtk_label_set_text (GtkLabel   *label,
76                                           const char *str);
77 G_CONST_RETURN gchar *gtk_label_get_text (GtkLabel   *label);
78
79 void       gtk_label_set_attributes (GtkLabel         *label,
80                                      PangoAttrList    *attrs);
81
82 void  gtk_label_set_markup            (GtkLabel    *label,
83                                        const gchar *str);
84 guint gtk_label_set_markup_with_accel (GtkLabel    *label,
85                                        const gchar *str);
86                                             
87 void       gtk_label_set_justify   (GtkLabel         *label,
88                                     GtkJustification  jtype);
89 void       gtk_label_set_pattern   (GtkLabel         *label,
90                                     const gchar      *pattern);
91 void       gtk_label_set_line_wrap (GtkLabel         *label,
92                                     gboolean          wrap);
93 /* Convenience function to set the name and pattern by parsing
94  * a string with embedded underscores, and return the appropriate
95  * key symbol for the accelerator.
96  */
97 guint       gtk_label_parse_uline   (GtkLabel         *label,
98                                      const gchar      *string);
99
100 #ifndef GTK_DISABLE_COMPAT_H
101 #  define gtk_label_set                         gtk_label_set_text
102 #endif  /* GTK_DISABLE_COMPAT_H */
103
104 /* Deprecated */
105 void       gtk_label_get           (GtkLabel          *label,
106                                     char             **str);
107
108 #ifdef __cplusplus
109 }
110 #endif /* __cplusplus */
111
112
113 #endif /* __GTK_LABEL_H__ */