2 * Copyright (C) 2014 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
16 * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. AND ITS CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC.
20 * OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 * @extends {WebInspector.VBox}
32 * @param {boolean} isVertical
34 WebInspector
.StackView = function(isVertical
)
36 WebInspector
.VBox
.call(this);
37 this._isVertical
= isVertical
;
38 this._currentSplitWidget
= null;
41 WebInspector
.StackView
.prototype = {
43 * @param {!WebInspector.Widget} view
44 * @param {string=} sidebarSizeSettingName
45 * @param {number=} defaultSidebarWidth
46 * @param {number=} defaultSidebarHeight
47 * @return {!WebInspector.SplitWidget}
49 appendView: function(view
, sidebarSizeSettingName
, defaultSidebarWidth
, defaultSidebarHeight
)
51 var splitWidget
= new WebInspector
.SplitWidget(this._isVertical
, true, sidebarSizeSettingName
, defaultSidebarWidth
, defaultSidebarHeight
);
52 splitWidget
.setMainWidget(view
);
53 splitWidget
.hideSidebar();
55 if (!this._currentSplitWidget
) {
56 splitWidget
.show(this.element
);
58 this._currentSplitWidget
.setSidebarWidget(splitWidget
);
59 this._currentSplitWidget
.showBoth();
62 this._currentSplitWidget
= splitWidget
;
66 detachChildWidgets: function()
68 WebInspector
.Widget
.prototype.detachChildWidgets
.call(this);
69 this._currentSplitWidget
= null;
72 __proto__
: WebInspector
.VBox
.prototype