Searched refs:current (Results 1 - 25 of 45) sorted by relevance

12

/inkscape/src/debug/
H A Dlogger.cpp30 for ( char const *current=value ; *current ; ++current ) {
31 switch (*current) {
48 os.put(*current);
/inkscape/share/extensions/
H A Dnext_glyph_layer.py40 current = len(glyphs)-1
46 glyphs[current].set("style", "display:none")
47 glyphs[(current+1)%len(glyphs)].set("style", "display:inline")
H A Dprevious_glyph_layer.py40 current = len(glyphs)-1
46 glyphs[current].set("style", "display:none")
47 glyphs[current-1].set("style", "display:inline")
/inkscape/src/extension/
H A Dtimer.cpp31 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 Dinkview.cpp76 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 Dprofile-manager.cpp37 std::set<SPObject *> current = _doc->getResourceList( "iccprofile" ); local
38 for (std::set<SPObject *>::const_iterator i = current.begin(); i != current.end(); ++i)
H A Dresource-manager.cpp354 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 Ddesktop-style.cpp190 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 Ddir-util.cpp59 /* 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 Drdf.cpp964 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 Dsp-guide.cpp267 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 Dgradient-chemistry.cpp1417 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 Dselection-chemistry.cpp274 * 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 Dselectable-control-point.cpp107 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 Dcontrol-point.cpp548 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 Dcoord.cpp271 // 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 Ddrawing-group.cpp50 Geom::Affine current; local
52 current = *_child_transform;
55 if (!Geom::are_near(current, new_trans, 1e-18)) {
H A Ddrawing-pattern.cpp34 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 Dfloating-behavior.cpp114 float goal, current; local
115 current = _d->get_opacity();
123 _d->set_opacity(current - ((current - goal) / 2));
H A Ddocument-properties.cpp495 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 DMock.h62 static Base_##MOCK &current(); \
96 static Base_##MOCK &current(); \
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 Drepr-css.cpp451 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 DPathSimplify.cpp76 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 Dgeom-pathstroke.cpp116 // 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 Dtext_reassemble.c14 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...]

Completed in 182 milliseconds

12