/inkscape/src/debug/ |
H A D | logger.cpp | 30 for ( char const *current=value ; *current ; ++current ) { 31 switch (*current) { 48 os.put(*current);
|
/inkscape/share/extensions/ |
H A D | next_glyph_layer.py | 40 current = len(glyphs)-1 46 glyphs[current].set("style", "display:none") 47 glyphs[(current+1)%len(glyphs)].set("style", "display:inline")
|
H A D | previous_glyph_layer.py | 40 current = len(glyphs)-1 46 glyphs[current].set("style", "display:none") 47 glyphs[current-1].set("style", "display:inline")
|
/inkscape/src/extension/ |
H A D | timer.cpp | 31 This function creates the timer, and sets the time to the current 32 time, plus what ever the current timeout is. Also, if this is 108 Glib::TimeVal current; local 109 current.assign_current_time(); 111 long time_left = (long)(expiration.as_double() - current.as_double()); 115 expiration = current + timeout + time_left; 121 Checks the time against the current time. 128 Glib::TimeVal current; 129 current.assign_current_time(); 130 return expiration < current; [all...] |
/inkscape/src/ |
H A D | inkview.cpp | 76 int current; member in struct:SPSlideShow 223 ss.current = 0; 225 ss.current = 0; 294 ss.doc = SPDocument::createNewDoc (ss.slides[ss.current], TRUE, false); 296 ++ss.current; 463 int current) 469 ss->current = current; 478 int current = ss->current; local 461 sp_svgview_set_document(struct SPSlideShow *ss, SPDocument *doc, int current) argument 493 int current = ss->current; local 508 int current = 0; local 526 int current = ss->length - 1; local [all...] |
H A D | profile-manager.cpp | 37 std::set<SPObject *> current = _doc->getResourceList( "iccprofile" ); local 38 for (std::set<SPObject *>::const_iterator i = current.begin(); i != current.end(); ++i)
|
H A D | resource-manager.cpp | 354 std::vector<std::string> current; local 355 current.insert(current.begin(), parts.begin(), parts.end()); 357 while ( !exists && !current.empty() ) { 360 combined.insert( combined.end(), current.begin(), current.end() ); 367 current.erase( current.begin() );
|
H A D | desktop-style.cpp | 190 sp_repr_css_merge(desktop->current, css); 263 * Return the desktop's current style. 269 sp_repr_css_merge(css, desktop->current); 282 * Return the desktop's current color. 288 gchar const *property = sp_repr_css_property(desktop->current, 292 if (desktop->current && property) { // if there is style and the property in it, 319 if (desktop->current && property) { // if there is style and the property in it, 348 if (desktop->current && property) { // if there is style and the property in it, 377 if (desktop->current && property) { // if there is style and the property in it, 393 * Apply the desktop's current styl 1511 SPIBaselineShift current; local [all...] |
H A D | dir-util.cpp | 59 /* current == "./", parent == "../" */ 62 static char const *const current = dots + 1; variable 85 if (!strcmp (path, ".") || !strcmp (path, current)) 119 else if (!strncmp (pp, current, 2))
|
H A D | rdf.cpp | 964 for (Inkscape::XML::Node const *current = repr->firstChild(); 965 current; 966 current = current->next() ) { 968 gchar const * attr = current->attribute("rdf:resource"); 972 printf("\texamining '%s' => '%s'\n", current->name(), attr); 981 printf("\t\t'%s' vs '%s'\n", current->name(), license->details[i].name); 985 if (!strcmp( current->name(),
|
H A D | sp-guide.cpp | 267 std::set<SPObject *> current = doc->getResourceList("guide"); local 268 while (!current.empty()){ 269 SPGuide* guide = SP_GUIDE(*(current.begin())); 271 current = doc->getResourceList("guide");
|
H A D | gradient-chemistry.cpp | 1417 SPGradient *current = SP_GRADIENT(ps); local 1419 //g_message("hrefcount %d count %d\n", current->hrefcount, count_gradient_hrefs(item, current)); 1421 if (!current->isSwatch() 1422 && (current->hrefcount == 1 || 1423 current->hrefcount == count_gradient_hrefs(item, current))) { 1425 // current is private and it's either used once, or all its uses are by children of item; 1428 if ( current != gr && current [all...] |
H A D | selection-chemistry.cpp | 274 * Fixes the current selection, removing locked objects from it 419 * this currently is to reset the current tool, which will reset it's 702 Inkscape::XML::Node *current = *i; local 704 if (current->parent() == topmost_parent) { 705 Inkscape::XML::Node *spnew = current->duplicate(xml_doc); 706 sp_repr_unparent(current); 713 // At this point, current may already have no item, due to its being a clone whose original is already moved away 715 gchar const *t_str = current->attribute("transform"); 719 item_t *= dynamic_cast<SPItem *>(doc->getObjectByRepr(current->parent()))->i2doc_affine(); 727 sp_selection_copy_one(current, item_ 2412 SPObject *current=root; local 3576 guint current = (int) (cu.tv_sec * 1000000 + cu.tv_usec) % 1024; local 3781 Inkscape::XML::Node *current = *i; local 3979 Inkscape::XML::Node *current = SP_OBJECT(*i)->getRepr(); local [all...] |
/inkscape/src/ui/tool/ |
H A D | selectable-control-point.cpp | 107 ColorEntry current = {0, 0}; local 111 current = activeCset.selected_normal; 114 current = activeCset.selected_mouseover; 117 current = activeCset.selected_clicked; 120 _setColors(current);
|
H A D | control-point.cpp | 548 ColorEntry current = {0, 0}; local 552 current = activeCset.normal; 555 current = activeCset.mouseover; 558 current = activeCset.clicked; 561 _setColors(current);
|
/inkscape/src/2geom/ |
H A D | coord.cpp | 271 // The current double could be a denormal. 3121 static bool ConsumeSubString(Iterator* current, 3124 ASSERT(**current == *substring); 3126 ++*current; 3127 if (*current == end || **current != *substring) return false; 3129 ++*current; 3149 static inline bool AdvanceToNonspace(Iterator* current, Iterator end) { 3150 while (*current != end) { 3151 if (!isWhitespace(**current)) retur [all...] |
/inkscape/src/display/ |
H A D | drawing-group.cpp | 50 Geom::Affine current; local 52 current = *_child_transform; 55 if (!Geom::are_near(current, new_trans, 1e-18)) {
|
H A D | drawing-pattern.cpp | 34 Geom::Affine current; local 36 current = *_pattern_to_user; 39 if (!Geom::are_near(current, new_trans, 1e-18)) {
|
/inkscape/src/ui/dialog/ |
H A D | floating-behavior.cpp | 114 float goal, current; local 115 current = _d->get_opacity(); 123 _d->set_opacity(current - ((current - goal) / 2));
|
H A D | document-properties.cpp | 495 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList( "iccprofile" ); local 496 for (std::set<SPObject *>::const_iterator it = current.begin(); it != current.end(); ++it) { 535 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList( "iccprofile" ); local 536 if (! current.empty()) { 537 _emb_profiles_observer.set((*(current.begin()))->parent); 539 for (std::set<SPObject *>::const_iterator it = current.begin(); it != current.end(); ++it) { 617 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList( "iccprofile" ); local 618 for (std::set<SPObject *>::const_iterator it = current 741 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList( "defs" ); local 978 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList( "script" ); local 1193 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList( "script" ); local 1271 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList( "script" ); local 1316 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList( "script" ); local 1340 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList( "script" ); local [all...] |
/inkscape/cxxtest/cxxtest/ |
H A D | Mock.h | 62 static Base_##MOCK ¤t(); \ 96 static Base_##MOCK ¤t(); \ 127 Base_##MOCK &Base_##MOCK::current() \ 153 return Base_##MOCK::current().NAME CALL; \ 174 Base_##MOCK::current().NAME CALL; \ 192 return CXXTEST_MOCK_NAMESPACE::Base_##MOCK::current().NAME CALL; \ 208 CXXTEST_MOCK_NAMESPACE::Base_##MOCK::current().NAME CALL; \
|
/inkscape/src/xml/ |
H A D | repr-css.cpp | 451 SPCSSAttr *current = sp_repr_css_attr(repr, attr); local 452 sp_repr_css_merge(current, css); 453 sp_repr_css_set(repr, current, attr); 455 sp_repr_css_attr_unref(current);
|
/inkscape/src/livarot/ |
H A D | PathSimplify.cpp | 76 Geom::Point &pt, double current, int lev, double st, double et) 79 return current; 92 if ( nle < current ) { 94 current = nle; 95 nle = RecDistanceToCubic(iS, hisD, m, md, pt, current, lev - 1, st, mt); 96 if ( nle < current ) { 97 current = nle; 99 nle = RecDistanceToCubic(m, md, iE, hieD, pt, current, lev - 1, mt, et); 100 if ( nle < current ) { 101 current [all...] |
/inkscape/src/helper/ |
H A D | geom-pathstroke.cpp | 116 // contains the current path that is being built on 834 void offset_curve(Geom::Path& res, Geom::Curve const* current, double width) argument 839 if (current->isDegenerate()) return; // don't do anything 843 if (Geom::BezierCurve const *b = dynamic_cast<Geom::BezierCurve const*>(current)) { 847 res.append(offset_line(static_cast<Geom::LineSegment const&>(*current), width)); 850 Geom::QuadraticBezier const& q = static_cast<Geom::QuadraticBezier const&>(*current); 855 Geom::CubicBezier const& cb = static_cast<Geom::CubicBezier const&>(*current); 860 Geom::Path sbasis_path = Geom::cubicbezierpath_from_sbasis(current->toSBasis(), tolerance); 867 Geom::Path sbasis_path = Geom::cubicbezierpath_from_sbasis(current->toSBasis(), 0.1);
|
/inkscape/src/extension/internal/ |
H A D | text_reassemble.c | 14 9. Check alignment and line spacing of preceding line with current line. 15 10. if alignment is the same, and line spacing is compatible merge current line into 16 current paragraph. Reaverage line spacing over all lines in paragraph. Check next one. 308 /* add the new font index to the alts list on the (current) fsp. */ 335 \param ymin If the pointer is defined, the value is adjusted if ymin of wc character is less than the current value. 336 \param ymax If the pointer is defined, the value is adjusted if ymin of wc character is more than the current value. 393 \brief Get the kerning for a pair of 32 bit characters, where one is the last character in the previous text block, and the other is the first in the current text block. 396 \param tsp current text object 437 \param src index of the current complex 438 \param ymax If the pointer is defined, the value is adjusted if ymax of current comple 1736 int current,idx,taln; local [all...] |