Home | History | Annotate | Download | only in console
      1 /*
      2  * Copyright (C) 2009 Joseph Pecoraro
      3  *
      4  * Redistribution and use in source and binary forms, with or without
      5  * modification, are permitted provided that the following conditions
      6  * are met:
      7  *
      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.
     16  *
     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.
     27  */
     28 
     29 importScript("ConsoleViewMessage.js");
     30 importScript("ConsoleView.js");
     31 
     32 /**
     33  * @constructor
     34  * @extends {WebInspector.Panel}
     35  */
     36 WebInspector.ConsolePanel = function()
     37 {
     38     WebInspector.Panel.call(this, "console");
     39     this._view = WebInspector.ConsolePanel._view();
     40 }
     41 
     42 /**
     43  * @return {!WebInspector.ConsoleView}
     44  */
     45 WebInspector.ConsolePanel._view = function()
     46 {
     47     if (!WebInspector.ConsolePanel._consoleView)
     48         WebInspector.ConsolePanel._consoleView = new WebInspector.ConsoleView(!Capabilities.isMainFrontend);
     49 
     50     return WebInspector.ConsolePanel._consoleView;
     51 }
     52 
     53 WebInspector.ConsolePanel.prototype = {
     54     /**
     55      * @return {!Element}
     56      */
     57     defaultFocusedElement: function()
     58     {
     59         return this._view.defaultFocusedElement();
     60     },
     61 
     62     wasShown: function()
     63     {
     64         WebInspector.Panel.prototype.wasShown.call(this);
     65         this._view.show(this.element);
     66     },
     67 
     68     willHide: function()
     69     {
     70         WebInspector.Panel.prototype.willHide.call(this);
     71         if (WebInspector.ConsolePanel.WrapperView._instance)
     72             WebInspector.ConsolePanel.WrapperView._instance._showViewInWrapper();
     73     },
     74 
     75     __proto__: WebInspector.Panel.prototype
     76 }
     77 
     78 /**
     79  * @constructor
     80  * @extends {WebInspector.VBox}
     81  */
     82 WebInspector.ConsolePanel.WrapperView = function()
     83 {
     84     WebInspector.VBox.call(this);
     85     this.element.classList.add("console-view-wrapper");
     86 
     87     WebInspector.ConsolePanel.WrapperView._instance = this;
     88 
     89     this._view = WebInspector.ConsolePanel._view();
     90     // FIXME: this won't be needed once drawer becomes a view.
     91     this.wasShown();
     92 }
     93 
     94 WebInspector.ConsolePanel.WrapperView.prototype = {
     95     wasShown: function()
     96     {
     97         if (!WebInspector.inspectorView.currentPanel() || WebInspector.inspectorView.currentPanel().name !== "console")
     98             this._showViewInWrapper();
     99     },
    100 
    101     /**
    102      * @return {!Element}
    103      */
    104     defaultFocusedElement: function()
    105     {
    106         return this._view.defaultFocusedElement();
    107     },
    108 
    109     focus: function()
    110     {
    111         this._view.focus();
    112     },
    113 
    114     _showViewInWrapper: function()
    115     {
    116         this._view.show(this.element);
    117     },
    118 
    119     __proto__: WebInspector.VBox.prototype
    120 }
    121 
    122 /**
    123  * @constructor
    124  * @implements {WebInspector.Revealer}
    125  */
    126 WebInspector.ConsolePanel.ConsoleRevealer = function()
    127 {
    128 }
    129 
    130 WebInspector.ConsolePanel.ConsoleRevealer.prototype = {
    131     /**
    132      * @param {!Object} object
    133      */
    134     reveal: function(object)
    135     {
    136         if (!(object instanceof WebInspector.ConsoleModel))
    137             return;
    138 
    139         var consoleView = WebInspector.ConsolePanel._view();
    140         if (consoleView.isShowing()) {
    141             consoleView.focus();
    142             return;
    143         }
    144         WebInspector.inspectorView.showViewInDrawer("console");
    145     }
    146 }
    147