123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- /*
- * Copyright (C) 2009 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:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * 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.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "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 THE COPYRIGHT
- * OWNER 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}
- * @param {!Element} element
- */
- WebInspector.StatusBarItem = function(element)
- {
- this.element = element;
- this._enabled = true;
- }
- WebInspector.StatusBarItem.prototype = {
- /**
- * @param {boolean} value
- */
- setEnabled: function(value)
- {
- if (this._enabled === value)
- return;
- this._enabled = value;
- this._applyEnabledState();
- },
- /**
- * @protected
- */
- _applyEnabledState: function()
- {
- this.element.disabled = !this._enabled;
- },
- __proto__: WebInspector.Object.prototype
- }
- /**
- * @constructor
- * @extends {WebInspector.StatusBarItem}
- * @param {string} title
- * @param {string} className
- * @param {number=} states
- */
- WebInspector.StatusBarButton = function(title, className, states)
- {
- WebInspector.StatusBarItem.call(this, document.createElement("button"));
- this.element.className = className + " status-bar-item";
- this.element.addEventListener("click", this._clicked.bind(this), false);
- this.glyph = document.createElement("div");
- this.glyph.className = "glyph";
- this.element.appendChild(this.glyph);
- this.glyphShadow = document.createElement("div");
- this.glyphShadow.className = "glyph shadow";
- this.element.appendChild(this.glyphShadow);
- this.states = states;
- if (!states)
- this.states = 2;
- if (states == 2)
- this._state = false;
- else
- this._state = 0;
- this.title = title;
- this.className = className;
- this._visible = true;
- }
- WebInspector.StatusBarButton.prototype = {
- _clicked: function()
- {
- this.dispatchEventToListeners("click");
- if (this._showOptionsTimer)
- clearTimeout(this._showOptionsTimer);
- },
- /**
- * @return {boolean}
- */
- enabled: function()
- {
- return this._enabled;
- },
- get title()
- {
- return this._title;
- },
- set title(x)
- {
- if (this._title === x)
- return;
- this._title = x;
- this.element.title = x;
- },
- get state()
- {
- return this._state;
- },
- set state(x)
- {
- if (this._state === x)
- return;
- if (this.states === 2)
- this.element.enableStyleClass("toggled-on", x);
- else {
- this.element.removeStyleClass("toggled-" + this._state);
- if (x !== 0)
- this.element.addStyleClass("toggled-" + x);
- }
- this._state = x;
- },
- get toggled()
- {
- if (this.states !== 2)
- throw("Only used toggled when there are 2 states, otherwise, use state");
- return this.state;
- },
- set toggled(x)
- {
- if (this.states !== 2)
- throw("Only used toggled when there are 2 states, otherwise, use state");
- this.state = x;
- },
- get visible()
- {
- return this._visible;
- },
- set visible(x)
- {
- if (this._visible === x)
- return;
- this.element.enableStyleClass("hidden", !x);
- this._visible = x;
- },
- /**
- * @param {function():Array.<WebInspector.StatusBarButton>} buttonsProvider
- */
- makeLongClickEnabled: function(buttonsProvider)
- {
- this.longClickGlyph = document.createElement("div");
- this.longClickGlyph.className = "fill long-click-glyph";
- this.element.appendChild(this.longClickGlyph);
-
- this.longClickGlyphShadow = document.createElement("div");
- this.longClickGlyphShadow.className = "fill long-click-glyph shadow";
- this.element.appendChild(this.longClickGlyphShadow);
- this.element.addEventListener("mousedown", mouseDown.bind(this), false);
- this.element.addEventListener("mouseout", mouseUp.bind(this), false);
- this.element.addEventListener("mouseup", mouseUp.bind(this), false);
- function mouseDown(e)
- {
- if (e.which !== 1)
- return;
- this._showOptionsTimer = setTimeout(this._showOptions.bind(this, buttonsProvider), 200);
- }
- function mouseUp(e)
- {
- if (e.which !== 1)
- return;
- if (this._showOptionsTimer)
- clearTimeout(this._showOptionsTimer);
- }
- },
- /**
- * @param {function():Array.<WebInspector.StatusBarButton>} buttonsProvider
- */
- _showOptions: function(buttonsProvider)
- {
- var buttons = buttonsProvider();
- var mainButtonClone = new WebInspector.StatusBarButton(this.title, this.className, this.states);
- mainButtonClone.addEventListener("click", this._clicked, this);
- mainButtonClone.state = this.state;
- buttons.push(mainButtonClone);
- var mouseUpListener = mouseUp.bind(this);
- document.documentElement.addEventListener("mouseup", mouseUpListener, false);
- var optionsGlassPane = new WebInspector.GlassPane();
- var optionsBarElement = optionsGlassPane.element.createChild("div", "alternate-status-bar-buttons-bar");
- const buttonHeight = 24;
- optionsBarElement.style.height = (buttonHeight * buttons.length) + "px";
- optionsBarElement.style.left = (this.element.offsetLeft + 1) + "px";
- var boundMouseOver = mouseOver.bind(this);
- var boundMouseOut = mouseOut.bind(this);
- for (var i = 0; i < buttons.length; ++i) {
- buttons[i].element.addEventListener("mousemove", boundMouseOver, false);
- buttons[i].element.addEventListener("mouseout", boundMouseOut, false);
- optionsBarElement.appendChild(buttons[i].element);
- }
- buttons[buttons.length - 1].element.addStyleClass("emulate-active");
- function mouseOver(e)
- {
- if (e.which !== 1)
- return;
- var buttonElement = e.target.enclosingNodeOrSelfWithClass("status-bar-item");
- buttonElement.addStyleClass("emulate-active");
- }
- function mouseOut(e)
- {
- if (e.which !== 1)
- return;
- var buttonElement = e.target.enclosingNodeOrSelfWithClass("status-bar-item");
- buttonElement.removeStyleClass("emulate-active");
- }
- function mouseUp(e)
- {
- if (e.which !== 1)
- return;
- optionsGlassPane.dispose();
- document.documentElement.removeEventListener("mouseup", mouseUpListener, false);
- for (var i = 0; i < buttons.length; ++i) {
- if (buttons[i].element.hasStyleClass("emulate-active"))
- buttons[i]._clicked();
- }
- }
- },
- __proto__: WebInspector.StatusBarItem.prototype
- }
- /**
- * @constructor
- * @extends {WebInspector.StatusBarItem}
- * @param {?function(Event)} changeHandler
- * @param {string=} className
- */
- WebInspector.StatusBarComboBox = function(changeHandler, className)
- {
- WebInspector.StatusBarItem.call(this, document.createElement("span"));
- this.element.className = "status-bar-select-container";
- this._selectElement = this.element.createChild("select", "status-bar-item");
- if (changeHandler)
- this._selectElement.addEventListener("change", changeHandler, false);
- if (className)
- this._selectElement.addStyleClass(className);
- }
- WebInspector.StatusBarComboBox.prototype = {
- /**
- * @return {number}
- */
- size: function()
- {
- return this._selectElement.childElementCount;
- },
- /**
- * @param {!Element} option
- */
- addOption: function(option)
- {
- this._selectElement.appendChild(option);
- },
- /**
- * @param {string} label
- * @param {string=} title
- * @param {string=} value
- * @return {!Element}
- */
- createOption: function(label, title, value)
- {
- var option = this._selectElement.createChild("option");
- option.text = label;
- if (title)
- option.title = title;
- if (typeof value !== "undefined")
- option.value = value;
- return option;
- },
- /**
- * @override
- */
- _applyEnabledState: function()
- {
- this._selectElement.disabled = !this._enabled;
- },
- /**
- * @param {!Element} option
- */
- removeOption: function(option)
- {
- this._selectElement.removeChild(option);
- },
- removeOptions: function()
- {
- this._selectElement.removeChildren();
- },
- /**
- * @return {?Element}
- */
- selectedOption: function()
- {
- if (this._selectElement.selectedIndex >= 0)
- return this._selectElement[this._selectElement.selectedIndex];
- return null;
- },
- /**
- * @param {Element} option
- */
- select: function(option)
- {
- this._selectElement.selectedIndex = Array.prototype.indexOf.call(this._selectElement, option);
- },
- __proto__: WebInspector.StatusBarItem.prototype
- }
|