aggiunta cvs var id.
[brisk.git] / web / dom-drag.js
1 /*\r
2  *  brisk - dom-drag.js\r
3  *\r
4  *  Copyright (C) 2006 matteo.nastasi@milug.org\r
5  *\r
6  * This program is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 2 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * This program is distributed in the hope that it will be useful, but\r
12  * WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
14  * General Public License for more details. You should have received a\r
15  * copy of the GNU General Public License along with this program; if\r
16  * not, write to the Free Software Foundation, Inc, 59 Temple Place -\r
17  * Suite 330, Boston, MA 02111-1307, USA.\r
18  *\r
19  * $Id$\r
20  *\r
21  */\r
22 \r
23 /**************************************************\r
24  * dom-drag.js\r
25  * 09.25.2001\r
26  * www.youngpup.net\r
27  **************************************************\r
28  * 10.28.2001 - fixed minor bug where events\r
29  * sometimes fired off the handle, not the root.\r
30  **************************************************/\r
31 \r
32 var Drag = {\r
33 \r
34         obj : null,\r
35 \r
36         init : function(o, mouseup_cb, oRoot, minX, maxX, minY, maxY, bSwapHorzRef, bSwapVertRef, fXMapper, fYMapper)\r
37         {\r
38                 o.onmousedown   = Drag.start;\r
39                 o.mouseup_cb    = mouseup_cb;\r
40 \r
41                 /*              alert("agnulla"+o.style.left); */\r
42 \r
43                 o.hmode                 = bSwapHorzRef ? false : true ;\r
44                 o.vmode                 = bSwapVertRef ? false : true ;\r
45 \r
46                 o.root = oRoot && oRoot != null ? oRoot : o ;\r
47 \r
48                 if (o.hmode && isNaN(parseInt(o.root.style.left  ))) {\r
49                         o.root.style.left = window.getComputedStyle(o, "").getPropertyValue("left");\r
50                         if (isNaN(parseInt(o.root.style.left)))\r
51                                 o.root.style.left   = "0px";\r
52                         }\r
53                 if (o.vmode  && isNaN(parseInt(o.root.style.top   ))) {\r
54                         o.root.style.top = window.getComputedStyle(o, "").getPropertyValue("top");\r
55                         if (isNaN(parseInt(o.root.style.top)))\r
56                                 o.root.style.top   = "0px";\r
57                         }\r
58                 if (!o.hmode && isNaN(parseInt(o.root.style.right ))) o.root.style.right  = "0px";\r
59                 if (!o.vmode && isNaN(parseInt(o.root.style.bottom))) o.root.style.bottom = "0px";\r
60 \r
61                 o.minX  = typeof minX != 'undefined' ? minX : null;\r
62                 o.minY  = typeof minY != 'undefined' ? minY : null;\r
63                 o.maxX  = typeof maxX != 'undefined' ? maxX : null;\r
64                 o.maxY  = typeof maxY != 'undefined' ? maxY : null;\r
65 \r
66                 o.xMapper = fXMapper ? fXMapper : null;\r
67                 o.yMapper = fYMapper ? fYMapper : null;\r
68 \r
69                 o.root.onDragStart      = new Function();\r
70                 o.root.onDragEnd        = new Function();\r
71                 o.root.onDrag           = new Function();\r
72         },\r
73 \r
74         start : function(e)\r
75         {\r
76                 var o = Drag.obj = this;\r
77                 e = Drag.fixE(e);\r
78 \r
79                 o.oldzidx = o.style.zIndex;\r
80                 o.style.zIndex = 10;\r
81 \r
82                 // alert("start");\r
83 \r
84                 var y = parseInt(o.vmode ? o.root.style.top  : o.root.style.bottom);\r
85                 var x = parseInt(o.hmode ? o.root.style.left : o.root.style.right );\r
86                 o.root.onDragStart(x, y);\r
87 \r
88                 o.lastMouseX    = e.clientX;\r
89                 o.lastMouseY    = e.clientY;\r
90 \r
91                 if (o.hmode) {\r
92                         if (o.minX != null)     o.minMouseX     = e.clientX - x + o.minX;\r
93                         if (o.maxX != null)     o.maxMouseX     = o.minMouseX + o.maxX - o.minX;\r
94                 } else {\r
95                         if (o.minX != null) o.maxMouseX = -o.minX + e.clientX + x;\r
96                         if (o.maxX != null) o.minMouseX = -o.maxX + e.clientX + x;\r
97                 }\r
98 \r
99                 if (o.vmode) {\r
100                         if (o.minY != null)     o.minMouseY     = e.clientY - y + o.minY;\r
101                         if (o.maxY != null)     o.maxMouseY     = o.minMouseY + o.maxY - o.minY;\r
102                 } else {\r
103                         if (o.minY != null) o.maxMouseY = -o.minY + e.clientY + y;\r
104                         if (o.maxY != null) o.minMouseY = -o.maxY + e.clientY + y;\r
105                 }\r
106 \r
107                 document.onmousemove    = Drag.drag;\r
108                 document.onmouseup      = Drag.end;\r
109 \r
110                 return false;\r
111         },\r
112 \r
113         drag : function(e)\r
114         {\r
115                 e = Drag.fixE(e);\r
116                 var o = Drag.obj;\r
117 \r
118                 var ey  = e.clientY;\r
119                 var ex  = e.clientX;\r
120                 var y = parseInt(o.vmode ? o.root.style.top  : o.root.style.bottom);\r
121                 var x = parseInt(o.hmode ? o.root.style.left : o.root.style.right );\r
122                 var nx, ny;\r
123 \r
124                 if (o.minX != null) ex = o.hmode ? Math.max(ex, o.minMouseX) : Math.min(ex, o.maxMouseX);\r
125                 if (o.maxX != null) ex = o.hmode ? Math.min(ex, o.maxMouseX) : Math.max(ex, o.minMouseX);\r
126                 if (o.minY != null) ey = o.vmode ? Math.max(ey, o.minMouseY) : Math.min(ey, o.maxMouseY);\r
127                 if (o.maxY != null) ey = o.vmode ? Math.min(ey, o.maxMouseY) : Math.max(ey, o.minMouseY);\r
128 \r
129                 nx = x + ((ex - o.lastMouseX) * (o.hmode ? 1 : -1));\r
130                 ny = y + ((ey - o.lastMouseY) * (o.vmode ? 1 : -1));\r
131 \r
132                 if (o.xMapper)          nx = o.xMapper(y)\r
133                 else if (o.yMapper)     ny = o.yMapper(x)\r
134 \r
135                 Drag.obj.root.style[o.hmode ? "left" : "right"] = nx + "px";\r
136                 Drag.obj.root.style[o.vmode ? "top" : "bottom"] = ny + "px";\r
137                 Drag.obj.lastMouseX     = ex;\r
138                 Drag.obj.lastMouseY     = ey;\r
139 \r
140                 Drag.obj.root.onDrag(nx, ny);\r
141                 return false;\r
142         },\r
143 \r
144         end : function(e)\r
145         {\r
146                 e = Drag.fixE(e);\r
147                 var o = Drag.obj;\r
148 \r
149                 o.style.zIndex = o.oldzidx;\r
150                 // alert("END");\r
151                 if (o.mouseup_cb != null) {\r
152                     if (o.mouseup_cb(o) == 1) {\r
153                         o.onmousedown = null;\r
154                     }\r
155                 }\r
156 \r
157                 document.onmousemove = null;\r
158                 document.onmouseup   = null;\r
159                 Drag.obj.root.onDragEnd(        parseInt(Drag.obj.root.style[Drag.obj.hmode ? "left" : "right"]), \r
160                                                                         parseInt(Drag.obj.root.style[Drag.obj.vmode ? "top" : "bottom"]));\r
161                 Drag.obj = null;\r
162         },\r
163 \r
164         fixE : function(e)\r
165         {\r
166                 if (typeof e == 'undefined') e = window.event;\r
167                 if (typeof e.layerX == 'undefined') e.layerX = e.offsetX;\r
168                 if (typeof e.layerY == 'undefined') e.layerY = e.offsetY;\r
169                 return e;\r
170         }\r
171 };\r