Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / sources / CSSSourceFrame.js
1 /*
2  * Copyright (C) 2013 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.UISourceCodeFrame}
34  * @param {!WebInspector.UISourceCode} uiSourceCode
35  */
36 WebInspector.CSSSourceFrame = function(uiSourceCode)
37 {
38     WebInspector.UISourceCodeFrame.call(this, uiSourceCode);
39     this._registerShortcuts();
40 }
41
42 WebInspector.CSSSourceFrame.prototype = {
43     _registerShortcuts: function()
44     {
45         var shortcutKeys = WebInspector.ShortcutsScreen.SourcesPanelShortcuts;
46         for (var i = 0; i < shortcutKeys.IncreaseCSSUnitByOne.length; ++i)
47             this.addShortcut(shortcutKeys.IncreaseCSSUnitByOne[i].key, this._handleUnitModification.bind(this, 1));
48         for (var i = 0; i < shortcutKeys.DecreaseCSSUnitByOne.length; ++i)
49             this.addShortcut(shortcutKeys.DecreaseCSSUnitByOne[i].key, this._handleUnitModification.bind(this, -1));
50         for (var i = 0; i < shortcutKeys.IncreaseCSSUnitByTen.length; ++i)
51             this.addShortcut(shortcutKeys.IncreaseCSSUnitByTen[i].key, this._handleUnitModification.bind(this, 10));
52         for (var i = 0; i < shortcutKeys.DecreaseCSSUnitByTen.length; ++i)
53             this.addShortcut(shortcutKeys.DecreaseCSSUnitByTen[i].key, this._handleUnitModification.bind(this, -10));
54     },
55
56     /**
57      * @param {string} unit
58      * @param {number} change
59      * @return {?string}
60      */
61     _modifyUnit: function(unit, change)
62     {
63         var unitValue = parseInt(unit, 10);
64         if (isNaN(unitValue))
65             return null;
66         var tail = unit.substring((unitValue).toString().length);
67         return String.sprintf("%d%s", unitValue + change, tail);
68     },
69
70     /**
71      * @param {number} change
72      * @return {boolean}
73      */
74     _handleUnitModification: function(change)
75     {
76         var selection = this.textEditor.selection().normalize();
77         var token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn);
78         if (!token) {
79             if (selection.startColumn > 0)
80                 token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn - 1);
81             if (!token)
82                 return false;
83         }
84         if (token.type !== "css-number")
85             return false;
86
87         var cssUnitRange = new WebInspector.TextRange(selection.startLine, token.startColumn, selection.startLine, token.endColumn + 1);
88         var cssUnitText = this.textEditor.copyRange(cssUnitRange);
89         var newUnitText = this._modifyUnit(cssUnitText, change);
90         if (!newUnitText)
91             return false;
92         this.textEditor.editRange(cssUnitRange, newUnitText);
93         selection.startColumn = token.startColumn;
94         selection.endColumn = selection.startColumn + newUnitText.length;
95         this.textEditor.setSelection(selection);
96         return true;
97     },
98
99     __proto__: WebInspector.UISourceCodeFrame.prototype
100 }