Searched defs:hidden (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/ui/dialog/
H A Dspellcheck.cpp225 GSList *SpellCheck::allTextItems (SPObject *r, GSList *l, bool hidden, bool locked) argument
239 if ((hidden || !desktop->itemIsHidden(SP_ITEM(child))) && (locked || !SP_ITEM(child)->isLocked())) {
244 l = allTextItems (child, l, hidden, locked);
H A Dfind.cpp86 check_include_hidden(_("Include _hidden"), _("Include hidden objects in search"), false),
740 std::vector<SPItem*> &Find::all_items (SPObject *r, std::vector<SPItem*> &l, bool hidden, bool locked) argument
753 if ((hidden || !desktop->itemIsHidden(item)) && (locked || !item->isLocked())) {
757 l = all_items (child, l, hidden, locked);
762 std::vector<SPItem*> &Find::all_selection_items (Inkscape::Selection *s, std::vector<SPItem*> &l, SPObject *ancestor, bool hidden, bool locked) argument
771 if ((hidden || !desktop->itemIsHidden(item)) && (locked || !item->isLocked())) {
777 l = all_items(item, l, hidden, locked);
814 bool hidden = check_include_hidden.get_active(); local
823 l = all_selection_items (desktop->selection, l, desktop->currentLayer(), hidden, locked);
825 l = all_selection_items (desktop->selection, l, NULL, hidden, locke
[all...]
/inkscape/src/live_effects/
H A Dlpe-knot.cpp90 //find the time interval during which patha is hidden by pathb near a given crossing.
350 interruption_width(_("Fi_xed width:"), _("Size of hidden region of lower string"), "interruption_width", &wr, this, 3),
459 Interval hidden = findShadowedTime(gpaths[i0], flag_j, ti, width/2); local
461 if (hidden.max() > period ) hidden -= period;
462 if (hidden.min()<0){
463 dom = complementOf( Interval(0,hidden.max()) ,dom);
464 dom = complementOf( Interval(hidden.min()+period, period) ,dom);
466 dom = complementOf(hidden,dom);
472 //If the all component is hidden, continu
[all...]

Completed in 873 milliseconds