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