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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/* <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,
Component = require("montage/ui/component").Component;
exports.Menu = Montage.create(Component, {
_active: {
value: false
},
active: {
get: function() {
return this._active;
},
set: function(value) {
this._active = value;
}
},
_activeEntry: {
value: null
},
activeEntry: {
get: function() {
return this._activeEntry;
},
set: function(value) {
if(this.active) {
if(this._activeEntry) this._activeEntry.deselect();
this._activeEntry = value;
this._activeEntry.select();
}
}
},
toggleActivation: {
value: function(item) {
if(this.active) {
this._activeEntry.deselect();
this._activeEntry = null;
this.active = false;
this.element.ownerDocument.removeEventListener('mousedown', this, false);
} else {
this.active = true;
this.activeEntry = item;
this.element.ownerDocument.addEventListener('mousedown', this, false);
}
}
},
prepareForDraw: {
value: function() {
}
},
handleMousedown: {
value: function(evt) {
if(this.active && (this.getZIndex(evt.target) < 9000 || evt.target.id === "topMenu")) {
this._activeEntry.deselect();
this._activeEntry = null;
this.active = false;
//console.log(this.rep.objects[1]);
//this.controller.content[1].header = "BLAH";
}
// console.log(evt.target.style['z-index']);
// console.log(this.getZIndex(evt.target));
}
},
getZIndex: {
value: function(elem) {
var position, value, zIndex;
while (elem && elem !== document) {
// position = elem.style.position;
position = document.defaultView.getComputedStyle(elem, "").getPropertyValue("position");
if (position === "absolute" || position === "relative" || position === "fixed") {
// webkit returns a string for zindex value and "" if zindex is not available
// zIndex = elem.style['z-index'];
zIndex = document.defaultView.getComputedStyle(elem, "").getPropertyValue("z-index");
value = parseInt(zIndex, 10);
if (!isNaN(value) && value !== 0) {
return value;
}
}
elem = elem.parentNode;
}
return 0;
}
}
});
|