blob: 43622960e15dbff25fb94e0dcf62aa8c4d089f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
</copyright> */
var Montage = require("montage/core/core").Montage;
var Component = require("montage/ui/component").Component;
var ToolProperties = require("js/components/tools-properties/tool-properties").ToolProperties;
exports.SelectionProperties = Montage.create(ToolProperties, {
transform: { value: null },
_controls: { value: false },
_subPrepare: {
value: function () {
this.transform.addEventListener("change", this, false);
// The functionality for these buttons is not currently implemented
// Until it is we will make them all disabled by default.
this.topAlign.disabled = true;
this.middleAlign.disabled = true;
this.bottomAlign.disabled = true;
this.leftAlign.disabled = true;
this.centerAlign.disabled = true;
this.rightAlign.disabled = true;
this.distTop.disabled = true;
this.distMiddle.disabled = true;
this.distBottom.disabled = true;
this.distLeft.disabled = true;
this.distCenter.disabled = true;
this.distRight.disabled = true;
this.arrangeBringForward.disabled = true;
this.arrangeSendBackward.disabled = true;
this.arrangeBringToFront.disabled = true;
this.arrangeSendToBack.disabled = true;
}
},
handleChange: {
value: function (event) {
this._controls = this.transform.checked;
NJevent("toolOptionsChange", { source: "SelectionProperties", inTransformMode: this.transform.checked });
}
}
});
|