kopia lustrzana https://github.com/backface/turtlestitch
support for copy-on-write worlds
rodzic
6a5be3776d
commit
6820fe8156
34
morphic.js
34
morphic.js
|
@ -551,10 +551,23 @@
|
||||||
|
|
||||||
Right before a morph is picked up its
|
Right before a morph is picked up its
|
||||||
|
|
||||||
|
selectForEdit
|
||||||
|
|
||||||
|
and
|
||||||
|
|
||||||
prepareToBeGrabbed(handMorph)
|
prepareToBeGrabbed(handMorph)
|
||||||
|
|
||||||
method is invoked, if it is present. Immediately after the pick-up
|
methods are invoked, each if it is present. the optional
|
||||||
the former parent's
|
|
||||||
|
selectForEdit
|
||||||
|
|
||||||
|
if implemented, must return the object that is to be picked up.
|
||||||
|
In addition to just returning the original object chosen by the user
|
||||||
|
your method can also modify the target's environment and instead return
|
||||||
|
a copy of the selected morph if, for example, you would like to implement
|
||||||
|
a copy-on-write mechanism such as in Snap.
|
||||||
|
|
||||||
|
Immediately after the pick-up the former parent's
|
||||||
|
|
||||||
reactToGrabOf(grabbedMorph)
|
reactToGrabOf(grabbedMorph)
|
||||||
|
|
||||||
|
@ -583,6 +596,17 @@
|
||||||
|
|
||||||
method.
|
method.
|
||||||
|
|
||||||
|
Right before dropping a morph the designated new parent's optional
|
||||||
|
|
||||||
|
selectForEdit
|
||||||
|
|
||||||
|
method is invoked if it is present. Again, if implemented this method
|
||||||
|
must return the new parent for the morph that is about to be dropped.
|
||||||
|
Again, in addition to just returning the designeted drop-target
|
||||||
|
your method can also modify its environment and instead return
|
||||||
|
a copy of the new parent if, for example, you would like to implement
|
||||||
|
a copy-on-write mechanism such as in Snap.
|
||||||
|
|
||||||
Right after a morph has been dropped its
|
Right after a morph has been dropped its
|
||||||
|
|
||||||
justDropped(handMorph)
|
justDropped(handMorph)
|
||||||
|
@ -1137,7 +1161,7 @@
|
||||||
|
|
||||||
/*global window, HTMLCanvasElement, FileReader, Audio, FileList*/
|
/*global window, HTMLCanvasElement, FileReader, Audio, FileList*/
|
||||||
|
|
||||||
var morphicVersion = '2017-June-02';
|
var morphicVersion = '2017-June-22';
|
||||||
var modules = {}; // keep track of additional loaded modules
|
var modules = {}; // keep track of additional loaded modules
|
||||||
var useBlurredShadows = getBlurredShadowSupport(); // check for Chrome-bug
|
var useBlurredShadows = getBlurredShadowSupport(); // check for Chrome-bug
|
||||||
|
|
||||||
|
@ -10684,6 +10708,7 @@ HandMorph.prototype.drop = function () {
|
||||||
if (this.children.length !== 0) {
|
if (this.children.length !== 0) {
|
||||||
morphToDrop = this.children[0];
|
morphToDrop = this.children[0];
|
||||||
target = this.dropTargetFor(morphToDrop);
|
target = this.dropTargetFor(morphToDrop);
|
||||||
|
target = target.selectForEdit ? target.selectForEdit() : target;
|
||||||
this.changed();
|
this.changed();
|
||||||
target.add(morphToDrop);
|
target.add(morphToDrop);
|
||||||
morphToDrop.cachedFullImage = null;
|
morphToDrop.cachedFullImage = null;
|
||||||
|
@ -10892,7 +10917,8 @@ HandMorph.prototype.processMouseMove = function (event) {
|
||||||
MorphicPreferences.grabThreshold)) {
|
MorphicPreferences.grabThreshold)) {
|
||||||
this.setPosition(this.grabPosition);
|
this.setPosition(this.grabPosition);
|
||||||
if (this.morphToGrab.isDraggable) {
|
if (this.morphToGrab.isDraggable) {
|
||||||
morph = this.morphToGrab;
|
morph = this.morphToGrab.selectForEdit ?
|
||||||
|
this.morphToGrab.selectForEdit() : this.morphToGrab;
|
||||||
this.grab(morph);
|
this.grab(morph);
|
||||||
} else if (this.morphToGrab.isTemplate) {
|
} else if (this.morphToGrab.isTemplate) {
|
||||||
morph = this.morphToGrab.fullCopy();
|
morph = this.morphToGrab.fullCopy();
|
||||||
|
|
33
morphic.txt
33
morphic.txt
|
@ -7,9 +7,9 @@
|
||||||
written by Jens Mönig
|
written by Jens Mönig
|
||||||
jens@moenig.org
|
jens@moenig.org
|
||||||
|
|
||||||
Copyright (C) 2016 by Jens Mönig
|
Copyright (C) 2017 by Jens Mönig
|
||||||
|
|
||||||
this documentation last changed: November 25, 2016
|
this documentation last changed: June 22, 2017
|
||||||
|
|
||||||
This file is part of Snap!.
|
This file is part of Snap!.
|
||||||
|
|
||||||
|
@ -552,10 +552,23 @@
|
||||||
|
|
||||||
Right before a morph is picked up its
|
Right before a morph is picked up its
|
||||||
|
|
||||||
|
selectForEdit
|
||||||
|
|
||||||
|
and
|
||||||
|
|
||||||
prepareToBeGrabbed(handMorph)
|
prepareToBeGrabbed(handMorph)
|
||||||
|
|
||||||
method is invoked, if it is present. Immediately after the pick-up
|
methods are invoked, each if it is present. the optional
|
||||||
the former parent's
|
|
||||||
|
selectForEdit
|
||||||
|
|
||||||
|
if implemented, must return the object that is to be picked up.
|
||||||
|
In addition to just returning the original object chosen by the user
|
||||||
|
your method can also modify the target's environment and instead return
|
||||||
|
a copy of the selected morph if, for example, you would like to implement
|
||||||
|
a copy-on-write mechanism such as in Snap.
|
||||||
|
|
||||||
|
Immediately after the pick-up the former parent's
|
||||||
|
|
||||||
reactToGrabOf(grabbedMorph)
|
reactToGrabOf(grabbedMorph)
|
||||||
|
|
||||||
|
@ -584,6 +597,17 @@
|
||||||
|
|
||||||
method.
|
method.
|
||||||
|
|
||||||
|
Right before dropping a morph the designated new parent's optional
|
||||||
|
|
||||||
|
selectForEdit
|
||||||
|
|
||||||
|
method is invoked if it is present. Again, if implemented this method
|
||||||
|
must return the new parent for the morph that is about to be dropped.
|
||||||
|
Again, in addition to just returning the designeted drop-target
|
||||||
|
your method can also modify its environment and instead return
|
||||||
|
a copy of the new parent if, for example, you would like to implement
|
||||||
|
a copy-on-write mechanism such as in Snap.
|
||||||
|
|
||||||
Right after a morph has been dropped its
|
Right after a morph has been dropped its
|
||||||
|
|
||||||
justDropped(handMorph)
|
justDropped(handMorph)
|
||||||
|
@ -1129,5 +1153,6 @@
|
||||||
Davide Della Casa contributed performance optimizations for Firefox.
|
Davide Della Casa contributed performance optimizations for Firefox.
|
||||||
Jason N (@cyderize) contributed native copy & paste for text editing.
|
Jason N (@cyderize) contributed native copy & paste for text editing.
|
||||||
Bartosz Leper contributed retina display support.
|
Bartosz Leper contributed retina display support.
|
||||||
|
Brian Harvey contributed to the design and implemenatation of submenus.
|
||||||
|
|
||||||
- Jens Mönig
|
- Jens Mönig
|
||||||
|
|
Ładowanie…
Reference in New Issue