diff options
author | Pierre Frisch | 2011-12-22 07:25:50 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-01-27 11:18:17 -0800 |
commit | b89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch) | |
tree | 0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/panels/Color | |
parent | 2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff) | |
download | ninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz |
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/panels/Color')
40 files changed, 5538 insertions, 0 deletions
diff --git a/js/panels/Color/colorbutton-manager.js b/js/panels/Color/colorbutton-manager.js new file mode 100644 index 00000000..a189d040 --- /dev/null +++ b/js/panels/Color/colorbutton-manager.js | |||
@@ -0,0 +1,44 @@ | |||
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 | //////////////////////////////////////////////////////////////////////// | ||
8 | // | ||
9 | var Montage = require("montage/core/core").Montage, | ||
10 | Component = require("montage/ui/component").Component; | ||
11 | //////////////////////////////////////////////////////////////////////// | ||
12 | //Exporting as ColorPopupManager | ||
13 | exports.ColorButtonManager = Montage.create(Component, { | ||
14 | //////////////////////////////////////////////////////////////////// | ||
15 | // | ||
16 | hasTemplate: { | ||
17 | value: false | ||
18 | }, | ||
19 | //////////////////////////////////////////////////////////////////// | ||
20 | //Storing color manager | ||
21 | _colorManager: { | ||
22 | enumerable: false, | ||
23 | value: null | ||
24 | }, | ||
25 | //////////////////////////////////////////////////////////////////// | ||
26 | // | ||
27 | colorManager: { | ||
28 | enumerable: true, | ||
29 | get: function() { | ||
30 | return this._colorManager; | ||
31 | }, | ||
32 | set: function(value) { | ||
33 | this._colorManager = value; | ||
34 | } | ||
35 | }, | ||
36 | //////////////////////////////////////////////////////////////////// | ||
37 | // | ||
38 | _buttons: { | ||
39 | enumerable: false, | ||
40 | value: {chip: [], fill: [], stroke: [], current: [], previous: [], rgbmode: [], hslmode: [], hexinput: [], nocolor: [], reset: [], swap: [], mlabel1: [], mlabel2: [], mlabel3: []} | ||
41 | } | ||
42 | //////////////////////////////////////////////////////////////////// | ||
43 | //////////////////////////////////////////////////////////////////// | ||
44 | }); \ No newline at end of file | ||
diff --git a/js/panels/Color/colorchippopup.reel/.sass-cache/2fbca323ccf38cf180e7675ba0d8d3e07adeffea/ColorPanelPopup.scssc b/js/panels/Color/colorchippopup.reel/.sass-cache/2fbca323ccf38cf180e7675ba0d8d3e07adeffea/ColorPanelPopup.scssc new file mode 100644 index 00000000..aa8bf258 --- /dev/null +++ b/js/panels/Color/colorchippopup.reel/.sass-cache/2fbca323ccf38cf180e7675ba0d8d3e07adeffea/ColorPanelPopup.scssc | |||
Binary files differ | |||
diff --git a/js/panels/Color/colorchippopup.reel/.sass-cache/6f8390f69a31f1a976968b9c18d0824d78460db2/ColorPanelPopup.scssc b/js/panels/Color/colorchippopup.reel/.sass-cache/6f8390f69a31f1a976968b9c18d0824d78460db2/ColorPanelPopup.scssc new file mode 100644 index 00000000..fca60390 --- /dev/null +++ b/js/panels/Color/colorchippopup.reel/.sass-cache/6f8390f69a31f1a976968b9c18d0824d78460db2/ColorPanelPopup.scssc | |||
Binary files differ | |||
diff --git a/js/panels/Color/colorchippopup.reel/.sass-cache/de22270a8ac487505e8876f1cd16286e094a5127/ColorPanelBase.scssc b/js/panels/Color/colorchippopup.reel/.sass-cache/de22270a8ac487505e8876f1cd16286e094a5127/ColorPanelBase.scssc new file mode 100644 index 00000000..fd7938d8 --- /dev/null +++ b/js/panels/Color/colorchippopup.reel/.sass-cache/de22270a8ac487505e8876f1cd16286e094a5127/ColorPanelBase.scssc | |||
Binary files differ | |||
diff --git a/js/panels/Color/colorchippopup.reel/colorchippopup.html b/js/panels/Color/colorchippopup.reel/colorchippopup.html new file mode 100644 index 00000000..1ae40cc1 --- /dev/null +++ b/js/panels/Color/colorchippopup.reel/colorchippopup.html | |||
@@ -0,0 +1,63 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- | ||
3 | <copyright> | ||
4 | This file contains proprietary software owned by Motorola Mobility, Inc. | ||
5 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder. | ||
6 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
7 | </copyright> | ||
8 | --> | ||
9 | <html lang="en"> | ||
10 | <head> | ||
11 | |||
12 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
13 | |||
14 | <link rel="stylesheet" type="text/css" href="css/colorchippopup.css"> | ||
15 | |||
16 | <script type="text/montage-serialization"> | ||
17 | { | ||
18 | "owner": { | ||
19 | "module": "js/panels/Color/colorchippopup.reel", | ||
20 | "name": "colorchippopup", | ||
21 | "properties": { | ||
22 | "element": {"#": "cc_popup"} | ||
23 | } | ||
24 | } | ||
25 | } | ||
26 | </script> | ||
27 | |||
28 | </head> | ||
29 | |||
30 | <body> | ||
31 | |||
32 | <div id="cc_popup" class="cc_popup"> | ||
33 | <div id="cc_pu_options"> | ||
34 | |||
35 | <div id="cc_pu_hex">#<input id="cc_pu_hottext_hex" class="cc_pu_hottext_hex" maxlength="6" /></div> | ||
36 | |||
37 | <button id="cc_pu_wheel" title="Color Wheel">Color Wheel</button> | ||
38 | <button id="cc_pu_images" title="Background Image">Images</button> | ||
39 | <button id="cc_pu_gradients" title="Gradient">Gradients</button> | ||
40 | <button id="cc_pu_palettes" title="Color Palette">Palettes</button> | ||
41 | <button id="cc_pu_nocolor" title="No Color">No Color</button> | ||
42 | |||
43 | </div> | ||
44 | |||
45 | <div id="cc_pu_content"> | ||
46 | <div id="cc_pu_wheel_container" class="cc_pu_wheel_container"></div> | ||
47 | <div id="cc_pu_gradient_container" class="cc_pu_gradient_container"></div> | ||
48 | <div id="cc_pu_palette_container" class="cc_pu_palette_container"></div> | ||
49 | <div id="cc_pu_image_container" class="cc_pu_image_container"></div> | ||
50 | </div> | ||
51 | |||
52 | <div id="cc_pu_alpha"> | ||
53 | <div id="cc_pu_a_label">Alpha</div> | ||
54 | <div id="cc_pu_a_slider" class="cc_pu_a_slider"></div> | ||
55 | <input id="cc_pu_a_hottext" class="cc_pu_a_hottext"/> | ||
56 | <div id="cc_pu_a_label2">%</div> | ||
57 | </div> | ||
58 | |||
59 | </div> | ||
60 | |||
61 | </body> | ||
62 | |||
63 | </html> \ No newline at end of file | ||
diff --git a/js/panels/Color/colorchippopup.reel/colorchippopup.js b/js/panels/Color/colorchippopup.reel/colorchippopup.js new file mode 100644 index 00000000..03e14b28 --- /dev/null +++ b/js/panels/Color/colorchippopup.reel/colorchippopup.js | |||
@@ -0,0 +1,590 @@ | |||
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 | //////////////////////////////////////////////////////////////////////// | ||
8 | // | ||
9 | var Montage = require("montage/core/core").Montage, | ||
10 | Component = require("montage/ui/component").Component, | ||
11 | Slider = require("js/components/slider.reel").Slider, | ||
12 | Button = require("js/components/button.reel").Button, | ||
13 | HotText = require("js/components/hottext.reel").HotText, | ||
14 | ColorWheel = require("js/components/colorwheel.reel").ColorWheel, | ||
15 | GradientPicker = require("js/components/gradientpicker.reel").GradientPicker; | ||
16 | //////////////////////////////////////////////////////////////////////// | ||
17 | //Exporting as ColorPanelPopup | ||
18 | exports.ColorChipPopup = Montage.create(Component, { | ||
19 | //////////////////////////////////////////////////////////////////// | ||
20 | // | ||
21 | hasTemplate: { | ||
22 | value: true | ||
23 | }, | ||
24 | //////////////////////////////////////////////////////////////////// | ||
25 | //Storing color manager | ||
26 | _colorManager: { | ||
27 | enumerable: false, | ||
28 | value: false | ||
29 | }, | ||
30 | //////////////////////////////////////////////////////////////////// | ||
31 | //Color manager | ||
32 | colorManager: { | ||