| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Use the <code>chrome.app.window</code> API to create windows. Windows | 5 // Use the <code>chrome.app.window</code> API to create windows. Windows |
| 6 // have an optional frame with title bar and size controls. They are not | 6 // have an optional frame with title bar and size controls. They are not |
| 7 // associated with any Chrome browser windows. | 7 // associated with any Chrome browser windows. |
| 8 namespace app.window { | 8 namespace app.window { |
| 9 | 9 |
| 10 // Previously named Bounds. | 10 // Previously named Bounds. |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 // Frame type: <code>none</code> or <code>chrome</code> (defaults to | 99 // Frame type: <code>none</code> or <code>chrome</code> (defaults to |
| 100 // <code>chrome</code>).<br> | 100 // <code>chrome</code>).<br> |
| 101 // For <code>none</code>, the <code>-webkit-app-region</code> CSS property | 101 // For <code>none</code>, the <code>-webkit-app-region</code> CSS property |
| 102 // can be used to apply draggability to the app's window. | 102 // can be used to apply draggability to the app's window. |
| 103 // <code>-webkit-app-region: drag</code> can be used to mark regions | 103 // <code>-webkit-app-region: drag</code> can be used to mark regions |
| 104 // draggable. <code>no-drag</code> can be used to disable this style on | 104 // draggable. <code>no-drag</code> can be used to disable this style on |
| 105 // nested elements.<br> | 105 // nested elements.<br> |
| 106 DOMString? type; | 106 DOMString? type; |
| 107 // Allows the frame color to be set. Frame coloring is only available if the | 107 // Allows the frame color to be set. Frame coloring is only available if the |
| 108 // frame type is <code>chrome</code>.<br> | 108 // frame type is <code>chrome</code>.<br> |
| 109 // Frame coloring is experimental and only available in dev channel. | 109 // Frame coloring is new in Chrome 36. |
| 110 DOMString? color; | 110 DOMString? color; |
| 111 // Allows the frame color of the window when active to be set. Frame | 111 // Allows the frame color of the window when active to be set. Frame |
| 112 // coloring is only available if the frame type is <code>chrome</code>.<br> | 112 // coloring is only available if the frame type is <code>chrome</code>.<br> |
| 113 // Frame coloring is only available if the frame type is | 113 // Frame coloring is only available if the frame type is |
| 114 // <code>chrome</code>.<br> | 114 // <code>chrome</code>.<br> |
| 115 // Frame coloring is experimental and only available in dev channel. | 115 // Frame coloring is new in Chrome 36. |
| 116 DOMString? activeColor; | 116 DOMString? activeColor; |
| 117 // Allows the frame color of the window when inactive to be set differently | 117 // Allows the frame color of the window when inactive to be set differently |
| 118 // to the active color. Frame | 118 // to the active color. Frame |
| 119 // coloring is only available if the frame type is <code>chrome</code>.<br> | 119 // coloring is only available if the frame type is <code>chrome</code>.<br> |
| 120 // <code>inactiveColor</code> must be used in conjunction with <code> | 120 // <code>inactiveColor</code> must be used in conjunction with <code> |
| 121 // color</code>.<br> | 121 // color</code>.<br> |
| 122 // Frame coloring is experimental and only available in dev channel. | 122 // Frame coloring is new in Chrome 36. |
| 123 DOMString? inactiveColor; | 123 DOMString? inactiveColor; |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 // State of a window: normal, fullscreen, maximized, minimized. | 126 // State of a window: normal, fullscreen, maximized, minimized. |
| 127 enum State { normal, fullscreen, maximized, minimized }; | 127 enum State { normal, fullscreen, maximized, minimized }; |
| 128 | 128 |
| 129 // 'shell' is the default window type. 'panel' is managed by the OS | 129 // 'shell' is the default window type. 'panel' is managed by the OS |
| 130 // (Currently experimental, Ash only). | 130 // (Currently experimental, Ash only). |
| 131 [nodoc] enum WindowType { shell, panel }; | 131 [nodoc] enum WindowType { shell, panel }; |
| 132 | 132 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 // Fired when the window is maximized. | 420 // Fired when the window is maximized. |
| 421 [nocompile] static void onMaximized(); | 421 [nocompile] static void onMaximized(); |
| 422 | 422 |
| 423 // Fired when the window is minimized. | 423 // Fired when the window is minimized. |
| 424 [nocompile] static void onMinimized(); | 424 [nocompile] static void onMinimized(); |
| 425 | 425 |
| 426 // Fired when the window is restored from being minimized or maximized. | 426 // Fired when the window is restored from being minimized or maximized. |
| 427 [nocompile] static void onRestored(); | 427 [nocompile] static void onRestored(); |
| 428 }; | 428 }; |
| 429 }; | 429 }; |
| OLD | NEW |