Searched refs:xp (Results 1 - 19 of 19) sorted by relevance
/inkscape/src/ui/tools/ |
H A D | zoom-tool.cpp | 90 xp = (gint) event->button.x; 121 && ( abs( (gint) event->motion.x - xp ) < tolerance ) 165 xp = yp = 0; 177 xp = yp = 0;
|
H A D | spiral-tool.cpp | 180 && ( abs( (gint) event->motion.x - this->xp ) < this->tolerance ) 213 this->xp = this->yp = 0; 427 this->xp = 0;
|
H A D | star-tool.cpp | 194 && ( abs( (gint) event->motion.x - this->xp ) < this->tolerance ) 223 this->xp = this->yp = 0; 452 this->xp = 0;
|
H A D | tool-base.cpp | 95 , xp(0) 377 xp = (gint) event->button.x; 448 if (panning == 4 && !xp && !yp ) { 450 xp = event->motion.x; 469 if (within_tolerance && (abs((gint) event->motion.x - xp) 501 if (within_tolerance && (abs((gint) event->motion.x - xp) 525 xp = yp = 0; 695 xp = yp = 0; 728 xp = yp = 0;
|
H A D | arc-tool.cpp | 174 && ( abs( (gint) event->motion.x - this->xp ) < this->tolerance ) 202 this->xp = this->yp = 0; 222 this->xp = 0; 453 this->xp = 0;
|
H A D | rect-tool.cpp | 176 this->xp = (gint) button_w[Geom::X]; 212 && ( abs( (gint) event->motion.x - this->xp ) < this->tolerance ) 239 this->xp = this->yp = 0; 486 this->xp = 0;
|
H A D | box3d-tool.cpp | 205 this->xp = (gint) button_w[Geom::X]; 250 && ( abs( (gint) event->motion.x - this->xp ) < this->tolerance ) 318 this->xp = this->yp = 0;
|
H A D | select-tool.cpp | 110 //static gint xp = 0, yp = 0; // where drag started 285 xp = (gint) event->button.x; 494 xp = (gint) event->button.x; 547 && ( abs( (gint) event->motion.x - xp ) < tolerance ) 578 item_at_point = desktop->getItemAtPoint(Geom::Point(xp, yp), FALSE); 650 xp = yp = 0;
|
H A D | tool-base.h | 154 gint xp, yp; ///< where drag started member in class:Inkscape::UI::Tools::ToolBase
|
H A D | gradient-tool.cpp | 521 this->xp = (gint) button_w[Geom::X]; 554 && ( abs( (gint) event->motion.x - this->xp ) < this->tolerance ) 610 this->xp = this->yp = 0; 932 // give the grab out-of-bounds values of xp/yp because we're already dragging
|
H A D | mesh-tool.cpp | 508 this->xp = (gint) button_w[Geom::X]; 546 && ( abs( (gint) event->motion.x - this->xp ) < this->tolerance ) 620 this->xp = this->yp = 0;
|
H A D | lpe-tool.cpp | 201 this->xp = (gint) event->button.x;
|
H A D | connector-tool.cpp | 473 this->xp = bevent.x; 572 if ( ( abs( (gint) mevent.x - this->xp ) < this->tolerance ) &&
|
H A D | flood-tool.cpp | 1111 this->xp = (gint) button_w[Geom::X]; 1127 && ( abs( (gint) event->motion.x - this->xp ) < this->tolerance )
|
H A D | text-tool.cpp | 524 this->xp = (gint) event->button.x; 561 && ( abs( (gint) event->motion.x - this->xp ) < this->tolerance )
|
/inkscape/src/ |
H A D | knot.cpp | 48 static gint xp = 0, yp = 0; // where drag started variable 178 xp = x; 278 && ( abs( (gint) event->motion.x - xp ) < tolerance )
|
H A D | context-fns.cpp | 219 ec->xp = static_cast<gint>(ev->button.x);
|
H A D | desktop-events.cpp | 93 static gint xp = 0, yp = 0; // where drag started local 117 xp = (gint) event->button.x; 186 if ( ( abs( (gint) event->motion.x - xp ) < tolerance )
|
/inkscape/src/libavoid/ |
H A D | router.cpp | 1216 Point xp; local 1219 xp.x = offy; 1220 xp.y = x; 1224 xp.x = x; 1225 xp.y = offy; 1227 //db_printf("(%.1f, %.1f)\n", xp.x, xp.y); 1229 e1 = euclideanDist(start, xp); 1230 e2 = euclideanDist(xp, end);
|
Completed in 1987 milliseconds