Searched refs:getSelection (Results 1 - 25 of 94) sorted by relevance

1234

/inkscape/src/helper/
H A Daction-context.h65 Selection *getSelection() const;
H A Daction-context.cpp53 Selection *ActionContext::getSelection() const function in class:Inkscape::ActionContext
/inkscape/src/
H A Dmain-cmdlineact.cpp55 if (context.getDocument() == NULL || context.getSelection() == NULL) { return; }
64 Inkscape::Selection * selection = context.getSelection();
H A Dtext-chemistry.cpp83 Inkscape::Selection *selection = desktop->getSelection();
191 Inkscape::Selection *selection = desktop->getSelection();
254 Inkscape::Selection *selection = desktop->getSelection();
294 Inkscape::Selection *selection = desktop->getSelection();
371 desktop->getSelection()->set(SP_ITEM(root_object));
387 Inkscape::Selection *selection = desktop->getSelection();
472 Inkscape::Selection *selection = desktop->getSelection();
H A Dinkscape.cpp814 signal_selection_set.emit(desktop->getSelection());
815 signal_selection_changed.emit(desktop->getSelection());
838 signal_selection_set.emit(new_desktop->getSelection());
839 signal_selection_changed.emit(new_desktop->getSelection());
842 if (desktop->getSelection())
843 desktop->getSelection()->clear();
883 signal_selection_set(desktop->getSelection());
884 signal_selection_changed(desktop->getSelection());
1178 return Inkscape::ActionContext(sel_iter->second->getSelection());
/inkscape/src/ui/tools/
H A Dselect-tool.cpp262 desktop->getSelection()->set(current_layer);
457 Inkscape::Selection *selection = desktop->getSelection();
473 desktop->getSelection()->clear();
948 sp_selection_move_screen(desktop->getSelection(), mul*-10, 0); // shift
950 sp_selection_move_screen(desktop->getSelection(), mul*-1, 0); // no shift
954 sp_selection_move(desktop->getSelection(), mul*-10*nudge, 0); // shift
956 sp_selection_move(desktop->getSelection(), mul*-nudge, 0); // no shift
971 sp_selection_move_screen(desktop->getSelection(), 0, mul*10); // shift
973 sp_selection_move_screen(desktop->getSelection(), 0, mul*1); // no shift
977 sp_selection_move(desktop->getSelection(),
[all...]
H A Dspiral-tool.cpp110 SPItem *item = this->desktop->getSelection()->singleItem();
115 Inkscape::Selection *selection = this->desktop->getSelection();
147 Inkscape::Selection *selection = desktop->getSelection();
410 this->desktop->getSelection()->set(this->spiral);
418 this->desktop->getSelection()->clear();
H A Dstar-tool.cpp120 SPItem *item = this->desktop->getSelection()->singleItem();
125 Inkscape::Selection *selection = this->desktop->getSelection();
161 Inkscape::Selection *selection = desktop->getSelection();
434 desktop->getSelection()->set(this->star);
443 desktop->getSelection()->clear();
H A Darc-tool.cpp102 Inkscape::Selection *selection = this->desktop->getSelection();
106 SPItem *item = this->desktop->getSelection()->singleItem();
144 Inkscape::Selection *selection = desktop->getSelection();
435 desktop->getSelection()->set(this->arc);
444 desktop->getSelection()->clear();
H A Dbox3d-tool.cpp138 SPItem *item = this->desktop->getSelection()->singleItem();
144 this->sel_changed_connection = this->desktop->getSelection()->connectChanged(
189 Inkscape::Selection *selection = desktop->getSelection();
459 desktop->getSelection()->clear();
597 desktop->getSelection()->set(this->box3d);
H A Dlpe-tool.cpp102 Inkscape::Selection *selection = this->desktop->getSelection();
156 Inkscape::Selection * const selection = this->desktop->getSelection();
178 Inkscape::Selection *selection = desktop->getSelection();
297 Inkscape::Selection *selection = lc->desktop->getSelection();
388 selection = lc->desktop->getSelection();
H A Drect-tool.cpp104 SPItem *item = this->desktop->getSelection()->singleItem();
110 this->sel_changed_connection = this->desktop->getSelection()->connectChanged(
162 Inkscape::Selection *selection = desktop->getSelection();
468 this->desktop->getSelection()->set(this->rect);
477 this->desktop->getSelection()->clear();
H A Dcalligraphic-tool.cpp498 SPItem *selected = desktop->getSelection()->singleItem();
932 desktop->getSelection()->add(this->repr);
933 sp_selected_path_union_skip_undo(desktop->getSelection(), desktop);
935 desktop->getSelection()->add(this->repr);
936 sp_selected_path_diff_skip_undo(desktop->getSelection(), desktop);
939 desktop->getSelection()->set(this->repr);
953 result = desktop->getSelection()->singleItem();
/inkscape/src/extension/dbus/
H A Ddocument-interface.cpp242 doc_interface->target.getSelection()->layers()->currentLayer()->appendChildRepr(newNode);
243 doc_interface->target.getSelection()->layers()->currentLayer()->updateRepr();
345 sp_edit_clear_all(doc_interface->target.getSelection());
516 doc_interface->target.getSelection()->layers()->currentLayer()->appendChildRepr(newNode);
517 doc_interface->target.getSelection()->layers()->currentLayer()->updateRepr();
533 doc_interface->target.getSelection()->layers()->currentLayer()->appendChildRepr(newNode);
534 doc_interface->target.getSelection()->layers()->currentLayer()->updateRepr();
713 std::vector<SPObject*> oldsel = selection_swap(doc_interface->target.getSelection(), name, error);
716 sp_selection_move (doc_interface->target.getSelection(), x, 0 - y);
717 selection_restore(doc_interface->target.getSelection(), oldse
[all...]
/inkscape/src/extension/implementation/
H A Dimplementation.cpp49 std::vector<SPItem*> selected = ((SPDesktop *)view)->getSelection()->itemList();
/inkscape/src/extension/
H A Dexecution-env.cpp61 std::vector<SPItem*> selected = desktop->getSelection()->itemList();
195 Inkscape::Selection * selection = desktop->getSelection();
/inkscape/src/ui/widget/
H A Dstyle-subject.cpp52 return desktop->getSelection();
89 Inkscape::Selection *selection = desktop->getSelection();
/inkscape/src/widgets/
H A Darc-toolbar.cpp100 std::vector<SPItem*> itemlist=desktop->getSelection()->itemList();
166 std::vector<SPItem*> itemlist=desktop->getSelection()->itemList();
177 std::vector<SPItem*> itemlist=desktop->getSelection()->itemList();
407 changed = desktop->getSelection()->connectChanged(sigc::bind(sigc::ptr_fun(sp_arc_toolbox_selection_changed), holder));
408 sp_arc_toolbox_selection_changed(desktop->getSelection(), holder);
H A Dstar-toolbar.cpp85 Inkscape::Selection *selection = desktop->getSelection();
130 Inkscape::Selection *selection = desktop->getSelection();
180 Inkscape::Selection *selection = desktop->getSelection();
226 Inkscape::Selection *selection = desktop->getSelection();
266 Inkscape::Selection *selection = desktop->getSelection();
583 changed = desktop->getSelection()->connectChanged(sigc::bind(sigc::ptr_fun(sp_star_toolbox_selection_changed), holder));
584 sp_star_toolbox_selection_changed(desktop->getSelection(), holder);
H A Dbox3d-toolbar.cpp221 std::list<Persp3D *> sel_persps = desktop->getSelection()->perspList();
258 std::list<Persp3D *> sel_persps = SP_ACTIVE_DESKTOP->getSelection()->perspList();
423 changed = desktop->getSelection()->connectChanged(sigc::bind(sigc::ptr_fun(box3d_toolbox_selection_changed), holder));
424 box3d_toolbox_selection_changed(desktop->getSelection(), holder);
H A Dconnector-toolbar.cpp100 std::vector<SPItem*> itemlist=desktop->getSelection()->itemList();
147 std::vector<SPItem*> itemlist=desktop->getSelection()->itemList();
230 graphlayout(SP_ACTIVE_DESKTOP->getSelection()->itemList());
399 desktop->getSelection()->connectChanged(sigc::bind(sigc::ptr_fun(sp_connector_toolbox_selection_changed), holder));
H A Dspiral-toolbar.cpp82 std::vector<SPItem*> itemlist=desktop->getSelection()->itemList();
295 desktop->getSelection()->connectChanged(sigc::bind(sigc::ptr_fun(sp_spiral_toolbox_selection_changed), holder))
/inkscape/src/ui/dialog/
H A Dexport.cpp611 gint num = SP_ACTIVE_DESKTOP->getSelection()->itemList().size();
627 if ((SP_ACTIVE_DESKTOP->getSelection())->isEmpty() == false) {
665 Inkscape::Selection *selection = SP_ACTIVE_DESKTOP->getSelection();
668 (SP_ACTIVE_DESKTOP->getSelection())->isEmpty() == false &&
673 was_empty = (SP_ACTIVE_DESKTOP->getSelection())->isEmpty();
701 Sel = SP_ACTIVE_DESKTOP->getSelection();
748 if ((SP_ACTIVE_DESKTOP->getSelection())->isEmpty() == false)
750 bbox = SP_ACTIVE_DESKTOP->getSelection()->visualBounds();
815 if ((SP_ACTIVE_DESKTOP->getSelection())->isEmpty() == false) {
817 sp_selection_get_export_hints (SP_ACTIVE_DESKTOP->getSelection(), filenam
[all...]
H A Dobject-properties.cpp356 Inkscape::Selection *selection = SP_ACTIVE_DESKTOP->getSelection();
461 SPItem *item = SP_ACTIVE_DESKTOP->getSelection()->singleItem();
521 SPItem *item = SP_ACTIVE_DESKTOP->getSelection()->singleItem();
548 SPItem *item = SP_ACTIVE_DESKTOP->getSelection()->singleItem();
564 SPItem *item = SP_ACTIVE_DESKTOP->getSelection()->singleItem();
/inkscape/src/live_effects/parameter/
H A Doriginalpath.cpp127 Inkscape::Selection *selection = desktop->getSelection();

Completed in 80 milliseconds

1234