Searched defs:mouseHandlerDict (Results 1 - 1 of 1) sorted by relevance

/inkscape/share/extensions/
H A DjessyInk.js1108 var mouseHandlerDict = new Object();
1110 mouseHandlerDict[SLIDE_MODE] = new Object();
1111 mouseHandlerDict[INDEX_MODE] = new Object();
1112 mouseHandlerDict[DRAWING_MODE] = new Object(); function
1114 mouseHandlerDict[SLIDE_MODE][MOUSE_DOWN] = function(evnt) { return dispatchEffects(1); };
1115 mouseHandlerDict[SLIDE_MODE][MOUSE_WHEEL] = function(evnt) { return slideMousewheel(evnt); };
1117 mouseHandlerDict[INDEX_MODE][MOUSE_DOWN] = function(evnt) { return toggleSlideIndex(); };
1119 mouseHandlerDict[DRAWING_MODE][MOUSE_DOWN] = function(evnt) { return drawingMousedown(evnt); };
1120 mouseHandlerDict[DRAWING_MODE][MOUSE_UP] = function(evnt) { return drawingMouseup(evnt); };
1121 mouseHandlerDict[DRAWING_MOD
[all...]

Completed in 17 milliseconds