]> Pileus Git - ~andy/gtk/blob - gtk/gtklabel.h
Rename ACTIVATE_MNEMONIC enum to MNEMONIC_ACTIVATE; signal was changed a
[~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 #include <gtk/gtkmenu.h>
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   PangoAttrList *effective_attrs;
69   
70   PangoLayout *layout;
71
72   GtkWidget *mnemonic_widget;
73   GtkWindow *mnemonic_window;
74   
75   GtkLabelSelectionInfo *select_info;
76 };
77
78 struct _GtkLabelClass
79 {
80   GtkMiscClass parent_class;
81
82   void (* move_cursor)     (GtkLabel       *label,
83                             GtkMovementStep step,
84                             gint            count,
85                             gboolean        extend_selection);
86   void (* copy_clipboard)  (GtkLabel       *label);
87   
88   /* Hook to customize right-click popup for selectable labels */
89   void (* populate_popup)   (GtkLabel       *label,
90                              GtkMenu        *menu);
91 };
92
93 GtkType               gtk_label_get_type          (void) G_GNUC_CONST;
94 GtkWidget*            gtk_label_new               (const char    *str);
95 GtkWidget*            gtk_label_new_with_mnemonic (const char    *str);
96 void                  gtk_label_set_text          (GtkLabel      *label,
97                                                    const char    *str);
98 G_CONST_RETURN gchar* gtk_label_get_text          (GtkLabel      *label);
99 void                  gtk_label_set_attributes    (GtkLabel      *label,
100                                                    PangoAttrList *attrs);
101 PangoAttrList        *gtk_label_get_attributes    (GtkLabel      *label);
102 void                  gtk_label_set_label         (GtkLabel      *label,
103                                                    const gchar   *str);
104 G_CONST_RETURN gchar *gtk_label_get_label         (GtkLabel      *label);
105 void                  gtk_label_set_markup        (GtkLabel      *label,
106                                                    const gchar   *str);
107 void                  gtk_label_set_use_markup    (GtkLabel      *label,
108                                                    gboolean       setting);
109 gboolean              gtk_label_get_use_markup    (GtkLabel      *label);
110 void                  gtk_label_set_use_underline (GtkLabel      *label,
111                                                    gboolean       setting);
112 gboolean              gtk_label_get_use_underline (GtkLabel      *label);
113
114 void     gtk_label_set_markup_with_mnemonic       (GtkLabel         *label,
115                                                    const gchar      *str);
116 guint    gtk_label_get_mnemonic_keyval            (GtkLabel         *label);
117 void     gtk_label_set_mnemonic_widget            (GtkLabel         *label,
118                                                    GtkWidget        *widget);
119 GtkWidget *gtk_label_get_mnemonic_widget          (GtkLabel         *label);
120 void     gtk_label_set_text_with_mnemonic         (GtkLabel         *label,
121                                                    const gchar      *str);
122 void     gtk_label_set_justify                    (GtkLabel         *label,
123                                                    GtkJustification  jtype);
124 GtkJustification gtk_label_get_justify            (GtkLabel         *label);
125 void     gtk_label_set_pattern                    (GtkLabel         *label,
126                                                    const gchar      *pattern);
127 void     gtk_label_set_line_wrap                  (GtkLabel         *label,
128                                                    gboolean          wrap);
129 gboolean gtk_label_get_line_wrap                  (GtkLabel         *label);
130 void     gtk_label_set_selectable                 (GtkLabel         *label,
131                                                    gboolean          setting);
132 gboolean gtk_label_get_selectable                 (GtkLabel         *label);
133 void     gtk_label_select_region                  (GtkLabel         *label,
134                                                    gint              start_offset,
135                                                    gint              end_offset);
136 gboolean gtk_label_get_selection_bounds           (GtkLabel         *label,
137                                                    gint             *start,
138                                                    gint             *end);
139
140 PangoLayout *gtk_label_get_layout         (GtkLabel *label);
141 void         gtk_label_get_layout_offsets (GtkLabel *label,
142                                            gint     *x,
143                                            gint     *y);
144
145
146 #ifndef GTK_DISABLE_DEPRECATED
147
148 #define  gtk_label_set           gtk_label_set_text
149 void       gtk_label_get           (GtkLabel          *label,
150                                     char             **str);
151
152 /* Convenience function to set the name and pattern by parsing
153  * a string with embedded underscores, and return the appropriate
154  * key symbol for the accelerator.
155  */
156 guint gtk_label_parse_uline            (GtkLabel    *label,
157                                         const gchar *string);
158
159 #endif /* GTK_DISABLE_DEPRECATED */
160
161 #ifdef __cplusplus
162 }
163 #endif /* __cplusplus */
164
165
166 #endif /* __GTK_LABEL_H__ */