/inkscape/src/extension/ |
H A D | print.h | 28 SPItem *base; member in class:Inkscape::Extension::Print
|
H A D | effect.cpp | 123 Effect::merge_menu (Inkscape::XML::Node * base, argument 132 base != NULL ? base->name() : "NULL", 146 xml_doc = base->document(); 197 base->appendChild(tomerge);
|
/inkscape/src/ |
H A D | gc-finalized.cpp | 37 _addProperty("base", Util::format("%p", Core::base(object))); 45 void Finalized::_invoke_dtor(void *base, void *offset) { argument 46 Finalized *object=_unoffset(base, offset);
|
H A D | gc-anchored.h | 19 * A base class for anchored objects. 63 Anchor() : refcount(0),base(NULL) {} 65 base = Core::base(const_cast<Anchored *>(obj)); 68 void *base; member in struct:Inkscape::GC::Anchored::Anchor
|
H A D | gc-finalized.h | 69 void *base=Core::base(this); local 70 if (base) { // only if we are managed by the collector 77 // finalized; instead we use an offset-from-base-address 79 Core::register_finalizer_ignore_self(base, _invoke_dtor, 80 _offset(base, this), 85 // base address, there are two main possibilities: 99 Core::register_finalizer_ignore_self(base, 109 Core::register_finalizer_ignore_self(Core::base(this), 114 /// invoke the destructor for an object given a base an 118 _offset(void *base, Finalized *self) argument 124 _unoffset(void *base, void *offset) argument [all...] |
H A D | dir-util.cpp | 12 std::string sp_relative_path_from_path( std::string const &path, std::string const &base) argument 15 if ( !base.empty() && !path.empty() ) { 16 size_t base_len = base.length(); 18 && (base[base_len - 1] == G_DIR_SEPARATOR)) 23 if ( (path.substr(0, base_len) == base.substr(0, base_len)) 64 char *inkscape_rel2abs(const char *path, const char *base, char *result, const size_t size) argument 78 else if (*base != G_DIR_SEPARATOR || !size) 87 if (strlen (base) >= size) 89 strcpy (result, base); 91 rp = result + strlen (base) 150 inkscape_abs2rel(const char *path, const char *base, char *result, const size_t size) argument [all...] |
H A D | print.cpp | 85 SPItem *base = doc->getRoot(); local 88 Inkscape::UI::Dialog::Print printop(doc,base); 108 mod->base = doc->getRoot(); 111 mod->root = (mod->base)->invoke_show(drawing, mod->dkey, SP_ITEM_SHOW_DISPLAY); 115 (mod->base)->invoke_print(&context); 118 (mod->base)->invoke_hide(mod->dkey); 119 mod->base = NULL;
|
H A D | uri-references.cpp | 143 std::string base = document->getBase() ? document->getBase() : ""; local 144 std::string path = uri.getFullPath(base);
|
H A D | document.h | 105 char *base; ///< To be used for resolving relative hrefs. member in class:SPDocument 145 char const *getBase() const { return base; }; 146 void setBase( char const* base ); 240 char const *base, char const *name, unsigned int keepalive,
|
H A D | resource-manager.cpp | 133 bool searchUpwards( std::string const &base, std::string const &subpath, std::string &dest ); 290 // TODO debug g_message(" base is [%s]", doc->getBase()); 345 bool ResourceManagerImpl::searchUpwards( std::string const &base, std::string const &subpath, std::string &dest ) argument 351 std::vector<std::string> baseParts = splitPath(base);
|
H A D | sp-marker.cpp | 357 Geom::Affine const &base, float linewidth) 395 m = base; 397 // m = Geom::Rotate::from_degrees( 180.0 ) * base; 399 m = base; 403 m *= Geom::Translate(base.translation()); 355 sp_marker_show_instance( SPMarker *marker, Inkscape::DrawingItem *parent, unsigned int key, unsigned int pos, Geom::Affine const &base, float linewidth) argument
|
/inkscape/src/extension/internal/ |
H A D | cairo-png-out.cpp | 61 SPItem *base = doc->getRoot(); local 64 base->invoke_show(drawing, dkey, SP_ITEM_SHOW_DISPLAY); 73 renderer->renderItem(ctx, base); 79 base->invoke_hide(dkey);
|
H A D | cairo-ps-out.cpp | 73 SPItem *base = NULL; local 78 base = SP_ITEM(doc->getObjectById(exportId)); 83 base = doc->getRoot(); 87 if (!base) 92 base->invoke_show(drawing, dkey, SP_ITEM_SHOW_DISPLAY); 107 ret = renderer->setupDocument(ctx, doc, pageBoundingBox, bleedmargin_px, base); 109 renderer->renderItem(ctx, base); 114 base->invoke_hide(dkey);
|
H A D | cairo-renderer-pdf-out.cpp | 68 SPItem *base = NULL; local 73 base = SP_ITEM(doc->getObjectById(exportId)); 78 base = doc->getRoot(); 82 if (!base) { 90 base->invoke_show(drawing, dkey, SP_ITEM_SHOW_DISPLAY); 104 ret = renderer->setupDocument(ctx, doc, pageBoundingBox, bleedmargin_px, base); 106 renderer->renderItem(ctx, base); 111 base->invoke_hide(dkey);
|
H A D | latex-text-renderer.cpp | 64 SPItem *base = NULL; local 69 base = dynamic_cast<SPItem *>(doc->getObjectById(exportId)); 70 g_assert(base != NULL); 75 base = doc->getRoot(); 79 if (!base) 88 bool ret = renderer->setupDocument(doc, pageBoundingBox, bleedmargin_px, base); 90 renderer->renderItem(base); 615 LaTeXTextRenderer::setupDocument(SPDocument *doc, bool pageBoundingBox, float bleedmargin_px, SPItem *base) argument 619 if (!base) { 620 base [all...] |
/inkscape/src/inkgc/ |
H A D | gc-soft-ptr.h | 47 void *base=Core::base(this); local 48 if (base) { 49 Core::general_register_disappearing_link(&_pointer, base);
|
H A D | gc-core.h | 53 void *(*base)(void *ptr); member in struct:Inkscape::GC::Ops 54 void (*register_finalizer_ignore_self)(void *base, 59 void const *base); 84 static inline void *base(void *ptr) { function in struct:Inkscape::GC::Core 85 return _ops.base(ptr); 87 static inline void register_finalizer_ignore_self(void *base, argument 93 return _ops.register_finalizer_ignore_self(base, func, data, 97 void *base) 99 return _ops.general_register_disappearing_link(p_ptr, base); 96 general_register_disappearing_link(void **p_ptr, void *base) argument
|
H A D | gc.cpp | 57 char *base=reinterpret_cast<char *>(GC_debug_malloc(1, GC_EXTRAS)); local 58 char *real_base=reinterpret_cast<char *>(GC_base(base)); 59 GC_debug_free(base); 60 return base - real_base; 69 char *base=reinterpret_cast<char *>(GC_base(ptr)); local 70 return base + debug_base_fixup(); 73 int debug_general_register_disappearing_link(void **p_ptr, void const *base) { argument 74 char const *real_base = reinterpret_cast<char const *>(base) - debug_base_fixup();
|
/inkscape/src/ui/dialog/ |
H A D | desktop-tracker.h | 45 SPDesktop *base; member in class:Inkscape::UI::Dialog::DesktopTracker
|
H A D | print.cpp | 170 Print::Print(SPDocument *doc, SPItem *base) : argument 172 _base (base)
|
/inkscape/src/helper/ |
H A D | stock-items.cpp | 196 gchar * base = g_strndup(e, a); local 202 g_free(base); 206 if (!strcmp(base, "marker") && !stock) { 218 else if (!strcmp(base,"pattern") && !stock) { 230 else if (!strcmp(base,"gradient") && !stock) { 245 if (!strcmp(base, "marker")) { 248 else if (!strcmp(base, "pattern")) { 251 else if (!strcmp(base, "gradient")) { 256 g_free(base);
|
/inkscape/src/widgets/ |
H A D | sp-color-selector.h | 73 ColorSelector* base; member in struct:SPColorSelector
|
/inkscape/src/extension/implementation/ |
H A D | xslt.cpp | 162 gchar * base = NULL; local 170 base = g_strdup(s); 172 base = NULL; 177 SPDocument * doc = SPDocument::createDoc(rdoc, filename, base, name, true, NULL); 179 g_free(base); g_free(name);
|
/inkscape/src/extension/param/ |
H A D | radiobutton.cpp | 255 ComboWdg(ParamRadioButton* base, SPDocument * doc, Inkscape::XML::Node * node, sigc::signal<void> * changeSignal) : argument 256 _base(base),
|
/inkscape/src/ui/tools/ |
H A D | node-tool.cpp | 84 * - SelectableControlPoint: base for any type of selectable point. It can belong to only one 369 void gather_items(NodeTool *nt, SPItem *base, SPObject *obj, Inkscape::UI::ShapeRole role, argument 387 gather_items(nt, base, c, role, s); 394 r.edit_transform = base ? base->i2doc_affine() : Geom::identity();
|