diff options
Diffstat (limited to 'js/components')
-rw-r--r-- | js/components/toolbar.reel/toolbar.css | 14 | ||||
-rw-r--r-- | js/components/toolbar.reel/toolbar.html | 34 | ||||
-rw-r--r-- | js/components/toolbar.reel/toolbar.js | 27 | ||||
-rw-r--r-- | js/components/treeview/tree-node.js | 4 |
4 files changed, 79 insertions, 0 deletions
diff --git a/js/components/toolbar.reel/toolbar.css b/js/components/toolbar.reel/toolbar.css new file mode 100644 index 00000000..1ffae912 --- /dev/null +++ b/js/components/toolbar.reel/toolbar.css | |||
@@ -0,0 +1,14 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | .toolbar-container { | ||
7 | background-color: #474747; | ||
8 | border-bottom: 1px solid #333; | ||
9 | border-top: 1px solid #505050; | ||
10 | box-shadow: 0 4px 8px 0px rgba(0,0,0,0.75); | ||
11 | height: 22px; | ||
12 | width: 100%; | ||
13 | -webkit-box-flex: 0; | ||
14 | } \ No newline at end of file | ||
diff --git a/js/components/toolbar.reel/toolbar.html b/js/components/toolbar.reel/toolbar.html new file mode 100644 index 00000000..8ccce126 --- /dev/null +++ b/js/components/toolbar.reel/toolbar.html | |||
@@ -0,0 +1,34 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html lang="en"> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <link href="toolbar.css" rel="stylesheet" type="text/css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "owner": { | ||
14 | "module" : "js/panels/css-panel/style-sheet.reel", | ||
15 | "name" : "StyleSheet", | ||
16 | "properties" : { | ||
17 | "element" : {"#" : "toolbar-container"} | ||
18 | } | ||
19 | }, | ||
20 | "button": { | ||
21 | "module": "js/components/button.reel", | ||
22 | "name": "Button", | ||
23 | "properties": { | ||
24 | |||
25 | } | ||
26 | } | ||
27 | } | ||
28 | </script> | ||
29 | </head> | ||
30 | <body> | ||
31 | <div id="toolbar-container" class="toolbar-container"> | ||
32 | </div> | ||
33 | </body> | ||
34 | </html> \ No newline at end of file | ||
diff --git a/js/components/toolbar.reel/toolbar.js b/js/components/toolbar.reel/toolbar.js new file mode 100644 index 00000000..79e7ff1f --- /dev/null +++ b/js/components/toolbar.reel/toolbar.js | |||
@@ -0,0 +1,27 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | var Montage = require("montage/core/core").Montage, | ||
8 | Component = require("montage/ui/component").Component; | ||
9 | |||
10 | exports.Toolbar = Montage.create(Component, { | ||
11 | |||
12 | deserializedFromTemplate : { | ||
13 | value: function() { | ||
14 | console.log("toolbar - deserialized"); | ||
15 | } | ||
16 | }, | ||
17 | prepareForDraw : { | ||
18 | value: function() { | ||
19 | console.log("toolbar - prepare for draw"); | ||
20 | } | ||
21 | }, | ||
22 | draw : { | ||
23 | value: function() { | ||
24 | console.log("toolbar - draw"); | ||
25 | } | ||
26 | } | ||
27 | }); \ No newline at end of file | ||
diff --git a/js/components/treeview/tree-node.js b/js/components/treeview/tree-node.js index d7b864b5..fa6e1ba4 100644 --- a/js/components/treeview/tree-node.js +++ b/js/components/treeview/tree-node.js | |||
@@ -52,6 +52,10 @@ exports.TreeNode = Montage.create(Component, { | |||
52 | }, this); | 52 | }, this); |
53 | } | 53 | } |
54 | this._sourceObject = object; | 54 | this._sourceObject = object; |
55 | |||
56 | if(this.handleSourceObjectSet) { | ||
57 | this.handleSourceObjectSet(); | ||
58 | } | ||
55 | } | 59 | } |
56 | }, | 60 | }, |
57 | childNodes : { | 61 | childNodes : { |