3 // Split view inspired by jQuery Splitter Plugin http://methvin.com/splitter/
4 var SplitView = View.extend({
5 _className: 'SplitView',
6 splitbarClass: 'splitview-splitbar',
7 activeClass: 'splitview-active',
8 overlayClass: 'splitview-overlay',
17 init: function(element, model) {
18 this._super(element, model, null);
19 this.element.css('position', 'relative');
20 this._resizingSubviews = false;
22 this.views = $(">*", this.element[0]).css({
23 position: 'absolute', // positioned inside splitter container
24 'z-index': 1, // splitbar is positioned above
25 '-moz-outline-style': 'none', // don't show dotted outline
29 this.leftView = $(this.views[0]);
30 this.rightView = $(this.views[1]);
31 this.splitbar = $(this.views[2] || '<div></div>')
32 .insertAfter(this.leftView)
35 'user-select': 'none',
36 '-webkit-user-select': 'none',
37 '-khtml-user-select': 'none',
38 '-moz-user-select': 'none',
41 .attr('unselectable', 'on')
42 .addClass(this.splitbarClass)
43 .bind('mousedown.splitview', this.beginResize.bind(this));
45 this._splitbarWidth = this.splitbar.outerWidth();
47 // Solomon's algorithm ;-)
48 this.resplit(this.element.width() / 2);
51 beginResize: function(event) {
52 this.zombie = this.zombie || this.splitbar.clone(false).insertAfter(this.leftView);
53 this.overlay = this.overlay || $('<div></div>').addClass(this.overlayClass).css({
55 width: this.element.width(),
56 height: this.element.height(),
57 top: this.element.position().top,
58 left: this.element.position().left
59 }).appendTo(this.element);
60 this.views.css("-webkit-user-select", "none"); // Safari selects A/B text on a move
61 this.splitbar.addClass(this.activeClass);
62 this.leftViewOffset = this.leftView[0].offsetWidth - event.pageX;
65 .bind('mousemove.splitview', this.resizeChanged.bind(this))
66 .bind('mouseup.splitview', this.endResize.bind(this));
69 resizeChanged: function(event) {
70 var newPosition = event.pageX + this.leftViewOffset;
71 newPosition = Math.max(0, Math.min(newPosition, this.element.width() - this._splitbarWidth));
72 this.splitbar.css('left', newPosition);
75 endResize: function(event) {
76 var newPosition = event.pageX + this.leftViewOffset;
79 this.overlay.remove();
81 this.resplit(newPosition);
84 .unbind('mousemove.splitview')
85 .unbind('mouseup.splitview');
88 resized: function(event) {
89 if (!this._resizingSubviews) {
90 this.resplit(Math.min(this.leftView.width(), this.element.width() - this._splitbarWidth));
94 resplit: function(newPosition) {
95 newPosition = Math.max(0, Math.min(newPosition, this.element.width() - this._splitbarWidth));
96 this.splitbar.css('left', newPosition);
102 left: newPosition + this._splitbarWidth,
103 width: this.element.width() - newPosition - this._splitbarWidth
105 if (!$.browser.msie) {
106 this._resizingSubviews = true;
107 $(window).trigger('resize');
108 this._resizingSubviews = false;
112 dispose: function() {
113 this.splitter.unbind('mousedown.splitview');