Searched defs:new_content (Results 1 - 7 of 7) sorted by relevance
/inkscape/src/xml/ |
H A D | log-builder.cpp | 53 Util::ptr_shared<char> new_content) 55 _log = new Inkscape::XML::EventChgContent(&node, old_content, new_content, _log); 51 setContent(Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content) argument
|
H A D | node-observer.h | 123 * @param new_content New content of @c node 127 Util::ptr_shared<char> new_content) { 130 INK_UNUSED(new_content); 125 notifyContentChanged(Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content) argument
|
H A D | simple-document.cpp | 104 Util::ptr_shared<char> new_content) 107 _log_builder.setContent(node, old_content, new_content); 102 notifyContentChanged(Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content) argument
|
H A D | composite-node-observer.cpp | 72 Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content 79 iter->observer.notifyContentChanged(node, old_content, new_content); 136 void notifyContentChanged(Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content) { argument 138 vector.content_changed(&node, old_content, new_content, data);
|
H A D | simple-node.cpp | 297 ptr_shared<char> new_content = ( content ? share_string(content) : ptr_shared<char>() ); local 300 if (new_content) { 301 tracker.set<DebugSetContent>(*this, new_content); 306 _content = new_content; 561 void content_changed(Node *node, gchar const *old_content, gchar const *new_content, void *data) { argument 562 reinterpret_cast<NodeObserver *>(data)->notifyContentChanged(*node, Util::share_unsafe((const char *)old_content), Util::share_unsafe((const char *)new_content));
|
/inkscape/src/widgets/ |
H A D | sp-xmlview-content.cpp | 34 static void event_content_changed (Inkscape::XML::Node * repr, const gchar * old_content, const gchar * new_content, gpointer data); 117 event_content_changed (Inkscape::XML::Node * /*repr*/, const gchar * /*old_content*/, const gchar * new_content, gpointer data) argument 126 if (new_content) { 127 gtk_text_buffer_set_text (gtk_text_view_get_buffer (GTK_TEXT_VIEW (text)), new_content, strlen (new_content)); 131 gtk_text_view_set_editable (GTK_TEXT_VIEW (text), new_content != NULL);
|
H A D | sp-xmlview-tree.cpp | 41 static void text_content_changed (Inkscape::XML::Node * repr, const gchar * old_content, const gchar * new_content, gpointer data); 42 static void comment_content_changed (Inkscape::XML::Node * repr, const gchar * old_content, const gchar * new_content, gpointer data); 43 static void pi_content_changed (Inkscape::XML::Node * repr, const gchar * old_content, const gchar * new_content, gpointer data); 307 void text_content_changed(Inkscape::XML::Node * /*repr*/, const gchar * /*old_content*/, const gchar * new_content, gpointer ptr) argument 313 gchar *label = g_strdup_printf ("\"%s\"", new_content); 322 void comment_content_changed(Inkscape::XML::Node * /*repr*/, const gchar * /*old_content*/, const gchar *new_content, gpointer ptr) argument 328 gchar *label = g_strdup_printf ("<!--%s-->", new_content); 336 void pi_content_changed(Inkscape::XML::Node *repr, const gchar * /*old_content*/, const gchar *new_content, gpointer ptr) argument 342 gchar *label = g_strdup_printf ("<?%s %s?>", repr->name(), new_content);
|
Completed in 265 milliseconds