Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / console / ConsolePanel.js
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 /**
30  * @constructor
31  * @extends {WebInspector.Panel}
32  */
33 WebInspector.ConsolePanel = function()
34 {
35     WebInspector.Panel.call(this, "console");
36     this._view = WebInspector.ConsolePanel._view();
37 }
38
39 /**
40  * @return {!WebInspector.ConsoleView}
41  */
42 WebInspector.ConsolePanel._view = function()
43 {
44     if (!WebInspector.ConsolePanel._consoleView)
45         WebInspector.ConsolePanel._consoleView = new WebInspector.ConsoleView();
46
47     return WebInspector.ConsolePanel._consoleView;
48 }
49
50 WebInspector.ConsolePanel.prototype = {
51     /**
52      * @return {!Element}
53      */
54     defaultFocusedElement: function()
55     {
56         return this._view.defaultFocusedElement();
57     },
58
59     wasShown: function()
60     {
61         WebInspector.Panel.prototype.wasShown.call(this);
62         this._view.show(this.element);
63     },
64
65     willHide: function()
66     {
67         WebInspector.Panel.prototype.willHide.call(this);
68         if (WebInspector.ConsolePanel.WrapperView._instance)
69             WebInspector.ConsolePanel.WrapperView._instance._showViewInWrapper();
70     },
71
72     __proto__: WebInspector.Panel.prototype
73 }
74
75 /**
76  * @constructor
77  * @extends {WebInspector.VBox}
78  */
79 WebInspector.ConsolePanel.WrapperView = function()
80 {
81     WebInspector.VBox.call(this);
82     this.element.classList.add("console-view-wrapper");
83
84     WebInspector.ConsolePanel.WrapperView._instance = this;
85
86     this._view = WebInspector.ConsolePanel._view();
87     // FIXME: this won't be needed once drawer becomes a view.
88     this.wasShown();
89 }
90
91 WebInspector.ConsolePanel.WrapperView.prototype = {
92     wasShown: function()
93     {
94         if (!WebInspector.inspectorView.currentPanel() || WebInspector.inspectorView.currentPanel().name !== "console")
95             this._showViewInWrapper();
96     },
97
98     /**
99      * @return {!Element}
100      */
101     defaultFocusedElement: function()
102     {
103         return this._view.defaultFocusedElement();
104     },
105
106     focus: function()
107     {
108         this._view.focus();
109     },
110
111     _showViewInWrapper: function()
112     {
113         this._view.show(this.element);
114     },
115
116     __proto__: WebInspector.VBox.prototype
117 }
118
119 /**
120  * @constructor
121  * @implements {WebInspector.Revealer}
122  */
123 WebInspector.ConsolePanel.ConsoleRevealer = function()
124 {
125 }
126
127 WebInspector.ConsolePanel.ConsoleRevealer.prototype = {
128     /**
129      * @param {!Object} object
130      */
131     reveal: function(object)
132     {
133         var consoleView = WebInspector.ConsolePanel._view();
134         if (consoleView.isShowing()) {
135             consoleView.focus();
136             return;
137         }
138         WebInspector.inspectorView.showViewInDrawer("console");
139     }
140 }