/inkscape/src/extension/ |
H A D | print.h | 31 unsigned int dkey; member in class:Inkscape::Extension::Print
|
/inkscape/src/extension/internal/ |
H A D | cairo-png-out.cpp | 63 unsigned dkey = SPItem::display_key_new(1); local 64 base->invoke_show(drawing, dkey, SP_ITEM_SHOW_DISPLAY); 79 base->invoke_hide(dkey);
|
H A D | cairo-ps-out.cpp | 91 unsigned dkey = SPItem::display_key_new(1); local 92 base->invoke_show(drawing, dkey, SP_ITEM_SHOW_DISPLAY); 114 base->invoke_hide(dkey);
|
H A D | cairo-renderer-pdf-out.cpp | 89 unsigned dkey = SPItem::display_key_new(1); local 90 base->invoke_show(drawing, dkey, SP_ITEM_SHOW_DISPLAY); 111 base->invoke_hide(dkey);
|
H A D | cairo-render-context.cpp | 1085 unsigned dkey = SPItem::display_key_new(1); local 1092 SP_ITEM(child)->invoke_show(drawing, dkey, SP_ITEM_REFERENCE_FLAGS); 1121 SP_ITEM(child)->invoke_hide(dkey); 1140 unsigned dkey = SPItem::display_key_new(1); local 1144 evil->show(drawing, dkey, pbox); 1146 SPHatch::RenderInfo render_info = hatch->calculateRenderInfo(dkey); 1185 _renderer->renderHatchPath(pattern_ctx, *path, dkey); 1202 evil->hide(dkey);
|
/inkscape/src/helper/ |
H A D | pixbuf-ops.cpp | 41 static void hide_other_items_recursively(SPObject *o, GSList *list, unsigned dkey) argument 51 item->invoke_hide(dkey); 57 hide_other_items_recursively(child, list, dkey); 109 unsigned dkey = SPItem::display_key_new(1); local 127 Inkscape::DrawingItem *root = doc->getRoot()->invoke_show( drawing, dkey, SP_ITEM_SHOW_DISPLAY); 134 hide_other_items_recursively(doc->getRoot(), items_only, dkey); 156 doc->getRoot()->invoke_hide(dkey);
|
H A D | png-write.cpp | 364 static void hide_other_items_recursively(SPObject *o, const std::vector<SPItem*> &list, unsigned dkey) argument 372 SP_ITEM(o)->invoke_hide(dkey); 378 hide_other_items_recursively(child, list, dkey); 451 unsigned const dkey = SPItem::display_key_new(1); local 454 drawing.setRoot(doc->getRoot()->invoke_show(drawing, dkey, SP_ITEM_SHOW_DISPLAY)); 461 hide_other_items_recursively(doc->getRoot(), items_only, dkey); 478 doc->getRoot()->invoke_hide(dkey);
|
/inkscape/src/ |
H A D | sp-pattern.cpp | 557 unsigned int dkey = SPItem::display_key_new(1); local 566 cai = SP_ITEM(child)->invoke_show(drawing, dkey, SP_ITEM_SHOW_DISPLAY); 659 SP_ITEM(child)->invoke_hide(dkey);
|
H A D | desktop.h | 187 unsigned int dkey; member in class:SPDesktop
|
H A D | inkscape.cpp | 904 Application::find_desktop_by_dkey (unsigned int dkey) argument 907 if ((*r)->dkey == dkey){ 918 unsigned int dkey = 0; local 921 if ((*r)->dkey > dkey){ 922 dkey = (*r)->dkey; 925 return dkey; 934 unsigned int dkey_current = (_desktops->front())->dkey; [all...] |
H A D | sp-item-group.cpp | 592 SPGroup::LayerMode SPGroup::layerDisplayMode(unsigned int dkey) const { 594 iter = _display_modes.find(dkey); 614 void SPGroup::setLayerDisplayMode(unsigned int dkey, SPGroup::LayerMode mode) { argument 615 if ( layerDisplayMode(dkey) != mode ) { 616 _display_modes[dkey] = mode; 617 _updateLayerMode(dkey);
|
H A D | document.cpp | 1268 static std::vector<SPItem*> &find_items_in_area(std::vector<SPItem*> &s, SPGroup *group, unsigned int dkey, Geom::Rect const &area, argument 1275 if (SP_IS_GROUP(o) && (SP_GROUP(o)->effectiveLayerMode(dkey) == SPGroup::LAYER || into_groups)) { 1276 s = find_items_in_area(s, SP_GROUP(o), dkey, area, test, take_insensitive, into_groups); 1280 if ( box && test(area, *box) && (take_insensitive || child->isVisibleAndUnlocked(dkey))) { 1308 SPItem *SPDocument::getItemFromListAtPointBottom(unsigned int dkey, SPGroup *group, std::vector<SPItem*> const &list,Geom::Point const &p, bool take_insensitive) argument 1319 Inkscape::DrawingItem *arenaitem = item->get_arenaitem(dkey); 1322 && (take_insensitive || item->isVisibleAndUnlocked(dkey))) { 1330 bottomMost = getItemFromListAtPointBottom(dkey, SP_GROUP(o), list, p, take_insensitive); 1341 void SPDocument::build_flat_item_list(unsigned int dkey, SPGroup *group, gboolean into_groups) const argument 1348 if (SP_IS_GROUP(o) && (SP_GROUP(o)->effectiveLayerMode(dkey) 1369 find_item_at_point(std::deque<SPItem*> *nodes, unsigned int dkey, Geom::Point const &p, SPItem* upto=NULL) argument 1401 find_group_at_point(unsigned int dkey, SPGroup *group, Geom::Point const &p) argument 1437 getItemsInBox(unsigned int dkey, Geom::Rect const &box, bool into_groups) const argument 1451 getItemsPartiallyInBox(unsigned int dkey, Geom::Rect const &box, bool into_groups) const argument [all...] |
H A D | sp-item.cpp | 1077 static unsigned dkey = 0; local 1079 dkey += numkeys; 1081 return dkey - numkeys;
|
/inkscape/src/ui/tools/ |
H A D | flood-tool.cpp | 761 unsigned dkey = SPItem::display_key_new(1); local 763 Inkscape::DrawingItem *root = document->getRoot()->invoke_show( drawing, dkey, SP_ITEM_SHOW_DISPLAY); 793 document->getRoot()->invoke_hide(dkey);
|