Searched refs:symbol (Results 1 - 11 of 11) sorted by relevance
/inkscape/share/symbols/ |
H A D | i18n.py | 13 for symbol in symbols: 14 sys.stdout.write("\n/* Symbols: " + filename + " */ NC_(\"Symbol\", \"" + symbol.firstChild.nodeValue + "\"),")
|
/inkscape/src/ |
H A D | prefix.cpp | 18 * This way you can avoid symbol table conflicts with other libraries 63 * symbol: A symbol that belongs to the app/library you want to locate. 68 * Finds out to which application or library symbol belongs, then locate 70 * Note that symbol cannot be a pointer to a function. That will not work. 87 * --> "" is a symbol that belongs to libfoo (because it's called 93 br_locate (void *symbol) argument 99 br_return_val_if_fail (symbol != NULL, NULL); 115 if (symbol >= (void *) start && symbol < (voi 159 br_locate_prefix(void *symbol) argument 189 br_prepend_prefix(void *symbol, char const *path) argument [all...] |
H A D | prefix.h | 28 * This way you can avoid symbol table conflicts with other libraries 81 char *br_locate (void *symbol); 82 char *br_locate_prefix (void *symbol); 83 char *br_prepend_prefix (void *symbol, char const *path);
|
H A D | selection-chemistry.cpp | 77 #include "sp-symbol.h" 3055 * Convert objects to <symbol>. How that happens depends on what is selected: 3057 * 1) A random selection of objects will be embedded into a single <symbol> element. 3059 * 2) Except, a single <g> will have its content directly embedded into a <symbol>; the 'id' and 3060 * 'style' of the <g> are transferred to the <symbol>. 3063 * embedded into a <symbol> (with 'id' and 'style' transferred to <symbol>). This is because a 3064 * <symbol> cannot have a transform. (If the transform is a pure translation, the translation 3069 * Move objects inside symbol so bbox corner at 0,0 (see marker/pattern) 3087 desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>objects</b> to convert to symbol 3211 SPObject* symbol = selection->single(); local [all...] |
/inkscape/src/util/ |
H A D | ziptool.cpp | 205 int *symbol; // canonically ordered symbols member in struct:__anon502 367 for (int symbol = 0; symbol < n; symbol++) 368 (h->count[length[symbol]])++; // assumes lengths are within bounds 388 // generate offsets into symbol table for each length for sorting 389 int offs[MAXBITS+1]; //offsets in symbol table for each length 395 * put symbols in table sorted by length, by symbol order within each 398 for (int symbol = 0; symbol < 507 int symbol = doDecode(lencode); local 621 int symbol = 0; local 692 int symbol = doDecode(&lencode); local [all...] |
/inkscape/src/ui/dialog/ |
H A D | symbols.cpp | 57 #include "sp-symbol.h" 211 sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("symbol-add")))) ); 220 sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("symbol-remove")))) ); 253 sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("symbol-fit")))) ); 265 sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("symbol-smaller")))) ); 275 sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("symbol-bigger")))) ); 430 SPObject* symbol = symbolDocument->getObjectById(symbol_id); local 432 if(symbol && !selection->includes(symbol)) { 445 /* OK, we know symbol nam 476 SPObject* symbol = symbolDocument->getObjectById(symbol_id); local 732 SPSymbol *symbol = dynamic_cast<SPSymbol *>(obj); local 771 draw_symbol(SPObject *symbol) argument [all...] |
H A D | symbols.h | 43 * the symbol from the symbol document, into the current document and places a 94 Glib::RefPtr<Gdk::Pixbuf> draw_symbol(SPObject *symbol); 96 /* Keep track of all symbol template documents */ 118 SPDocument* previewDocument; /* Document to render single symbol */
|
/inkscape/src/ui/ |
H A D | clipboard.h | 47 virtual void copySymbol(Inkscape::XML::Node* symbol, gchar const* style, bool user_symbol = true) = 0;
|
H A D | clipboard.cpp | 72 #include "sp-symbol.h" 110 virtual void copySymbol(Inkscape::XML::Node* symbol, gchar const* style, bool user_symbol); 302 * Copy a symbol from the symbol dialog. 303 * @param symbol The Inkscape::XML::Node for the symbol. 305 void ClipboardManagerImpl::copySymbol(Inkscape::XML::Node* symbol, gchar const* style, bool user_symbol) argument 308 if ( symbol == NULL ) { 315 // We add "_duplicate" to have a well defined symbol name that 318 Inkscape::XML::Node *repr = symbol [all...] |
/inkscape/src/extension/internal/ |
H A D | cairo-renderer.cpp | 55 #include "sp-symbol.h" 156 static void sp_symbol_render(SPSymbol *symbol, CairoRenderContext *ctx); 398 static void sp_symbol_render(SPSymbol *symbol, CairoRenderContext *ctx) argument 400 if (!symbol->cloned) { 404 /* Cloned <symbol> is actually renderable */ 406 ctx->transform(symbol->c2p); 409 if (0 /*symbol->viewBox_set*/) { 418 view_width = symbol->viewBox.width(); 419 view_height = symbol->viewBox.height(); 421 calculatePreserveAspectRatio(symbol 554 SPSymbol *symbol = dynamic_cast<SPSymbol *>(item); local [all...] |
/inkscape/share/extensions/ |
H A D | render_alphabetsoup.py | 261 if ( len(syntax[state]) == 1 ): # if this is a stop symbol 266 for symbol in syntax[state][1][path]: # recurse down each non-terminal 267 if ( symbol != 0 ): # 0 denotes end of list ### 268 substack = generate( symbol[0] ) # get subtree 271 if (symbol[3]):stack.append( "-" ) # top-bottom flip 272 if (symbol[4]):stack.append( "|" ) # left-right flip
|
Completed in 125 milliseconds