]> Pileus Git - ~andy/gtk/blob - gtk/gtklabel.h
implement overwrite mode
[~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 #include <gtk/gtkwindow.h>
33
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif /* __cplusplus */
38
39
40 #define GTK_TYPE_LABEL            (gtk_label_get_type ())
41 #define GTK_LABEL(obj)            (GTK_CHECK_CAST ((obj), GTK_TYPE_LABEL, GtkLabel))
42 #define GTK_LABEL_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_LABEL, GtkLabelClass))
43 #define GTK_IS_LABEL(obj)         (GTK_CHECK_TYPE ((obj), GTK_TYPE_LABEL))
44 #define GTK_IS_LABEL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LABEL))
45 #define GTK_LABEL_GET_CLASS(obj)  (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_LABEL, GtkLabelClass))
46        
47
48 typedef struct _GtkLabel       GtkLabel;
49 typedef struct _GtkLabelClass  GtkLabelClass;
50
51 typedef struct _GtkLabelSelectionInfo GtkLabelSelectionInfo;
52
53 struct _GtkLabel
54 {
55   GtkMisc misc;
56
57   /*< private >*/
58   gchar  *label;
59   guint   jtype : 2;
60   guint   wrap : 1;
61   guint   use_underline : 1;
62   guint   use_markup : 1;
63
64   guint   mnemonic_keyval;
65   
66   gchar  *text; 
67   PangoAttrList *attrs;
68   
69   PangoLayout *layout;
70
71   GtkWidget *mnemonic_widget;
72   GtkWindow *mnemonic_window;
73   
74   GtkLabelSelectionInfo *select_info;
75 };
76
77 struct _GtkLabelClass
78 {
79   GtkMiscClass parent_class;
80 };
81
82 GtkType               gtk_label_get_type          (void) G_GNUC_CONST;
83 GtkWidget*            gtk_label_new               (const char       *str);
84 GtkWidget*            gtk_label_new_with_mnemonic (const char       *str);
85 void                  gtk_label_set_text          (GtkLabel         *label,
86                                                    const char       *str);
87 G_CONST_RETURN gchar* gtk_label_get_text          (GtkLabel         *label);
88 void                  gtk_label_set_attributes    (GtkLabel         *label,
89                                                    PangoAttrList    *attrs);
90 void                  gtk_label_set_markup        (GtkLabel         *label,
91                                                    const gchar      *str);
92 void     gtk_label_set_markup_with_mnemonic       (GtkLabel         *label,
93                                                    const gchar      *str);
94 guint    gtk_label_get_mnemonic_keyval            (GtkLabel         *label);
95 void     gtk_label_set_mnemonic_widget            (GtkLabel         *label,
96                                                    GtkWidget        *widget);
97 void     gtk_label_set_text_with_mnemonic         (GtkLabel         *label,
98                                                    const gchar      *str);
99 void     gtk_label_set_justify                    (GtkLabel         *label,
100                                                    GtkJustification  jtype);
101 void     gtk_label_set_pattern                    (GtkLabel         *label,
102                                                    const gchar      *pattern);
103 void     gtk_label_set_line_wrap                  (GtkLabel         *label,
104                                                    gboolean          wrap);
105 void     gtk_label_set_selectable                 (GtkLabel         *label,
106                                                    gboolean          setting);
107 gboolean gtk_label_get_selectable                 (GtkLabel         *label);
108 void     gtk_label_select_region                  (GtkLabel         *label,
109                                                    gint              start_offset,
110                                                    gint              end_offset);
111 gboolean gtk_label_get_selection_bounds           (GtkLabel         *label,
112                                                    gint             *start,
113                                                    gint             *end);
114 void     gtk_label_get_layout_offsets             (GtkLabel         *label,
115                                                    gint             *x,
116                                                    gint             *y);
117
118 #ifndef GTK_DISABLE_COMPAT_H
119 #  define gtk_label_set                         gtk_label_set_text
120 #endif  /* GTK_DISABLE_COMPAT_H */
121
122 #ifndef GTK_DISABLE_DEPRECATED
123 /* Deprecated */
124 void       gtk_label_get           (GtkLabel          *label,
125                                     char             **str);
126
127 /* Convenience function to set the name and pattern by parsing
128  * a string with embedded underscores, and return the appropriate
129  * key symbol for the accelerator.
130  */
131 guint gtk_label_parse_uline            (GtkLabel    *label,
132                                         const gchar *string);
133
134 #endif /* GTK_DISABLE_DEPRECATED */
135
136 #ifdef __cplusplus
137 }
138 #endif /* __cplusplus */
139
140
141 #endif /* __GTK_LABEL_H__ */