2 * Copyright (C) 2007 Apple 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
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 * @extends {WebInspector.View}
33 WebInspector.SidebarPane = function(title)
35 WebInspector.View.call(this);
36 this.element.className = "sidebar-pane";
38 this.titleElement = document.createElement("div");
39 this.titleElement.className = "sidebar-pane-toolbar";
41 this.bodyElement = this.element.createChild("div", "body");
45 this._expandCallback = null;
48 WebInspector.SidebarPane.EventTypes = {
52 WebInspector.SidebarPane.prototype = {
59 * @param {function()} callback
61 prepareContent: function(callback)
69 this.prepareContent(this.onContentReady.bind(this));
72 onContentReady: function()
74 if (this._expandCallback)
75 this._expandCallback();
77 this._expandPending = true;
81 * @param {function()} callback
83 _setExpandCallback: function(callback)
85 this._expandCallback = callback;
86 if (this._expandPending) {
87 delete this._expandPending;
88 this._expandCallback();
94 WebInspector.View.prototype.wasShown.call(this);
95 this.dispatchEventToListeners(WebInspector.SidebarPane.EventTypes.wasShown);
98 __proto__: WebInspector.View.prototype
103 * @param {Element} container
104 * @param {WebInspector.SidebarPane} pane
106 WebInspector.SidebarPaneTitle = function(container, pane)
110 this.element = container.createChild("div", "sidebar-pane-title");
111 this.element.textContent = pane.title();
112 this.element.tabIndex = 0;
113 this.element.addEventListener("click", this._toggleExpanded.bind(this), false);
114 this.element.addEventListener("keydown", this._onTitleKeyDown.bind(this), false);
115 this.element.appendChild(this._pane.titleElement);
117 this._pane._setExpandCallback(this._expand.bind(this));
120 WebInspector.SidebarPaneTitle.prototype = {
124 this.element.addStyleClass("expanded");
125 this._pane.show(this.element.parentNode, this.element.nextSibling);
128 _collapse: function()
130 this.element.removeStyleClass("expanded");
131 if (this._pane.element.parentNode == this.element.parentNode)
135 _toggleExpanded: function()
137 if (this.element.hasStyleClass("expanded"))
144 * @param {Event} event
146 _onTitleKeyDown: function(event)
148 if (isEnterKey(event) || event.keyCode === WebInspector.KeyboardShortcut.Keys.Space.code)
149 this._toggleExpanded();
155 * @extends {WebInspector.View}
157 WebInspector.SidebarPaneStack = function()
159 WebInspector.View.call(this);
160 this.element.className = "sidebar-pane-stack fill";
161 this.registerRequiredCSS("sidebarPane.css");
164 WebInspector.SidebarPaneStack.prototype = {
166 * @param {WebInspector.SidebarPane} pane
168 addPane: function(pane)
170 new WebInspector.SidebarPaneTitle(this.element, pane);
173 __proto__: WebInspector.View.prototype
178 * @extends {WebInspector.TabbedPane}
180 WebInspector.SidebarTabbedPane = function()
182 WebInspector.TabbedPane.call(this);
183 this.element.addStyleClass("sidebar-tabbed-pane");
184 this.registerRequiredCSS("sidebarPane.css");
187 WebInspector.SidebarTabbedPane.prototype = {
189 * @param {WebInspector.SidebarPane} pane
191 addPane: function(pane)
193 var title = pane.title();
194 this.appendTab(title, title, pane);
195 pane.element.appendChild(pane.titleElement);
196 pane._setExpandCallback(this.selectTab.bind(this, title));
200 __proto__: WebInspector.TabbedPane.prototype