Searched defs:current (Results 1 - 25 of 35) sorted by relevance

12

/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 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 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 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 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 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 Ddesktop.h145 /// current selection; will never generally be NULL
179 SPCSSAttr *current; ///< current style member in class:SPDesktop
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 Dinkscape.cpp152 g_error("Attempt to unref an Application (=%p) not the current instance (=%p) (maybe it's already been destroyed?)",
158 // gets the current instance and calls autosave()
190 * Checks whether the current Inkscape::Application global object exists.
199 * Returns the current Inkscape::Application global object.
874 SPDesktop *current = _desktops->front(); local
876 signal_deactivate_desktop.emit(current);
889 * Resends ACTIVATE_DESKTOP for current desktop; needed when a new desktop has got its window that dialogs will transientize to
H A Dpreferences.cpp497 SPCSSAttr *current = getStyle(pref_path); local
498 sp_repr_css_merge(current, style);
500 sp_repr_css_write_string(current, css_str);
502 sp_repr_css_attr_unref(current);
H A Dcolor-profile.cpp492 std::set<SPObject *> current = document->getResourceList("iccprofile"); local
493 for (std::set<SPObject *>::const_iterator it = current.begin(); (!result) && (it != current.end()); ++it) {
/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)) {
H A Ddrawing-item.cpp266 Geom::Affine current; local
268 current = *_transform;
271 if (!Geom::are_near(current, new_trans, 1e-18)) {
876 guint32 saved_rgba = _drawing.outlinecolor; // save current outline color
1015 * Marks the current visual bounding box of the item for redrawing.
/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/libdepixelize/
H A Dkopftracer2011.cpp424 typename T::iterator current = --(it.base()); local
426 container.erase(current);
/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 Dtransformation.cpp73 _scalar_scale_horizontal(_("_Width:"), _("Horizontal size (absolute or percentage of current)"), UNIT_TYPE_DIMENSIONLESS,
75 _scalar_scale_vertical (_("_Height:"), _("Vertical size (absolute or percentage of current)"), UNIT_TYPE_DIMENSIONLESS,
94 _check_move_relative (_("Rela_tive move"), _("Add the specified relative displacement to the current position; otherwise, edit the current absolute position directly")),
97 _check_replace_matrix (_("Edit c_urrent matrix"), _("Edit the current transform= matrix; otherwise, post-multiply transform= by this matrix"))
143 resetButton->set_tooltip_text(_("Reset the values on the current tab to defaults"));
653 Geom::Affine current (selection->itemList()[0]->transform); // take from the first item in selection
655 Geom::Affine new_displayed = current;
1152 Geom::Affine current = selection->itemList()[0]->transform; // take from the first item in selection local
1156 new_displayed = current;
[all...]
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/src/ui/widget/
H A Dlayer-selector.cpp116 _visibility_toggle.set_tooltip_text(_("Toggle current layer visibility"));
136 _lock_toggle.set_tooltip_text(_("Lock or unlock current layer"));
164 * for the current desktop, then stores the pointer to the
166 * Then it selects the current layer for the desktop.
217 SPObject *current=(*iter)[_column]; local
218 return current == &_object;
302 /** Sets the current desktop layer to the actively selected layer.
H A Dcolor-icc-selector.cpp690 std::set<SPObject *> current = SP_ACTIVE_DOCUMENT->getResourceList("iccprofile"); local
691 for (std::set<SPObject *>::const_iterator it = current.begin(); it != current.end(); ++it) {
H A Dselected-style.cpp1477 RotateableStrokeWidth::value_adjust(double current, double by, guint /*modifier*/, bool final) argument
1482 // map negative 0..-1 to current..0
1483 newval = current * (1 + by);
1485 // map positive 0..1 to current..4*current
1486 newval = current * (1 + by) * (1 + by);
1502 return newval - current;
1508 // if this is the first motion after a mouse grab, remember the current width
/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/widgets/
H A Dege-select-one-action.cpp64 static void proxy_action_chagned_cb( GtkRadioAction* action, GtkRadioAction* current, gpointer user_data );
1125 void proxy_action_chagned_cb( GtkRadioAction* action, GtkRadioAction* current, gpointer user_data ) argument
1127 (void)current;

Completed in 3203 milliseconds

12