/inkscape/src/xml/ |
H A D | comment-node.h | 29 CommentNode(Util::ptr_shared<char> content, Document *doc) argument 32 setContent(content);
|
H A D | pi-node.h | 27 PINode(GQuark target, Util::ptr_shared<char> content, Document *doc) argument 30 setContent(content);
|
H A D | text-node.h | 29 TextNode(Util::ptr_shared<char> content, Document *doc) argument 32 setContent(content); 35 TextNode(Util::ptr_shared<char> content, Document *doc, bool is_CData) argument 38 setContent(content);
|
H A D | simple-document.cpp | 58 Node *SimpleDocument::createTextNode(char const *content) { argument 59 return new TextNode(Util::share_string(content), this); 62 Node *SimpleDocument::createTextNode(char const *content, bool const is_CData) { argument 63 return new TextNode(Util::share_string(content), this, is_CData); 66 Node *SimpleDocument::createComment(char const *content) { argument 67 return new CommentNode(Util::share_string(content), this); 70 Node *SimpleDocument::createPI(char const *target, char const *content) { argument 71 return new PINode(g_quark_from_string(target), Util::share_string(content), this);
|
H A D | simple-node.cpp | 54 string = g_strdup_printf("text(%p)=%s", &node, node.content()); 57 string = g_strdup_printf("comment(%p)=<!--%s-->", &node, node.content()); 121 Util::ptr_shared<char> content) 122 : DebugXMLNode(node, Util::share_static_string("set-content")) 124 _addProperty("content", content); 131 : DebugXMLNode(node, Util::share_static_string("clear-content")) 223 gchar const *SimpleNode::content() const { function in class:Inkscape::XML::SimpleNode 295 void SimpleNode::setContent(gchar const *content) { argument 297 ptr_shared<char> new_content = ( content 120 DebugSetContent(Node const &node, Util::ptr_shared<char> content) argument [all...] |
/inkscape/src/libcroco/ |
H A D | cr-additional-sel.h | 59 union CRAdditionalSelectorContent content ; member in struct:_CRAdditionalSel
|
H A D | cr-term.c | 42 if (a_this->content.num) { 43 cr_num_destroy (a_this->content.num); 44 a_this->content.num = NULL; 57 if (a_this->content.str) { 58 cr_string_destroy (a_this->content.str); 59 a_this->content.str = NULL; 64 if (a_this->content.rgb) { 65 cr_rgb_destroy (a_this->content.rgb); 66 a_this->content.rgb = NULL; 148 a_this->content 284 *content = NULL; local 479 *content = NULL; local 681 guchar *content = NULL; local [all...] |
H A D | cr-term.h | 102 *The content of the term. 111 } content ; member in struct:_CRTerm
|
/inkscape/src/extension/internal/filter/ |
H A D | blurs.h | 40 * Blur content only (boolean, default false) -> 58 "<param name=\"content\" gui-text=\"" N_("Blur content only") "\" type=\"boolean\">False</param>\n" 81 std::ostringstream content; local 86 if (ext->get_param_bool("content")) { 88 content << "<feColorMatrix values=\"1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 50 0 \" result=\"colormatrix\" />\n" 92 content << "" ; 100 "</filter>\n", bbox.str().c_str(), hblur.str().c_str(), vblur.str().c_str(), content.str().c_str() );
|
H A D | morphology.h | 44 * Blur content (boolean, default false) -> blend (true: in="colormatrix2", false: in="SourceGraphic") 70 "<param name=\"content\" gui-text=\"" N_("Blur content") "\" type=\"boolean\" >false</param>\n" 97 std::ostringstream content; local 106 if (ext->get_param_bool("content")) { 107 content << "colormatrix2"; 109 content << "SourceGraphic"; 124 content.str().c_str());
|
/inkscape/src/ui/dialog/ |
H A D | xml-tree.h | 214 SPXMLViewContent *content; member in class:Inkscape::UI::Dialog::XmlTree
|
H A D | glyphs.cpp | 682 bool content = ((flags & ( SP_OBJECT_CHILD_MODIFIED_FLAG | local 685 readSelection(style, content);
|
H A D | text-edit.cpp | 276 gboolean style, content; local 281 content = ((flags & ( SP_OBJECT_CHILD_MODIFIED_FLAG | 284 onReadSelection (style, content); 322 //if (docontent) { // When would we NOT want to show the content ?
|
H A D | document-properties.cpp | 913 //# Set up the Embedded Scripts content box 1290 const gchar* content = child->getRepr()->content(); local 1291 if (content){ 1293 _EmbeddedContent.get_buffer()->set_text(content);
|
/inkscape/src/extension/ |
H A D | extension.cpp | 92 gchar const *val = child_repr->firstChild()->content(); 96 name = g_strdup (child_repr->firstChild()->content()); 99 _help = g_strdup (child_repr->firstChild()->content()); 820 Gtk::Label * content = Gtk::manage(new Gtk::Label(_("Currently there is no help available for this Extension. Please look on the Inkscape website or ask on the mailing lists if you have questions regarding this extension."))); local 821 retval->pack_start(*content, true, true, 5); 822 content->set_line_wrap(true); 823 content->show(); 838 Gtk::Widget * content = Gtk::manage(new Gtk::Label("Params")); local 839 retval->pack_start(*content, true, true, 5); 840 content [all...] |
/inkscape/src/display/ |
H A D | cairo-utils.cpp | 55 void CairoGroup::push_with_content(cairo_content_t content) { argument 56 cairo_push_group_with_content(ct, content); 802 * Creates a surface that has the same type, content type, dimensions and contents 830 * Create a surface that differs only in pixel content. 831 * Creates a surface that has the same type, content type and dimensions 852 * Creates a surface with a content type of CAIRO_CONTENT_ALPHA that contains
|
/inkscape/src/ |
H A D | text-editing.cpp | 307 return xml_doc->createTextNode(old_node->content()); 310 return xml_doc->createComment(old_node->content()); 313 return xml_doc->createPI(old_node->name(), old_node->content()); 941 gchar *content = g_strdup (str); local 953 gchar *p = content; 976 Inkscape::XML::Node *rstr = xml_doc->createTextNode(content); 981 g_free (content);
|