summaryrefslogtreecommitdiff
path: root/gtk/gtktexttagtable.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2001-12-05 01:43:48 +0000
committerHavoc Pennington <hp@src.gnome.org>2001-12-05 01:43:48 +0000
commit6b1407a3eccd772a6ad25e058bd0b0a9881f9ccb (patch)
tree75861622240b902dfe2e85cc5c2419f7a1abae2f /gtk/gtktexttagtable.h
parenta7bab735ad1ef4d8e5736f58b50c9003aa244e8f (diff)
downloadgtk+-6b1407a3eccd772a6ad25e058bd0b0a9881f9ccb.tar.gz
remove g_assert_not_reached() that was bogus, since we demand-create the
2001-12-04 Havoc Pennington <hp@redhat.com> * gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove g_assert_not_reached() that was bogus, since we demand-create the tag info. reported by Chris Phelps Jump through assorted hoops to fix bug from Chris Phelps where removing tags from the table resulted in btree trying to access tag->table * gtk/gtktextbuffer.c: set up mechanics of adding/removing ourselves to the tag table * gtk/gtktexttagtable.c (_gtk_text_tag_table_add_buffer) (_gtk_text_tag_table_remove_buffer): private cruft to let us notify buffer of disappearing tags * gtk/gtktexttag.h: remove BTreeNode typedef from this public header, put it in tagprivate * gtk/gtktextbtree.c (_gtk_text_btree_new): don't connect to tag_removed; it's emitted too late. (_gtk_text_btree_notify_will_remove_tag): rename tag_remove_cb to this Padding for ABI-compat expansion * gtk/gtktexttag.h (struct _GtkTextAttributes): pad this (struct _GtkTextAppearance): one pad in here too * gtk/gtktextlayout.h (struct _GtkTextLayoutClass): padding here * gtk/gtktextview.h (struct _GtkTextViewClass): more padding, since action signals etc. seem pretty likely * gtk/gtktextbuffer.h (struct _GtkTextBufferClass): padding * gtk/gtktexttag.h (struct _GtkTextTagClass): padding * gtk/gtktexttagtable.h (struct _GtkTextTagTableClass): padding
Diffstat (limited to 'gtk/gtktexttagtable.h')
-rw-r--r--gtk/gtktexttagtable.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/gtk/gtktexttagtable.h b/gtk/gtktexttagtable.h
index 32abde0363..4e0a4d9f86 100644
--- a/gtk/gtktexttagtable.h
+++ b/gtk/gtktexttagtable.h
@@ -26,6 +26,8 @@ struct _GtkTextTagTable {
GHashTable *hash;
GSList *anonymous;
gint anon_count;
+
+ GSList *buffers;
};
struct _GtkTextTagTableClass {
@@ -34,6 +36,9 @@ struct _GtkTextTagTableClass {
void (* tag_changed) (GtkTextTagTable *table, GtkTextTag *tag, gboolean size_changed);
void (* tag_added) (GtkTextTagTable *table, GtkTextTag *tag);
void (* tag_removed) (GtkTextTagTable *table, GtkTextTag *tag);
+
+ GtkFunction pad1;
+ GtkFunction pad2;
};
GType gtk_text_tag_table_get_type (void) G_GNUC_CONST;
@@ -51,6 +56,14 @@ void gtk_text_tag_table_foreach (GtkTextTagTable *table,
gint gtk_text_tag_table_get_size (GtkTextTagTable *table);
+/* INTERNAL private stuff - not even exported from the library on
+ * many platforms
+ */
+void _gtk_text_tag_table_add_buffer (GtkTextTagTable *table,
+ gpointer buffer);
+void _gtk_text_tag_table_remove_buffer (GtkTextTagTable *table,
+ gpointer buffer);
+
#ifdef __cplusplus
}
#endif /* __cplusplus */