Upstream version 7.35.144.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / GoToLineDialog.js
1 /*
2  * Copyright (C) 2010 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 /**
32  * @constructor
33  * @extends {WebInspector.DialogDelegate}
34  * @param {!WebInspector.SourceFrame} sourceFrame
35  */
36 WebInspector.GoToLineDialog = function(sourceFrame)
37 {
38     WebInspector.DialogDelegate.call(this);
39     
40     this.element = document.createElement("div");
41     this.element.className = "go-to-line-dialog";
42
43     this.element.createChild("label").textContent = WebInspector.UIString("Go to line: ");
44
45     this._input = this.element.createChild("input");
46     this._input.setAttribute("type", "text");
47     this._input.setAttribute("size", 6);
48
49     this._goButton = this.element.createChild("button");
50     this._goButton.textContent = WebInspector.UIString("Go");
51     this._goButton.addEventListener("click", this._onGoClick.bind(this), false);
52
53     this._sourceFrame = sourceFrame;
54 }
55
56 /**
57  * @param {!WebInspector.Panel} panel
58  * @param {function():?WebInspector.SourceFrame} sourceFrameGetter
59  */
60 WebInspector.GoToLineDialog.install = function(panel, sourceFrameGetter)
61 {
62     var goToLineShortcut = WebInspector.GoToLineDialog.createShortcut();
63     panel.registerShortcuts([goToLineShortcut], WebInspector.GoToLineDialog._show.bind(null, sourceFrameGetter));
64 }
65
66 /**
67  * @param {function():?WebInspector.SourceFrame} sourceFrameGetter
68  * @param {?Event=} event
69  * @return {boolean}
70  */
71 WebInspector.GoToLineDialog._show = function(sourceFrameGetter, event)
72 {
73     var sourceFrame = sourceFrameGetter();
74     if (!sourceFrame)
75         return false;
76     WebInspector.Dialog.show(sourceFrame.element, new WebInspector.GoToLineDialog(sourceFrame));
77     return true;
78 }
79
80 /**
81  * @return {!WebInspector.KeyboardShortcut.Descriptor}
82  */
83 WebInspector.GoToLineDialog.createShortcut = function()
84 {
85     return WebInspector.KeyboardShortcut.makeDescriptor("g", WebInspector.KeyboardShortcut.Modifiers.Ctrl);
86 }
87
88 WebInspector.GoToLineDialog.prototype = {
89     focus: function()
90     {
91         WebInspector.setCurrentFocusElement(this._input);
92         this._input.select();
93     },
94     
95     _onGoClick: function()
96     {
97         this._applyLineNumber();
98         WebInspector.Dialog.hide();
99     },
100     
101     _applyLineNumber: function()
102     {
103         var value = this._input.value;
104         var lineNumber = parseInt(value, 10) - 1;
105         if (!isNaN(lineNumber) && lineNumber >= 0)
106             this._sourceFrame.revealPosition(lineNumber, 0, true);
107     },
108     
109     onEnter: function()
110     {
111         this._applyLineNumber();
112     },
113
114     __proto__: WebInspector.DialogDelegate.prototype
115 }