Searched refs:grab (Results 1 - 7 of 7) sorted by relevance
/inkscape/src/ui/tools/ |
H A D | pencil-tool.cpp | 154 if (!this->grab) { 156 this->grab = SP_CANVAS_ITEM(desktop->acetate); 157 sp_canvas_item_grab(this->grab, ( GDK_KEY_PRESS_MASK | GDK_BUTTON_PRESS_MASK | 238 if ( ( mevent.state & GDK_BUTTON1_MASK ) && !this->grab && this->is_drawing) { 240 this->grab = SP_CANVAS_ITEM(desktop->acetate); 241 sp_canvas_item_grab(this->grab, ( GDK_KEY_PRESS_MASK | GDK_BUTTON_PRESS_MASK | 421 if (this->grab) { 422 /* Release grab now */ 423 sp_canvas_item_ungrab(this->grab, revent.time); 424 this->grab [all...] |
H A D | freehand-base.h | 51 SPCanvasItem *grab; member in class:Inkscape::UI::Tools::FreehandBase
|
H A D | freehand-base.cpp | 83 , grab(NULL) 110 if (this->grab) { 111 sp_canvas_item_ungrab(this->grab, GDK_CURRENT_TIME); 112 this->grab = NULL; 167 if (this->grab) { 168 sp_canvas_item_ungrab(this->grab, GDK_CURRENT_TIME);
|
H A D | pen-tool.cpp | 400 if (!this->grab ) { 402 this->grab = SP_CANVAS_ITEM(desktop->acetate); 403 sp_canvas_item_grab(this->grab, ( GDK_KEY_PRESS_MASK | GDK_BUTTON_PRESS_MASK | 829 if (this->grab) { 830 // Release grab now 831 sp_canvas_item_ungrab(this->grab, revent.time); 832 this->grab = NULL;
|
H A D | select-tool.cpp | 617 _seltrans->grab(p, -1, -1, FALSE, TRUE);
|
/inkscape/src/ |
H A D | seltrans.h | 59 void grab(Geom::Point const &p, double x, double y, bool show_handles, bool translating);
|
H A D | seltrans.cpp | 253 void Inkscape::SelTrans::grab(Geom::Point const &p, gdouble x, gdouble y, bool show_handles, bool translating) function in class:Inkscape::SelTrans 521 // TODO - give a proper fix. Simple temporary work-around for the grab() issue 578 // TODO - give a proper fix. Simple temporary work-around for the grab() issue 751 grab(knot->position(), handle.x, handle.y, FALSE, FALSE);
|
Completed in 1177 milliseconds