Searched refs:Selection (Results 1 - 25 of 130) sorted by relevance

123456

/inkscape/src/helper/
H A Daction-context.h20 class Selection;
45 Selection *_selection; /**< The selection model to which this action applies, if running in console mode. May be NULL. */
54 ActionContext(Selection *selection);
65 Selection *getSelection() const;
H A Daction-context.cpp27 ActionContext::ActionContext(Selection *selection)
53 Selection *ActionContext::getSelection() const
H A Daction.h28 class Selection;
76 Inkscape::Selection *sp_action_get_selection(SPAction *action);
/inkscape/src/
H A Dselection-describer.h22 class Selection;
26 SelectionDescriber(Inkscape::Selection *selection, MessageStack *stack, char *when_selected, char *when_nothing);
30 void _updateMessageFromSelection(Inkscape::Selection *selection);
31 void _selectionModified(Inkscape::Selection *selection, unsigned int /*flags*/);
H A Dselection.cpp44 Selection::Selection(LayerModel *layers, SPDesktop *desktop) : function in class:Inkscape::Selection
58 Selection::~Selection() {
69 void Selection::_schedule_modified(SPObject */*obj*/, guint flags) {
72 this->_idle = g_idle_add_full(SP_SELECTION_UPDATE_PRIORITY, GSourceFunc(&Selection::_emit_modified), this, NULL);
80 Selection::_emit_modified(Selection *selection)
93 void Selection::_emitModified(guint flags) {
98 void Selection
[all...]
H A Dselection-chemistry.h28 class Selection;
55 void sp_edit_clear_all(Inkscape::Selection *selection);
77 void sp_selection_group(Inkscape::Selection *selection, SPDesktop *desktop);
78 void sp_selection_ungroup(Inkscape::Selection *selection, SPDesktop *desktop);
79 void sp_selection_ungroup_pop_selection(Inkscape::Selection *selection, SPDesktop *desktop);
81 void sp_selection_raise(Inkscape::Selection *selection, SPDesktop *desktop);
82 void sp_selection_raise_to_top(Inkscape::Selection *selection, SPDesktop *desktop);
83 void sp_selection_lower(Inkscape::Selection *selection, SPDesktop *desktop);
84 void sp_selection_lower_to_bottom(Inkscape::Selection *selection, SPDesktop *desktop);
106 void sp_selection_apply_affine(Inkscape::Selection *selectio
[all...]
H A Dsplivarot.h19 class Selection;
29 void sp_selected_path_union (Inkscape::Selection *selection, SPDesktop *desktop);
30 void sp_selected_path_union_skip_undo (Inkscape::Selection *selection, SPDesktop *desktop);
31 void sp_selected_path_intersect (Inkscape::Selection *selection, SPDesktop *desktop);
32 void sp_selected_path_diff (Inkscape::Selection *selection, SPDesktop *desktop);
33 void sp_selected_path_diff_skip_undo (Inkscape::Selection *selection, SPDesktop *desktop);
34 void sp_selected_path_symdiff (Inkscape::Selection *selection, SPDesktop *desktop);
35 void sp_selected_path_cut (Inkscape::Selection *selection, SPDesktop *desktop);
36 void sp_selected_path_cut_skip_undo (Inkscape::Selection *selection, SPDesktop *desktop);
37 void sp_selected_path_slice (Inkscape::Selection *selectio
[all...]
H A Dselection.h63 class Selection : public Inkscape::GC::Managed<>, class in namespace:Inkscape
76 Selection(LayerModel *layers, SPDesktop *desktop);
77 ~Selection();
289 * @return Selection's snap points
303 sigc::connection connectChanged(sigc::slot<void, Selection *> const &slot) {
306 sigc::connection connectChangedFirst(sigc::slot<void, Selection *> const &slot)
323 sigc::connection connectModified(sigc::slot<void, Selection *, unsigned int> const &slot)
327 sigc::connection connectModifiedFirst(sigc::slot<void, Selection *, unsigned int> const &slot)
334 Selection(Selection cons
[all...]
H A Dpath-chemistry.h20 class Selection;
31 void sp_selected_path_to_curves (Inkscape::Selection *selection, SPDesktop *desktop, bool interactive = true);
H A Dselcue.h25 class Selection;
61 Selection *_selection;
H A Dinkscape.h58 Inkscape::Selection *_selection;
64 // I just copied this from the initialization of the Selection in SPDesktop.
66 _selection = Inkscape::GC::release(new Inkscape::Selection(&_layer_model, NULL));
69 Inkscape::Selection *getSelection() const { return _selection; }
138 void selection_modified (Inkscape::Selection *selection, guint flags);
139 void selection_changed (Inkscape::Selection * selection);
141 void selection_set (Inkscape::Selection * selection);
170 sigc::signal<void, Inkscape::Selection *> signal_selection_changed;
174 sigc::signal<void, Inkscape::Selection *, guint /*flags*/> signal_selection_modified;
176 sigc::signal<void, Inkscape::Selection *> signal_selection_se
[all...]
/inkscape/src/ui/widget/
H A Dstyle-subject.cpp43 StyleSubject::Selection::Selection() { function in class:Inkscape::UI::Widget::StyleSubject::Selection
46 StyleSubject::Selection::~Selection() {
49 Inkscape::Selection *StyleSubject::Selection::_getSelection() const {
58 std::vector<SPObject*> StyleSubject::Selection::list(){
59 Inkscape::Selection *selection = _getSelection();
65 Geom::OptRect StyleSubject::Selection::getBounds(SPItem::BBoxType type) {
66 Inkscape::Selection *selectio
[all...]
H A Dstyle-subject.h25 class Selection;
34 class Selection;
62 class StyleSubject::Selection : public StyleSubject { class in class:Inkscape::UI::Widget::StyleSubject
64 Selection();
65 ~Selection();
76 Inkscape::Selection *_getSelection() const;
/inkscape/src/ui/dialog/
H A Dtransformation.h116 void updateSelection(PageType page, Inkscape::Selection *selection);
202 void updatePageMove(Inkscape::Selection *);
203 void updatePageScale(Inkscape::Selection *);
204 void updatePageRotate(Inkscape::Selection *);
205 void updatePageSkew(Inkscape::Selection *);
206 void updatePageTransform(Inkscape::Selection *);
212 void applyPageMove(Inkscape::Selection *);
213 void applyPageScale(Inkscape::Selection *);
214 void applyPageRotate(Inkscape::Selection *);
215 void applyPageSkew(Inkscape::Selection *);
[all...]
H A Ddialog.h24 class Selection;
140 Inkscape::Selection* _getSelection();
/inkscape/src/widgets/
H A Dsp-widget.h29 class Selection;
52 // Selection change handlers
53 void (* modify_selection) (SPWidget *spw, Inkscape::Selection *selection, guint flags);
54 void (* change_selection) (SPWidget *spw, Inkscape::Selection *selection);
55 void (* set_selection) (SPWidget *spw, Inkscape::Selection *selection);
H A Dsp-widget.cpp59 static void modifySelectionCB(Selection *selection, guint flags, SPWidget *spw);
60 static void changeSelectionCB(Selection *selection, SPWidget *spw);
61 static void setSelectionCB(Selection *selection, SPWidget *spw);
65 void modifySelection(Selection *selection, guint flags);
66 void changeSelection(Selection *selection);
67 void setSelection(Selection *selection);
296 void SPWidgetImpl::modifySelectionCB(Selection *selection, guint flags, SPWidget *spw)
301 void SPWidgetImpl::changeSelectionCB(Selection *selection, SPWidget *spw)
306 void SPWidgetImpl::setSelectionCB(Selection *selection, SPWidget *spw)
311 void SPWidgetImpl::modifySelection(Selection *selectio
[all...]
/inkscape/src/ui/tools/
H A Darc-tool.h29 class Selection;
60 void selection_changed(Inkscape::Selection* selection);
H A Dbox3d-tool.h36 class Selection;
87 void selection_changed(Inkscape::Selection* selection);
H A Dconnector-tool.h33 class Selection;
63 Inkscape::Selection *selection;
125 void _selectionChanged(Inkscape::Selection *selection);
H A Drect-tool.h56 void selection_changed(Inkscape::Selection* selection);
H A Dstar-tool.h67 void selection_changed(Inkscape::Selection* selection);
H A Dlpe-tool.h39 class Selection;
79 void lpetool_create_measuring_items(LpeTool *lc, Inkscape::Selection *selection = NULL);
H A Dfreehand-base.h27 class Selection;
50 Inkscape::Selection *selection;
H A Dtext-tool.h88 void _selectionChanged(Inkscape::Selection *selection);
89 void _selectionModified(Inkscape::Selection *selection, guint flags);

Completed in 83 milliseconds

123456