forked from AuroraMiddleware/gtk
78500e9045
2000-08-31 Havoc Pennington <hp@redhat.com> * gtk/gtktextiter.h, gtk/gtktextiter.c, gtk/gtktextlayout.h, gtk/gtktextlayout.c, gtk/gtktexttag.h, gtk/gtktexttag.c, gtk/gtktexttagprivate.h, gtk/gtktextview.c: Rename GtkTextStyleValues to GtkTextAttributes
27 lines
1.2 KiB
C
27 lines
1.2 KiB
C
#ifndef GTK_TEXT_TAG_PRIVATE_H
|
|
#define GTK_TEXT_TAG_PRIVATE_H
|
|
|
|
#include <gtk/gtktexttag.h>
|
|
|
|
/* values should already have desired defaults; this function will override
|
|
* the defaults with settings in the given tags, which should be sorted in
|
|
* ascending order of priority
|
|
*/
|
|
void gtk_text_attributes_fill_from_tags (GtkTextAttributes *values,
|
|
GtkTextTag **tags,
|
|
guint n_tags);
|
|
void gtk_text_tag_array_sort (GtkTextTag **tag_array_p,
|
|
guint len);
|
|
|
|
/* ensure colors are allocated, etc. for drawing */
|
|
void gtk_text_attributes_realize (GtkTextAttributes *values,
|
|
GdkColormap *cmap,
|
|
GdkVisual *visual);
|
|
|
|
/* free the stuff again */
|
|
void gtk_text_attributes_unrealize (GtkTextAttributes *values,
|
|
GdkColormap *cmap,
|
|
GdkVisual *visual);
|
|
|
|
#endif
|