Lines Matching defs:e

274 function mouseLeftClick(e) {
275 if (3 == e.which) mouseRightClick(e);
278 var mx = e.clientX - clrect.left;
279 var my = e.clientY - clrect.top;
354 function mouseRightClick(e) {
355 //drawPos(e.pageX, e.pageY);
356 //cood = { x:e.pageX, y:e.pageY }
372 function pathEditMouseDown(e){
374 var mx = e.clientX - clrect.left;
375 var my = e.clientY - clrect.top;
397 if(selectobj[n].tool === "path" && e.ctrlKey){
492 function selectMouseDown(e){
494 var mx = e.clientX - clrect.left;
495 var my = e.clientY - clrect.top;
542 function mouseDown(e){
544 cur_tool.mouseDown(e);
547 function mouseUp(e){
549 cur_tool.mouseUp(e);
552 function selectMouseMove(e){
554 var mx = (gridEnable ? Math.round(e.clientX / gridSize) * gridSize : e.clientX) - clrect.left;
555 var my = (gridEnable ? Math.round(e.clientY / gridSize) * gridSize : e.clientY) - clrect.top;
629 // We could use e.buttons to check if it's supported by all the browsers,
650 function pathEditMouseMove(e){
652 var mx = (gridEnable ? Math.round(e.clientX / gridSize) * gridSize : e.clientX) - clrect.left;
653 var my = (gridEnable ? Math.round(e.clientY / gridSize) * gridSize : e.clientY) - clrect.top;
698 if(!e.altKey && pointMovingCP === "d" && pointMovingIdx + 1 < pointMoving.points.length){
710 else if(!e.altKey && pointMovingCP === "c" && 0 <= pointMovingIdx - 1){
728 function mouseMove(e){
730 cur_tool.mouseMove(e);
733 function mouseleave(e){
741 function viewModeClick(e){
743 var mx = (gridEnable ? Math.round(e.clientX / gridSize) * gridSize : e.clientX) - clrect.left;
744 var my = (gridEnable ? Math.round(e.clientY / gridSize) * gridSize : e.clientY) - clrect.top;
753 if(dobjs[i].viewModeClick(e))
760 function keyDown(e){
761 e = e || window.event;
763 cur_tool.keyDown(e);
1123 TextShape.prototype.viewModeClick = function(e){
1247 } catch(e){
1248 console.log(e);
1280 } catch(e){
1281 debug(e);
1303 catch(e){
1304 console.log(e);
1342 catch(e){
1343 debug(e);
1371 catch(e){
1372 console.log(e);
1546 } catch(e){
1547 console.log(e);
1874 Tool.prototype.mouseDown = function(e){
1878 Tool.prototype.mouseMove = function(e){
1881 var mx = (gridEnable ? Math.round(e.clientX / gridSize) * gridSize : e.clientX) - clrect.left;
1882 var my = (gridEnable ? Math.round(e.clientY / gridSize) * gridSize : e.clientY) - clrect.top;
1890 Tool.prototype.mouseUp = function(e){
1900 Tool.prototype.keyDown = function(e){
1901 var code = e.keyCode || e.which;
1957 mouseUp: function(e){
1960 Tool.prototype.mouseUp.call(this, e);
1983 mouseUp: function(e){
1986 Tool.prototype.mouseUp.call(this, e);
1988 keyDown: function(e){
1989 var code = e.keyCode || e.which;
2291 lay.textInput.onkeyup = function(e){
2293 if(e.keyCode === 13)
2312 okbutton.onclick = function(e){
2540 mouseDown: function(e){
2543 var mx = e.clientX - clrect.left;
2544 var my = e.clientY - clrect.top;
2552 mouseMove: function(e){
2556 var mx = e.clientX - clrect.left;
2557 var my = e.clientY - clrect.top;
2584 mouseUp: function(e){
2676 catch(e){
2681 catch(e){
2685 catch(e){