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. See the <a | 7 // associated with any Chrome browser windows. See the <a |
8 // href="https://github.com/GoogleChrome/chrome-app-samples/tree/master/samples/
window-state"> | 8 // href="https://github.com/GoogleChrome/chrome-app-samples/tree/master/samples/
window-state"> |
9 // Window State Sample</a> for a demonstration of these options. | 9 // Window State Sample</a> for a demonstration of these options. |
10 namespace app.window { | 10 namespace app.window { |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 // If true, the window will have its own shelf icon. Otherwise the window | 228 // If true, the window will have its own shelf icon. Otherwise the window |
229 // will be grouped in the shelf with other windows that are associated with | 229 // will be grouped in the shelf with other windows that are associated with |
230 // the app. Defaults to false. If showInShelf is set to true you need to | 230 // the app. Defaults to false. If showInShelf is set to true you need to |
231 // specify an id for the window. | 231 // specify an id for the window. |
232 boolean? showInShelf; | 232 boolean? showInShelf; |
233 | 233 |
234 // URL of the window icon. A window can have its own icon when showInShelf | 234 // URL of the window icon. A window can have its own icon when showInShelf |
235 // is set to true. The URL should be a global or an extension local URL. | 235 // is set to true. The URL should be a global or an extension local URL. |
236 DOMString? icon; | 236 DOMString? icon; |
237 | 237 |
| 238 // Title of the window. A window can have its own title when shownInShelf |
| 239 // is set to true. The title string value acts as a tooltip for the window. |
| 240 DOMString? title; |
| 241 |
238 // Frame type: <code>none</code> or <code>chrome</code> (defaults to | 242 // Frame type: <code>none</code> or <code>chrome</code> (defaults to |
239 // <code>chrome</code>). For <code>none</code>, the | 243 // <code>chrome</code>). For <code>none</code>, the |
240 // <code>-webkit-app-region</code> CSS property can be used to apply | 244 // <code>-webkit-app-region</code> CSS property can be used to apply |
241 // draggability to the app's window. <code>-webkit-app-region: drag</code> | 245 // draggability to the app's window. <code>-webkit-app-region: drag</code> |
242 // can be used to mark regions draggable. <code>no-drag</code> can be used | 246 // can be used to mark regions draggable. <code>no-drag</code> can be used |
243 // to disable this style on nested elements. | 247 // to disable this style on nested elements. |
244 // | 248 // |
245 // Use of <code>FrameOptions</code> is new in M36. | 249 // Use of <code>FrameOptions</code> is new in M36. |
246 (DOMString or FrameOptions)? frame; | 250 (DOMString or FrameOptions)? frame; |
247 | 251 |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 // Fired when the window is restored from being minimized or maximized. | 490 // Fired when the window is restored from being minimized or maximized. |
487 [nocompile] static void onRestored(); | 491 [nocompile] static void onRestored(); |
488 | 492 |
489 // Fired when the window's ability to use alpha transparency changes. | 493 // Fired when the window's ability to use alpha transparency changes. |
490 [nocompile, nodoc] static void onAlphaEnabledChanged(); | 494 [nocompile, nodoc] static void onAlphaEnabledChanged(); |
491 | 495 |
492 // Event for testing. Lets tests wait until a window has been shown. | 496 // Event for testing. Lets tests wait until a window has been shown. |
493 [nocompile, nodoc] static void onWindowFirstShown(); | 497 [nocompile, nodoc] static void onWindowFirstShown(); |
494 }; | 498 }; |
495 }; | 499 }; |
OLD | NEW |