/inkscape/src/ui/widget/ |
H A D | rotateable.cpp | 29 dragging = false; 47 dragging = true; 92 if (dragging) { 118 if (dragging && working) { 125 dragging = false; 129 dragging = false; 149 dragging = false; 156 dragging = false;
|
H A D | rotateable.h | 22 * Widget adjustable by dragging it to rotate away from a zero-change axis. 45 bool dragging; member in class:Inkscape::UI::Widget::Rotateable
|
/inkscape/src/ |
H A D | knot.h | 39 * dragging it, visuably represented by a canvas item (mostly square). 96 void setFill(guint32 normal, guint32 mouseover, guint32 dragging); 97 void setStroke(guint32 normal, guint32 mouseover, guint32 dragging); 98 void setImage(unsigned char* normal, unsigned char* mouseover, unsigned char* dragging); 100 void setCursor(GdkCursor* normal, GdkCursor* mouseover, GdkCursor* dragging); 128 * Update knot for dragging and tell canvas an item was grabbed. 152 * Set knot control state (dragging/mouseover/normal).
|
H A D | knot.cpp | 135 // This happens e.g. when deleting a node in node tool while dragging it 140 // This happens e.g. when deleting a node in node tool while dragging it 371 return false; // e.g. in case "%" was pressed to toggle snapping, or Q for quick zoom (while dragging a handle) 508 void SPKnot::setFill(guint32 normal, guint32 mouseover, guint32 dragging) { argument 511 fill[SP_KNOT_STATE_DRAGGING] = dragging; 514 void SPKnot::setStroke(guint32 normal, guint32 mouseover, guint32 dragging) { argument 517 stroke[SP_KNOT_STATE_DRAGGING] = dragging; 520 void SPKnot::setImage(guchar* normal, guchar* mouseover, guchar* dragging) { argument 523 image[SP_KNOT_STATE_DRAGGING] = dragging; 526 void SPKnot::setCursor(GdkCursor* normal, GdkCursor* mouseover, GdkCursor* dragging) { argument [all...] |
H A D | knotholder.h | 83 bool dragging; member in class:KnotHolder
|
H A D | knotholder.cpp | 60 dragging(false) 180 if (this->dragging == false) { 181 this->dragging = true; 207 this->dragging = false; 221 * that were changed by dragging the handle to SVG)
|
H A D | vanishing-point.h | 172 bool dragging; member in struct:Box3D::VPDrag
|
/inkscape/src/ui/tools/ |
H A D | dropper-tool.h | 55 bool dragging; member in class:Inkscape::UI::Tools::DropperTool
|
H A D | spiral-tool.cpp | 144 static gboolean dragging; local 157 dragging = TRUE; 178 if (dragging && (event->motion.state & GDK_BUTTON1_MASK) && !this->space_panning) { 215 dragging = FALSE; 219 // we've been dragging, finish the spiral 222 // no dragging, select clicked item if any 271 if (dragging) { 272 dragging = false; 281 if (dragging) { 284 dragging [all...] |
H A D | star-tool.cpp | 158 static bool dragging; local 171 dragging = true; 192 if (dragging && (event->motion.state & GDK_BUTTON1_MASK) && !this->space_panning) { 226 dragging = false; 231 // we've been dragging, finish the star 234 // no dragging, select clicked item if any 284 if (dragging) { 285 dragging = false; 294 if (dragging) { 297 dragging [all...] |
H A D | arc-tool.cpp | 142 static bool dragging; local 154 dragging = true; 172 if (dragging && (event->motion.state & GDK_BUTTON1_MASK) && !this->space_panning) { 204 dragging = false; 208 // we've been dragging, finish the arc 211 // no dragging, select clicked item if any 240 if (!dragging) { 266 if (dragging) { 267 dragging = false; 276 if (dragging) { [all...] |
H A D | rect-tool.cpp | 159 static bool dragging; local 183 dragging = true; 208 if ( dragging 241 dragging = false; 245 // we've been dragging, finish the rect 248 // no dragging, select clicked item if any 275 if (!dragging){ 308 if (dragging) { 309 dragging = false; 318 if (dragging) { [all...] |
H A D | dropper-tool.cpp | 71 , dragging(false) 171 this->dragging = true; 199 if (this->dragging) { 272 gchar *where = this->dragging ? g_strdup_printf(_(", averaged with radius %d"), (int) rw) : g_strdup_printf("%s", _(" under cursor")); 274 const gchar *message = this->dragging ? _("<b>Release mouse</b> to set color.") : _("<b>Click</b> to set fill, <b>Shift+click</b> to set stroke; <b>drag</b> to average color in area; with <b>Alt</b> to pick inverse color; <b>Ctrl+C</b> to copy the color under mouse to clipboard"); 291 this->dragging = false;
|
H A D | dynamic-base.h | 91 bool dragging; /* mouse state: mouse is dragging */ member in class:Inkscape::UI::Tools::DynamicBase
|
H A D | tweak-tool.h | 53 bool dragging; /* mouse state: mouse is dragging */ member in class:Inkscape::UI::Tools::TweakTool
|
H A D | select-tool.cpp | 87 , dragging(false) 187 if (this->dragging) { 188 if (this->moved) { // cancel dragging an object 191 this->dragging = FALSE; 300 this->dragging = TRUE; 336 // right click; do not eat it so that right-click menu can appear, but cancel dragging & rubberband 342 if (!desktop->isWaitingCursor() && !this->dragging) { 350 if (!desktop->isWaitingCursor() && !this->dragging) { 359 if (this->dragging && this->grabbed) { 365 if (this->dragging [all...] |
H A D | select-tool.h | 37 bool dragging; member in class:Inkscape::UI::Tools::SelectTool
|
H A D | box3d-tool.cpp | 186 static bool dragging; local 212 dragging = true; 248 if (dragging && ( event->motion.state & GDK_BUTTON1_MASK ) && !this->space_panning) { 321 dragging = false; 325 // we've been dragging, finish the box 328 // no dragging, select clicked box3d if any 460 //TODO: make dragging escapable by Esc 464 if (dragging) { 467 dragging = false; 470 // we've been dragging, finis [all...] |
H A D | spray-tool.h | 66 bool dragging; /* mouse state: mouse is dragging */ member in class:Inkscape::UI::Tools::SprayTool
|
H A D | text-tool.h | 69 guint dragging : 2; // dragging selection over text 71 bool creating; // dragging rubberband to create flowtext
|
H A D | dynamic-base.cpp | 49 , dragging(false)
|
H A D | calligraphic-tool.cpp | 426 this->dragging = false; 532 this->dragging = TRUE; 695 } else if (this->dragging && !this->hatch_escaped) { 702 } else if (this->dragging && this->hatch_escaped) { 736 if (this->dragging && event->button.button == 1 && !this->space_panning) { 737 this->dragging = FALSE;
|
H A D | text-tool.cpp | 95 , dragging(0) 276 this->dragging = 1; 292 this->dragging = 2; 303 this->dragging = 3; 308 if (event->button.button == 1 && this->dragging && !this->space_panning) { 309 this->dragging = 0; 315 if ((event->motion.state & GDK_BUTTON1_MASK) && this->dragging && !this->space_panning) { 322 if (this->dragging == 2) { 323 // double-click dragging: go by word 330 } else if (this->dragging [all...] |
H A D | eraser-tool.cpp | 364 this->dragging = FALSE; 434 this->dragging = TRUE; 466 if (this->dragging && event->button.button == 1 && !this->space_panning) { 467 this->dragging = FALSE;
|
H A D | gradient-tool.cpp | 466 static bool dragging; local 525 dragging = true; 552 if (dragging && ( event->motion.state & GDK_BUTTON1_MASK ) && !this->space_panning) { 629 dragging = false; 638 // we've been dragging, either do nothing (grdrag handles that), 654 // no dragging, select clicked item if any 726 //TODO: make dragging escapable by Esc 932 // give the grab out-of-bounds values of xp/yp because we're already dragging
|