Sha256: 5fe01df7bd7a199c35c6906ac4ac87ee6ffe40fa948d538e7e42d9fb9ea1ac70
Contents?: true
Size: 1.72 KB
Versions: 29
Compression:
Stored size: 1.72 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /** @class A SplitDividerView displays a divider between two views within a SplitView. Clicking and dragging the divider will change the thickness of each view either to the top/left or bottom/right of the divider. Double-clicking on the SplitDividerView will try to collapse the first view within the SplitView that has property canCollapse set to true, so it is not visible, unless you have canCollapse disabled on the SplitView. This view must be a direct child of the split view it works with. It must be surrounded by two other views. @extends SC.View @author Charles Jolley @author Lawrence Pit @author Erich Ocean @test in split */ SC.SplitDividerView = SC.View.extend( /** @scope SC.SplitDividerView.prototype */ { /** @type Array @default ['sc-split-divider-view'] @see SC.View#classNames */ classNames: ['sc-split-divider-view'], /** @private */ /** @private */ mouseDown: function(evt) { var splitView = this.get('splitView'); return (splitView) ? splitView.mouseDownInThumbView(evt, this) : sc_super(); }, /** @private */ doubleClick: function(evt) { var splitView = this.get('splitView'); return (splitView) ? splitView.doubleClickInThumbView(evt, this) : sc_super(); }, /** @private */ touchStart: function(evt){ return this.mouseDown(evt); } });
Version data entries
29 entries across 29 versions & 1 rubygems