]> Pileus Git - ~andy/gtk/blob - gtk/gtktexttag.h
Add a way to specify accumulative margins. (#344499, Nate Nielsen)
[~andy/gtk] / gtk / gtktexttag.h
1 /* gtktexttag.c - text tag object
2  *
3  * Copyright (c) 1992-1994 The Regents of the University of California.
4  * Copyright (c) 1994-1997 Sun Microsystems, Inc.
5  * Copyright (c) 2000      Red Hat, Inc.
6  * Tk -> Gtk port by Havoc Pennington <hp@redhat.com>
7  *
8  * This software is copyrighted by the Regents of the University of
9  * California, Sun Microsystems, Inc., and other parties.  The
10  * following terms apply to all files associated with the software
11  * unless explicitly disclaimed in individual files.
12  *
13  * The authors hereby grant permission to use, copy, modify,
14  * distribute, and license this software and its documentation for any
15  * purpose, provided that existing copyright notices are retained in
16  * all copies and that this notice is included verbatim in any
17  * distributions. No written agreement, license, or royalty fee is
18  * required for any of the authorized uses.  Modifications to this
19  * software may be copyrighted by their authors and need not follow
20  * the licensing terms described here, provided that the new terms are
21  * clearly indicated on the first page of each file where they apply.
22  *
23  * IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY
24  * PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
25  * DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION,
26  * OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED
27  * OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  * THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
30  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
31  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
32  * NON-INFRINGEMENT.  THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS,
33  * AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE
34  * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
35  *
36  * GOVERNMENT USE: If you are acquiring this software on behalf of the
37  * U.S. government, the Government shall have only "Restricted Rights"
38  * in the software and related documentation as defined in the Federal
39  * Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2).  If you
40  * are acquiring the software on behalf of the Department of Defense,
41  * the software shall be classified as "Commercial Computer Software"
42  * and the Government shall have only "Restricted Rights" as defined
43  * in Clause 252.227-7013 (c) (1) of DFARs.  Notwithstanding the
44  * foregoing, the authors grant the U.S. Government and others acting
45  * in its behalf permission to use and distribute the software in
46  * accordance with the terms specified in this license.
47  *
48  */
49
50 #ifndef __GTK_TEXT_TAG_H__
51 #define __GTK_TEXT_TAG_H__
52
53 #include <glib-object.h>
54 #include <gdk/gdk.h>
55 #include <gtk/gtkenums.h>
56
57 /* Not needed, retained for compatibility -Yosh */
58 #include <gtk/gtkobject.h>
59
60 G_BEGIN_DECLS
61
62 typedef struct _GtkTextIter GtkTextIter;
63 typedef struct _GtkTextTagTable GtkTextTagTable;
64
65 typedef struct _GtkTextAttributes GtkTextAttributes;
66
67 #define GTK_TYPE_TEXT_TAG            (gtk_text_tag_get_type ())
68 #define GTK_TEXT_TAG(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TEXT_TAG, GtkTextTag))
69 #define GTK_TEXT_TAG_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TEXT_TAG, GtkTextTagClass))
70 #define GTK_IS_TEXT_TAG(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TEXT_TAG))
71 #define GTK_IS_TEXT_TAG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TEXT_TAG))
72 #define GTK_TEXT_TAG_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TEXT_TAG, GtkTextTagClass))
73
74 #define GTK_TYPE_TEXT_ATTRIBUTES     (gtk_text_attributes_get_type ())
75
76 typedef struct _GtkTextTag GtkTextTag;
77 typedef struct _GtkTextTagClass GtkTextTagClass;
78
79 struct _GtkTextTag
80 {
81   GObject parent_instance;
82
83   GtkTextTagTable *table;
84
85   char *name;                   /* Name of this tag.  This field is actually
86                                  * a pointer to the key from the entry in
87                                  * tkxt->tagTable, so it needn't be freed
88                                  * explicitly. */
89   int priority;         /* Priority of this tag within widget.  0
90                          * means lowest priority.  Exactly one tag
91                          * has each integer value between 0 and
92                          * numTags-1. */
93   /*
94    * Information for displaying text with this tag.  The information
95    * belows acts as an override on information specified by lower-priority
96    * tags.  If no value is specified, then the next-lower-priority tag
97    * on the text determins the value.  The text widget itself provides
98    * defaults if no tag specifies an override.
99    */
100
101   GtkTextAttributes *values;
102   
103   /* Flags for whether a given value is set; if a value is unset, then
104    * this tag does not affect it.
105    */
106   guint bg_color_set : 1;
107   guint bg_stipple_set : 1;
108   guint fg_color_set : 1;
109   guint scale_set : 1;
110   guint fg_stipple_set : 1;
111   guint justification_set : 1;
112   guint left_margin_set : 1;
113   guint indent_set : 1;
114   guint rise_set : 1;
115   guint strikethrough_set : 1;
116   guint right_margin_set : 1;
117   guint pixels_above_lines_set : 1;
118   guint pixels_below_lines_set : 1;
119   guint pixels_inside_wrap_set : 1;
120   guint tabs_set : 1;
121   guint underline_set : 1;
122   guint wrap_mode_set : 1;
123   guint bg_full_height_set : 1;
124   guint invisible_set : 1;
125   guint editable_set : 1;
126   guint language_set : 1;
127   guint pg_bg_color_set : 1;
128
129   /* Whether these margins accumulate or override */
130   guint accumulative_margin : 1;
131
132   guint pad1 : 1;
133 };
134
135 struct _GtkTextTagClass
136 {
137   GObjectClass parent_class;
138
139   gboolean (* event) (GtkTextTag        *tag,
140                       GObject           *event_object, /* widget, canvas item, whatever */
141                       GdkEvent          *event,        /* the event itself */
142                       const GtkTextIter *iter);        /* location of event in buffer */
143
144   /* Padding for future expansion */
145   void (*_gtk_reserved1) (void);
146   void (*_gtk_reserved2) (void);
147   void (*_gtk_reserved3) (void);
148   void (*_gtk_reserved4) (void);
149 };
150
151 GType        gtk_text_tag_get_type     (void) G_GNUC_CONST;
152 GtkTextTag  *gtk_text_tag_new          (const gchar       *name);
153 gint         gtk_text_tag_get_priority (GtkTextTag        *tag);
154 void         gtk_text_tag_set_priority (GtkTextTag        *tag,
155                                         gint               priority);
156 gboolean     gtk_text_tag_event        (GtkTextTag        *tag,
157                                         GObject           *event_object,
158                                         GdkEvent          *event,
159                                         const GtkTextIter *iter);
160
161 /*
162  * Style object created by folding a set of tags together
163  */
164
165 typedef struct _GtkTextAppearance GtkTextAppearance;
166
167 struct _GtkTextAppearance
168 {
169   /*< public >*/
170   GdkColor bg_color;
171   GdkColor fg_color;
172   GdkBitmap *bg_stipple;
173   GdkBitmap *fg_stipple;
174
175   /* super/subscript rise, can be negative */
176   gint rise;
177
178   /*< private >*/
179   /* I'm not sure this can really be used without breaking some things
180    * an app might do :-/
181    */
182   gpointer padding1;
183
184   /*< public >*/
185   guint underline : 4;          /* PangoUnderline */
186   guint strikethrough : 1;
187
188   /* Whether to use background-related values; this is irrelevant for
189    * the values struct when in a tag, but is used for the composite
190    * values struct; it's true if any of the tags being composited
191    * had background stuff set.
192    */
193   guint draw_bg : 1;
194   
195   /* These are only used when we are actually laying out and rendering
196    * a paragraph; not when a GtkTextAppearance is part of a
197    * GtkTextAttributes.
198    */
199   guint inside_selection : 1;
200   guint is_text : 1;
201
202   /*< private >*/
203   guint pad1 : 1;
204   guint pad2 : 1;
205   guint pad3 : 1;
206   guint pad4 : 1;
207 };
208
209 struct _GtkTextAttributes
210 {
211   /*< private >*/
212   guint refcount;
213
214   /*< public >*/
215   GtkTextAppearance appearance;
216
217   GtkJustification justification;
218   GtkTextDirection direction;
219
220   /* Individual chunks of this can be set/unset as a group */
221   PangoFontDescription *font;
222
223   gdouble font_scale;
224   
225   gint left_margin;
226
227   gint indent;  
228
229   gint right_margin;
230
231   gint pixels_above_lines;
232
233   gint pixels_below_lines;
234
235   gint pixels_inside_wrap;
236
237   PangoTabArray *tabs;
238
239   GtkWrapMode wrap_mode;        /* How to handle wrap-around for this tag.
240                                  * Must be GTK_WRAPMODE_CHAR,
241                                  * GTK_WRAPMODE_NONE, GTK_WRAPMODE_WORD
242                                  */
243
244   PangoLanguage *language;
245
246   /*< private >*/
247   GdkColor *pg_bg_color;
248
249   /*< public >*/
250   /* hide the text  */
251   guint invisible : 1;
252
253   /* Background is fit to full line height rather than
254    * baseline +/- ascent/descent (font height)
255    */
256   guint bg_full_height : 1;
257
258   /* can edit this text */
259   guint editable : 1;
260
261   /* colors are allocated etc. */
262   guint realized : 1;
263
264   /*< private >*/
265   guint pad1 : 1;
266   guint pad2 : 1;
267   guint pad3 : 1;
268   guint pad4 : 1;
269 };
270
271 GtkTextAttributes* gtk_text_attributes_new         (void);
272 GtkTextAttributes* gtk_text_attributes_copy        (GtkTextAttributes *src);
273 void               gtk_text_attributes_copy_values (GtkTextAttributes *src,
274                                                     GtkTextAttributes *dest);
275 void               gtk_text_attributes_unref       (GtkTextAttributes *values);
276 GtkTextAttributes *gtk_text_attributes_ref         (GtkTextAttributes *values);
277
278 GType              gtk_text_attributes_get_type    (void) G_GNUC_CONST;
279
280
281 G_END_DECLS
282
283 #endif
284