]> Pileus Git - ~andy/gtk/blob - gtk/gtklabel.h
Remove all references to offscreen flag which was no longer used.
[~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 Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library 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-1999.  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   gboolean wrap : 1;
61
62   /*< private >*/
63   gint rtl : 2;                 /* Base dir, cached to detect changes */
64   PangoLayout *layout;
65 };
66
67 struct _GtkLabelClass
68 {
69   GtkMiscClass parent_class;
70 };
71
72 GtkType    gtk_label_get_type      (void);
73 GtkWidget *gtk_label_new           (const char       *str);
74 void       gtk_label_set_text      (GtkLabel         *label,
75                                     const char       *str);
76 gchar *    gtk_label_get_text      (GtkLabel         *label);
77 void       gtk_label_set_justify   (GtkLabel         *label,
78                                     GtkJustification  jtype);
79 void       gtk_label_set_pattern   (GtkLabel         *label,
80                                     const gchar      *pattern);
81 void       gtk_label_set_line_wrap (GtkLabel         *label,
82                                     gboolean          wrap);
83 /* Convenience function to set the name and pattern by parsing
84  * a string with embedded underscores, and return the appropriate
85  * key symbol for the accelerator.
86  */
87 guint       gtk_label_parse_uline   (GtkLabel         *label,
88                                      const gchar      *string);
89
90 #ifndef GTK_DISABLE_COMPAT_H
91 #  define gtk_label_set                         gtk_label_set_text
92 #endif  /* GTK_DISABLE_COMPAT_H */
93
94 /* Deprecated */
95 void       gtk_label_get           (GtkLabel          *label,
96                                     char             **str);
97
98 #ifdef __cplusplus
99 }
100 #endif /* __cplusplus */
101
102
103 #endif /* __GTK_LABEL_H__ */