123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517 |
- /*
- * Copyright (C) 2008 Apple Inc. All Rights Reserved.
- * Copyright (C) 2011 Google Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /**
- * @constructor
- * @extends {WebInspector.Object}
- */
- WebInspector.View = function()
- {
- this.element = document.createElement("div");
- this.element.__view = this;
- this._visible = true;
- this._isRoot = false;
- this._isShowing = false;
- this._children = [];
- this._hideOnDetach = false;
- this._cssFiles = [];
- this._notificationDepth = 0;
- }
- WebInspector.View._cssFileToVisibleViewCount = {};
- WebInspector.View._cssFileToStyleElement = {};
- WebInspector.View.prototype = {
- /**
- * @return {Array.<Element>}
- */
- statusBarItems: function()
- {
- return [];
- },
- /**
- * @return {?Element}
- */
- statusBarText: function()
- {
- return null;
- },
- markAsRoot: function()
- {
- WebInspector.View._assert(!this.element.parentElement, "Attempt to mark as root attached node");
- this._isRoot = true;
- },
- markAsLayoutBoundary: function()
- {
- this.element.addStyleClass("layout-boundary");
- },
- /**
- * @return {?WebInspector.View}
- */
- parentView: function()
- {
- return this._parentView;
- },
- isShowing: function()
- {
- return this._isShowing;
- },
- setHideOnDetach: function()
- {
- this._hideOnDetach = true;
- },
- /**
- * @return {boolean}
- */
- _inNotification: function()
- {
- return !!this._notificationDepth || (this._parentView && this._parentView._inNotification());
- },
- _parentIsShowing: function()
- {
- if (this._isRoot)
- return true;
- return this._parentView && this._parentView.isShowing();
- },
- /**
- * @param {function(this:WebInspector.View)} method
- */
- _callOnVisibleChildren: function(method)
- {
- var copy = this._children.slice();
- for (var i = 0; i < copy.length; ++i) {
- if (copy[i]._parentView === this && copy[i]._visible)
- method.call(copy[i]);
- }
- },
- _processWillShow: function()
- {
- this._loadCSSIfNeeded();
- if (this.element.hasStyleClass("layout-boundary"))
- this.element.style.removeProperty("height");
- this._callOnVisibleChildren(this._processWillShow);
- },
- _processWasShown: function()
- {
- if (this._inNotification())
- return;
- this._isShowing = true;
- this.restoreScrollPositions();
- this._notify(this.wasShown);
- this._notify(this.onResize);
- this._callOnVisibleChildren(this._processWasShown);
- if (this.element.hasStyleClass("layout-boundary"))
- this.element.style.height = this.element.offsetHeight + "px";
- },
- _processWillHide: function()
- {
- if (this._inNotification())
- return;
- this.storeScrollPositions();
- this._callOnVisibleChildren(this._processWillHide);
- this._notify(this.willHide);
- this._isShowing = false;
- },
- _processWasHidden: function()
- {
- this._disableCSSIfNeeded();
- this._callOnVisibleChildren(this._processWasHidden);
- },
- _processOnResize: function()
- {
- if (this._inNotification())
- return;
- if (!this.isShowing())
- return;
- if (this.element.hasStyleClass("layout-boundary"))
- this.element.style.removeProperty("height");
- this._notify(this.onResize);
- this._callOnVisibleChildren(this._processOnResize);
- if (this.element.hasStyleClass("layout-boundary"))
- this.element.style.height = this.element.offsetHeight + "px";
- },
- /**
- * @param {function(this:WebInspector.View)} notification
- */
- _notify: function(notification)
- {
- ++this._notificationDepth;
- try {
- notification.call(this);
- } finally {
- --this._notificationDepth;
- }
- },
- wasShown: function()
- {
- },
- willHide: function()
- {
- },
- onResize: function()
- {
- },
- /**
- * @param {Element} parentElement
- * @param {Element=} insertBefore
- */
- show: function(parentElement, insertBefore)
- {
- WebInspector.View._assert(parentElement, "Attempt to attach view with no parent element");
- // Update view hierarchy
- if (this.element.parentElement !== parentElement) {
- if (this.element.parentElement)
- this.detach();
- var currentParent = parentElement;
- while (currentParent && !currentParent.__view)
- currentParent = currentParent.parentElement;
- if (currentParent) {
- this._parentView = currentParent.__view;
- this._parentView._children.push(this);
- this._isRoot = false;
- } else
- WebInspector.View._assert(this._isRoot, "Attempt to attach view to orphan node");
- } else if (this._visible)
- return;
- this._visible = true;
- if (this._parentIsShowing())
- this._processWillShow();
- this.element.addStyleClass("visible");
- // Reparent
- if (this.element.parentElement !== parentElement) {
- WebInspector.View._incrementViewCounter(parentElement, this.element);
- if (insertBefore)
- WebInspector.View._originalInsertBefore.call(parentElement, this.element, insertBefore);
- else
- WebInspector.View._originalAppendChild.call(parentElement, this.element);
- }
- if (this._parentIsShowing())
- this._processWasShown();
- },
- /**
- * @param {boolean=} overrideHideOnDetach
- */
- detach: function(overrideHideOnDetach)
- {
- var parentElement = this.element.parentElement;
- if (!parentElement)
- return;
- if (this._parentIsShowing())
- this._processWillHide();
- if (this._hideOnDetach && !overrideHideOnDetach) {
- this.element.removeStyleClass("visible");
- this._visible = false;
- if (this._parentIsShowing())
- this._processWasHidden();
- return;
- }
- // Force legal removal
- WebInspector.View._decrementViewCounter(parentElement, this.element);
- WebInspector.View._originalRemoveChild.call(parentElement, this.element);
- this._visible = false;
- if (this._parentIsShowing())
- this._processWasHidden();
- // Update view hierarchy
- if (this._parentView) {
- var childIndex = this._parentView._children.indexOf(this);
- WebInspector.View._assert(childIndex >= 0, "Attempt to remove non-child view");
- this._parentView._children.splice(childIndex, 1);
- this._parentView = null;
- } else
- WebInspector.View._assert(this._isRoot, "Removing non-root view from DOM");
- },
- detachChildViews: function()
- {
- var children = this._children.slice();
- for (var i = 0; i < children.length; ++i)
- children[i].detach();
- },
- elementsToRestoreScrollPositionsFor: function()
- {
- return [this.element];
- },
- storeScrollPositions: function()
- {
- var elements = this.elementsToRestoreScrollPositionsFor();
- for (var i = 0; i < elements.length; ++i) {
- var container = elements[i];
- container._scrollTop = container.scrollTop;
- container._scrollLeft = container.scrollLeft;
- }
- },
- restoreScrollPositions: function()
- {
- var elements = this.elementsToRestoreScrollPositionsFor();
- for (var i = 0; i < elements.length; ++i) {
- var container = elements[i];
- if (container._scrollTop)
- container.scrollTop = container._scrollTop;
- if (container._scrollLeft)
- container.scrollLeft = container._scrollLeft;
- }
- },
- canHighlightLine: function()
- {
- return false;
- },
- highlightLine: function(line)
- {
- },
- doResize: function()
- {
- this._processOnResize();
- },
- registerRequiredCSS: function(cssFile)
- {
- if (window.flattenImports)
- cssFile = cssFile.split("/").reverse()[0];
- this._cssFiles.push(cssFile);
- },
- _loadCSSIfNeeded: function()
- {
- for (var i = 0; i < this._cssFiles.length; ++i) {
- var cssFile = this._cssFiles[i];
- var viewsWithCSSFile = WebInspector.View._cssFileToVisibleViewCount[cssFile];
- WebInspector.View._cssFileToVisibleViewCount[cssFile] = (viewsWithCSSFile || 0) + 1;
- if (!viewsWithCSSFile)
- this._doLoadCSS(cssFile);
- }
- },
- _doLoadCSS: function(cssFile)
- {
- var styleElement = WebInspector.View._cssFileToStyleElement[cssFile];
- if (styleElement) {
- styleElement.disabled = false;
- return;
- }
- if (window.debugCSS) { /* debugging support */
- styleElement = document.createElement("link");
- styleElement.rel = "stylesheet";
- styleElement.type = "text/css";
- styleElement.href = cssFile;
- } else {
- var xhr = new XMLHttpRequest();
- xhr.open("GET", cssFile, false);
- xhr.send(null);
- styleElement = document.createElement("style");
- styleElement.type = "text/css";
- styleElement.textContent = xhr.responseText;
- }
- document.head.insertBefore(styleElement, document.head.firstChild);
- WebInspector.View._cssFileToStyleElement[cssFile] = styleElement;
- },
- _disableCSSIfNeeded: function()
- {
- for (var i = 0; i < this._cssFiles.length; ++i) {
- var cssFile = this._cssFiles[i];
- var viewsWithCSSFile = WebInspector.View._cssFileToVisibleViewCount[cssFile];
- viewsWithCSSFile--;
- WebInspector.View._cssFileToVisibleViewCount[cssFile] = viewsWithCSSFile;
- if (!viewsWithCSSFile)
- this._doUnloadCSS(cssFile);
- }
- },
- _doUnloadCSS: function(cssFile)
- {
- var styleElement = WebInspector.View._cssFileToStyleElement[cssFile];
- styleElement.disabled = true;
- },
- printViewHierarchy: function()
- {
- var lines = [];
- this._collectViewHierarchy("", lines);
- console.log(lines.join("\n"));
- },
- _collectViewHierarchy: function(prefix, lines)
- {
- lines.push(prefix + "[" + this.element.className + "]" + (this._children.length ? " {" : ""));
- for (var i = 0; i < this._children.length; ++i)
- this._children[i]._collectViewHierarchy(prefix + " ", lines);
- if (this._children.length)
- lines.push(prefix + "}");
- },
- /**
- * @return {Element}
- */
- defaultFocusedElement: function()
- {
- return this._defaultFocusedElement || this.element;
- },
- /**
- * @param {Element} element
- */
- setDefaultFocusedElement: function(element)
- {
- this._defaultFocusedElement = element;
- },
- focus: function()
- {
- var element = this.defaultFocusedElement();
- if (!element || element.isAncestor(document.activeElement))
- return;
- WebInspector.setCurrentFocusElement(element);
- },
- /**
- * @return {Size}
- */
- measurePreferredSize: function()
- {
- this._loadCSSIfNeeded();
- WebInspector.View._originalAppendChild.call(document.body, this.element);
- this.element.positionAt(0, 0);
- var result = new Size(this.element.offsetWidth, this.element.offsetHeight);
- this.element.positionAt(undefined, undefined);
- WebInspector.View._originalRemoveChild.call(document.body, this.element);
- this._disableCSSIfNeeded();
- return result;
- },
- __proto__: WebInspector.Object.prototype
- }
- WebInspector.View._originalAppendChild = Element.prototype.appendChild;
- WebInspector.View._originalInsertBefore = Element.prototype.insertBefore;
- WebInspector.View._originalRemoveChild = Element.prototype.removeChild;
- WebInspector.View._originalRemoveChildren = Element.prototype.removeChildren;
- WebInspector.View._incrementViewCounter = function(parentElement, childElement)
- {
- var count = (childElement.__viewCounter || 0) + (childElement.__view ? 1 : 0);
- if (!count)
- return;
- while (parentElement) {
- parentElement.__viewCounter = (parentElement.__viewCounter || 0) + count;
- parentElement = parentElement.parentElement;
- }
- }
- WebInspector.View._decrementViewCounter = function(parentElement, childElement)
- {
- var count = (childElement.__viewCounter || 0) + (childElement.__view ? 1 : 0);
- if (!count)
- return;
- while (parentElement) {
- parentElement.__viewCounter -= count;
- parentElement = parentElement.parentElement;
- }
- }
- WebInspector.View._assert = function(condition, message)
- {
- if (!condition) {
- console.trace();
- throw new Error(message);
- }
- }
- Element.prototype.appendChild = function(child)
- {
- WebInspector.View._assert(!child.__view, "Attempt to add view via regular DOM operation.");
- return WebInspector.View._originalAppendChild.call(this, child);
- }
- Element.prototype.insertBefore = function(child, anchor)
- {
- WebInspector.View._assert(!child.__view, "Attempt to add view via regular DOM operation.");
- return WebInspector.View._originalInsertBefore.call(this, child, anchor);
- }
- Element.prototype.removeChild = function(child)
- {
- WebInspector.View._assert(!child.__viewCounter && !child.__view, "Attempt to remove element containing view via regular DOM operation");
- return WebInspector.View._originalRemoveChild.call(this, child);
- }
- Element.prototype.removeChildren = function()
- {
- WebInspector.View._assert(!this.__viewCounter, "Attempt to remove element containing view via regular DOM operation");
- WebInspector.View._originalRemoveChildren.call(this);
- }
|