]> git.donarmstrong.com Git - roundcube.git/blob - skins/default/splitter.js
Imported Upstream version 0.2~stable
[roundcube.git] / skins / default / splitter.js
1
2 /**
3  * RoundCube splitter GUI class
4  *
5  * @constructor
6  */
7 function rcube_splitter(attrib)
8   {
9   this.p1id = attrib.p1;
10   this.p2id = attrib.p2;
11   this.id = attrib.id ? attrib.id : this.p1id + '_' + this.p2id + '_splitter';
12   this.orientation = attrib.orientation;
13   this.horizontal = (this.orientation == 'horizontal' || this.orientation == 'h');
14   this.offset = bw.ie6 ? 2 : 0;
15   this.pos = attrib.start ? attrib.start * 1 : 0;
16   this.relative = attrib.relative ? true : false;
17   this.drag_active = false;
18
19   this.init = function()
20     {
21     this.p1 = document.getElementById(this.p1id);
22     this.p2 = document.getElementById(this.p2id);
23
24     // create and position the handle for this splitter
25     this.p1pos = rcube_get_object_pos(this.p1, this.relative);
26     this.p2pos = rcube_get_object_pos(this.p2, this.relative);
27     
28     if (this.horizontal)
29       {
30       var top = this.p1pos.y + this.p1.offsetHeight;
31       this.layer = new rcube_layer(this.id, {x: 0, y: top, height: 10, 
32             width: '100%', vis: 1, parent: this.p1.parentNode});
33       }
34     else
35       {
36       var left = this.p1pos.x + this.p1.offsetWidth;
37       this.layer = new rcube_layer(this.id, {x: left, y: 0, width: 10, 
38             height: '100%', vis: 1,  parent: this.p1.parentNode});
39       }
40
41     this.elm = this.layer.elm;
42     this.elm.className = 'splitter '+(this.horizontal ? 'splitter-h' : 'splitter-v');
43     this.elm.unselectable = 'on';
44
45     // add the mouse event listeners
46     rcube_event.add_listener({element: this.elm, event:'mousedown', object:this, method:'onDragStart'});
47     if (bw.ie)
48       rcube_event.add_listener({element: window, event:'resize', object:this, method:'onResize'});
49
50     // read saved position from cookie
51     var cookie = bw.get_cookie(this.id);
52     if (cookie && !isNaN(cookie))
53       {
54       this.pos = parseFloat(cookie);
55       this.resize();
56       }
57     else if (this.pos)
58       {
59       this.resize();
60       this.set_cookie();
61       }
62     };
63
64   /**
65    * Set size and position of all DOM objects
66    * according to the saved splitter position
67    */
68   this.resize = function()
69     {
70     if (this.horizontal)
71       {
72       var lh = this.layer.height - this.offset * 2;
73       this.p1.style.height = Math.floor(this.pos - this.p1pos.y - lh / 2) + 'px';
74       this.p2.style.top = Math.ceil(this.pos + lh / 2) + 'px';
75       this.layer.move(this.layer.x, Math.round(this.pos - lh / 2 + 1));      
76       if (bw.ie)
77         {
78         var new_height = (parseInt(this.p2.parentNode.offsetHeight) - parseInt(this.p2.style.top));
79         this.p2.style.height = (new_height > 0 ? new_height : 0) +'px';
80         }
81       }
82     else
83       {
84       this.p1.style.width = Math.floor(this.pos - this.p1pos.x - this.layer.width / 2) + 'px';
85       this.p2.style.left = Math.ceil(this.pos + this.layer.width / 2) + 'px';
86       this.layer.move(Math.round(this.pos - this.layer.width / 2 + 1), this.layer.y);
87       if (bw.ie)
88         this.p2.style.width = (parseInt(this.p2.parentNode.offsetWidth) - parseInt(this.p2.style.left))+'px';
89       }
90     };
91
92   /**
93    * Handler for mousedown events
94    */
95   this.onDragStart = function(e)
96     {
97     this.p1pos = rcube_get_object_pos(this.p1, this.relative);
98     this.p2pos = rcube_get_object_pos(this.p2, this.relative);
99     this.drag_active = true;
100     
101     // start listening to mousemove events
102     rcube_event.add_listener({element:document, event:'mousemove', object:this, method:'onDrag'});
103     rcube_event.add_listener({element:document, event:'mouseup', object:this, method:'onDragStop'});
104
105     // need to listen in any iframe documents too, b/c otherwise the splitter stops moving when we move over an iframe
106     var iframes = document.getElementsByTagName('IFRAME');
107     this.iframe_events = Object();
108     for (var n in iframes)
109       {
110       var iframedoc = null;
111       if (iframes[n].contentDocument)
112         iframedoc = iframes[n].contentDocument;
113       else if (iframes[n].contentWindow)
114         iframedoc = iframes[n].contentWindow.document;
115       else if (iframes[n].document)
116         iframedoc = iframes[n].document;
117       if (iframedoc)
118         {
119         // I don't use the add_listener function for this one because I need to create closures to fetch
120         // the position of each iframe when the event is received
121         var s = this;
122         var id = iframes[n].id;
123         this.iframe_events[n] = function(e){ e._offset = rcube_get_object_pos(document.getElementById(id)); return s.onDrag(e); }
124
125         if (iframedoc.addEventListener)
126           iframedoc.addEventListener('mousemove', this.iframe_events[n], false);
127         else if (iframes[n].attachEvent)
128           iframedoc.attachEvent('onmousemove', this.iframe_events[n]);
129         else
130           iframedoc['onmousemove'] = this.iframe_events[n];
131
132         rcube_event.add_listener({element:iframedoc, event:'mouseup', object:this, method:'onDragStop'});
133         }
134       }
135     }
136
137   /**
138    * Handler for mousemove events
139    */
140   this.onDrag = function(e)
141     {
142     if (!this.drag_active) return false;
143
144     var pos = rcube_event.get_mouse_pos(e);
145
146     if (this.relative)
147       {
148       var parent = rcube_get_object_pos(this.p1.parentNode);
149       pos.x -= parent.x;
150       pos.y -= parent.y;
151       }
152
153     if (this.horizontal)
154       {
155       if (((pos.y - this.layer.height * 1.5) > this.p1pos.y) && ((pos.y + this.layer.height * 1.5) < (this.p2pos.y + this.p2.offsetHeight)))
156         {
157         this.pos = pos.y;
158         this.resize();
159         }
160       }
161     else
162       {
163       if (((pos.x - this.layer.width * 1.5) > this.p1pos.x) && ((pos.x + this.layer.width * 1.5) < (this.p2pos.x + this.p2.offsetWidth)))
164         {
165         this.pos = pos.x;
166         this.resize();
167         }
168       }
169
170     this.p1pos = rcube_get_object_pos(this.p1, this.relative);
171     this.p2pos = rcube_get_object_pos(this.p2, this.relative);
172     return false;
173     };
174
175   /**
176    * Handler for mouseup events
177    */
178   this.onDragStop = function(e)
179     {
180     // cancel the listening for drag events
181     rcube_event.remove_listener({element:document, event:'mousemove', object:this, method:'onDrag'});
182     rcube_event.remove_listener({element:document, event:'mouseup', object:this, method:'onDragStop'});
183     this.drag_active = false;
184
185     var iframes = document.getElementsByTagName('IFRAME');
186
187     for (var n in iframes)
188       {
189       var iframedoc;
190       if (iframes[n].contentDocument)
191         iframedoc = iframes[n].contentDocument;
192       else if (iframes[n].contentWindow)
193         iframedoc = iframes[n].contentWindow.document;
194       else if (iframes[n].document)
195         iframedoc = iframes[n].document;
196       if (iframedoc)
197         {
198         if (this.iframe_events[n]) {
199           if (iframedoc.removeEventListener)
200             iframedoc.removeEventListener('mousemove', this.iframe_events[n], false);
201           else if (iframedoc.detachEvent)
202             iframedoc.detachEvent('onmousemove', this.iframe_events[n]);
203           else
204             iframedoc['onmousemove'] = null;
205           }
206
207         rcube_event.remove_listener({element:iframedoc, event:'mouseup', object:this, method:'onDragStop'});
208         }
209       }
210
211     this.set_cookie();
212
213     return bw.safari ? true : rcube_event.cancel(e);
214     };
215
216   /**
217    * Handler for window resize events
218    */
219   this.onResize = function(e)
220     {
221     if (this.horizontal)
222       {
223       var new_height = (parseInt(this.p2.parentNode.offsetHeight) - parseInt(this.p2.style.top));
224       this.p2.style.height = (new_height > 0 ? new_height : 0) +'px';
225       }
226     else
227       this.p2.style.width = (parseInt(this.p2.parentNode.offsetWidth) - parseInt(this.p2.style.left))+'px';
228     };
229
230   this.set_cookie = function()
231     {
232     // save state in cookie
233     var exp = new Date();
234     exp.setYear(exp.getFullYear() + 1);
235     bw.set_cookie(this.id, this.pos, exp);
236     }
237
238   }  // end class rcube_splitter