~ubuntu-branches/ubuntu/maverick/conglomerate/maverick

« back to all changes in this revision

Viewing changes to src/cong-view.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2005-11-08 05:07:06 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051108050706-bcg60nwqf1z3w0d6
Tags: 0.9.1-1ubuntu1
* Resynchronise with Debian (Closes: #4397).
  - Thanks, Jordan Mantha.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        void (*on_document_node_add_after)(CongView *view, gboolean before_change, CongNodePtr node, CongNodePtr older_sibling);
75
75
        void (*on_document_node_add_before)(CongView *view, gboolean before_change, CongNodePtr node, CongNodePtr younger_sibling);
76
76
        void (*on_document_node_set_parent)(CongView *view, gboolean before_change, CongNodePtr node, CongNodePtr adoptive_parent, gboolean add_to_end);
77
 
        void (*on_document_node_set_text)(CongView *view, gboolean before_change, CongNodePtr node, const xmlChar *new_content);
78
 
        void (*on_document_node_set_attribute)(CongView *view, gboolean before_change, CongNodePtr node, xmlNs *ns_ptr, const xmlChar *name, const xmlChar *value);
79
 
        void (*on_document_node_remove_attribute)(CongView *view, gboolean before_change, CongNodePtr node, xmlNs *ns_ptr, const xmlChar *name);
 
77
        void (*on_document_node_set_text)(CongView *view, gboolean before_change, CongNodePtr node, const gchar *new_content);
 
78
        void (*on_document_node_set_attribute)(CongView *view, gboolean before_change, CongNodePtr node, xmlNs *ns_ptr, const gchar *name, const gchar *value);
 
79
        void (*on_document_node_remove_attribute)(CongView *view, gboolean before_change, CongNodePtr node, xmlNs *ns_ptr, const gchar *name);
80
80
        void (*on_selection_change)(CongView *view);
81
81
        void (*on_cursor_change)(CongView *view);
82
82
        void (*on_document_set_dtd_ptr) (CongView *view, 
122
122
                } set_parent;
123
123
                struct set_text {
124
124
                        CongNodePtr node;
125
 
                        const xmlChar *new_content;
 
125
                        const gchar *new_content;
126
126
                } set_text;
127
127
        } data;
128
128
};