diff options
Diffstat (limited to 'js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html')
-rw-r--r-- | js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html new file mode 100644 index 00000000..c6d3da4e --- /dev/null +++ b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html | |||
@@ -0,0 +1,56 @@ | |||
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="code-editor-view-options.css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "codeCompleteCheck":{ | ||
14 | "prototype": "montage/ui/checkbox.reel", | ||
15 | "properties": { | ||
16 | "element": {"#": "codeComplete"} | ||
17 | } | ||
18 | }, | ||
19 | |||
20 | "zoomHottext": { | ||
21 | "module": "js/components/hottextunit.reel", | ||
22 | "name": "HotTextUnit", | ||
23 | "properties": { | ||
24 | "element": {"#": "zoomFont"}, | ||
25 | "minValue":100, | ||
26 | "maxValue" :200, | ||
27 | "stepSize" :10, | ||
28 | "acceptableUnits" : ["%"], | ||
29 | "units" : "%" | ||
30 | } | ||
31 | }, | ||
32 | |||
33 | "owner":{ | ||
34 | "module": "js/code-editor/ui/code-editor-view-options.reel", | ||
35 | "name": "CodeEditorViewOptions", | ||
36 | "properties": { | ||
37 | "element": {"#": "viewOptions"}, | ||
38 | "codeCompleteCheck":{"@": "codeCompleteCheck"}, | ||
39 | "zoomHottext":{"@":"zoomHottext"} | ||
40 | } | ||
41 | } | ||
42 | } | ||
43 | </script> | ||
44 | </head> | ||
45 | <body> | ||
46 | <div id="viewOptions" class="viewOptions"> | ||
47 | <div> | ||
48 | <input class="zoomFont" id="zoomFont"/> | ||
49 | <div class="autoCodeComplete" > | ||
50 | <span>Automatic Code completion</span> | ||
51 | <input type="checkbox" id="codeComplete" /> | ||
52 | </div> | ||
53 | </div> | ||
54 | </div> | ||
55 | </body> | ||
56 | </html> \ No newline at end of file | ||