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
|
public class DayEvent extends CustomNode{
...
Rectangle {
x: 1
y: bind graphicEventY
width: DayComponents.rowsWidth - 2
height: bind graphicEventHeight-15
fill: Color.TRANSPARENT
cursor: Cursor.HAND
visible: bind canModify
onMouseDragged: function(e:MouseEvent) {
if (isSetToFront == false) {
this.setToFront();
isSetToFront = true;
}
eventOpacity = 0.5;
graphicEventY = DayController.moveEvent(event, initEventY, e.dragY, initStartEventHour, initStartEventMinutes, initEndEventHour, initEndEventMinutes);
}
}
...
function setToFront() {
this.toFront();
}
...
} |
Partager