diff options
Diffstat (limited to 'js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html')
-rwxr-xr-x | js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html new file mode 100755 index 00000000..eb4a8045 --- /dev/null +++ b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html | |||
@@ -0,0 +1,92 @@ | |||
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> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <link rel="stylesheet" type="text/css" href="new-file-options-navigator.css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "okButton": { | ||
14 | "module": "montage/ui/button.reel", | ||
15 | "name": "Button", | ||
16 | "properties": { | ||
17 | "element": {"#": "okButton"}, | ||
18 | "identifier": "okButton" | ||
19 | }, | ||
20 | "listeners": [ | ||
21 | { | ||
22 | "type": "action", | ||
23 | "listener": {"@": "owner"} | ||
24 | } | ||
25 | ] | ||
26 | }, | ||
27 | |||
28 | "cancelButton": { | ||
29 | "module": "montage/ui/button.reel", | ||
30 | "name": "Button", | ||
31 | "properties": { | ||
32 | "element": {"#": "cancelButton"}, | ||
33 | "identifier": "cancelButton" | ||
34 | }, | ||
35 | "listeners": [ | ||
36 | { | ||
37 | "type": "action", | ||
38 | "listener": {"@": "owner"} | ||
39 | } | ||
40 | ] | ||
41 | }, | ||
42 | |||
43 | "newFileLocation":{ | ||
44 | "module": "js/io/ui/new-file-dialog/new-file-location.reel", | ||
45 | "name": "NewFileLocation", | ||
46 | "properties": { | ||
47 | "element": {"#": "right-bottom"} | ||
48 | } | ||
49 | }, | ||
50 | |||
51 | "owner":{ | ||
52 | "module": "js/io/ui/new-file-dialog/new-file-options-navigator.reel", | ||
53 | "name": "NewFileOptionsNavigator", | ||
54 | "properties": { | ||
55 | "element": {"#": "newfile"}, | ||
56 | "projectTypeTree": {"#": "projectTypeTree"}, | ||
57 | "cancelButton": {"#": "cancelButton"}, | ||
58 | "okButton": {"#": "okButton"}, | ||
59 | "templateIcons": {"#": "templateIcons"}, | ||
60 | "templatesContainer": {"#": "right-top"}, | ||
61 | "locationSelection": {"#": "right-bottom"}, | ||
62 | "newFileLocation": {"@": "newFileLocation"}, | ||
63 | "error": {"#": "error"} | ||
64 | } | ||
65 | } | ||
66 | } | ||
67 | </script> | ||
68 | </head> | ||
69 | <body> | ||
70 | <div id="newfile" class="newfile"> | ||
71 | <div class="title">Create New File</div> | ||
72 | <div class="container left-nav"> | ||
73 | <div class="projectTypeHeader"><span>File Type</span></div> | ||
74 | <div id="projectTypeTree" class="projectTypeTree"></div> | ||
75 | </div> | ||
76 | <div class="container right-nav"> | ||
77 | <div id="right-top" class="right-top"> | ||
78 | <div id="templateIcons" class="templateIcons" style="display:block;"></div> | ||
79 | </div> | ||
80 | <div id="right-bottom" class="right-bottom"> | ||
81 | <div class="templateIcon">templateIcon</div> | ||
82 | <div class="selections">selections</div> | ||
83 | </div> | ||
84 | </div> | ||
85 | <div class="errorMsg"><span id="error" class="error"></span></div> | ||
86 | <div class="buttons"> | ||
87 | <input id="cancelButton" type="button" value="CANCEL" class="cancelButton nj-skinned" /> | ||
88 | <input id="okButton" disabled="true" type="button" value="OK" class="okButton nj-skinned" /> | ||
89 | </div> | ||
90 | </div> | ||
91 | </body> | ||
92 | </html> \ No newline at end of file | ||