blob: 042a92c729f6c869ade28b08e257446341f8d170 [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package flashx.textLayout.ui.rulers
{
import flash.events.MouseEvent;
import flash.geom.Point;
import mx.core.UIComponent;
import bxf.ui.toolkit.Tracker;
public class RulerDragTracker extends Tracker
{
public function RulerDragTracker(inPeerToTrackTo:UIComponent, inController:RulerBar, inCookie:Object, inDragThreshold:Number = 2)
{
super(inPeerToTrackTo, 0, 0);
mController = inController;
mDragCookie = inCookie;
mDragThreshold = inDragThreshold;
}
/** Override to get cursor adjust hook and mouse down.
* @param inMouseEvent mouse info.
* @param inCursorAdjust true if this is a mouse up track.*/
override public function BeginTracking(inMouseEvent:MouseEvent, inCursorAdjust:Boolean):void
{
super.BeginTracking(inMouseEvent, inCursorAdjust);
}
/** Override to get mouse move.
* @param inMouseEvent mouse info.*/
override public function ContinueTracking(inMouseEvent:MouseEvent):void
{
super.ContinueTracking(inMouseEvent);
if (!mDragThresholdReached)
{
if (Point.distance(mAnchorPt, mTrackPt) >= mDragThreshold)
mDragThresholdReached = true;
}
if (mDragThresholdReached)
mController.TrackDrag(mTrackPt, mDragCookie, false);
inMouseEvent.stopPropagation();
}
/** Override to get mouse up.
* @param inMouseEvent mouse info.*/
override public function EndTracking(inMouseEvent:MouseEvent):void
{
super.EndTracking(inMouseEvent);
if (mDragThresholdReached)
mController.TrackDrag(mTrackPt, mDragCookie, true);
else
mController.DragCancelled();
inMouseEvent.stopPropagation();
}
override protected function TrackPoint(inMouseEvent:MouseEvent, inAlsoSetAnchor:Boolean): void
{
mTrackPt.x = inMouseEvent.stageX;
mTrackPt.y = inMouseEvent.stageY;
mTrackPt = mController.globalToLocal(mTrackPt);
if (inAlsoSetAnchor)
mAnchorPt = mTrackPt.clone();
}
private var mController:RulerBar = null;
private var mDragCookie:Object = null;
private var mDragThreshold:Number;
private var mDragThresholdReached:Boolean = false;
}
}