blob: 34e54b7211c920d94a17280b25772ab7add70207 [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.operations
{
import flashx.textLayout.debug.assert;
import flashx.textLayout.edit.IMemento;
import flashx.textLayout.edit.ModelEdit;
import flashx.textLayout.edit.SelectionState;
import flashx.textLayout.edit.TextFlowEdit;
import flashx.textLayout.edit.TextScrap;
import flashx.textLayout.elements.FlowLeafElement;
import flashx.textLayout.elements.TCYElement;
import flashx.textLayout.elements.TextFlow;
import flashx.textLayout.tlf_internal;
use namespace tlf_internal;
/**
* The ApplyTCYOperation class encapsulates a TCY transformation.
*
* @see flashx.textLayout.elements.TCYElement
* @see flashx.textLayout.edit.EditManager
* @see flashx.textLayout.events.FlowOperationEvent
*
* @playerversion Flash 10
* @playerversion AIR 1.5
* @langversion 3.0
*/
public class ApplyTCYOperation extends FlowTextOperation
{
private var makeBegIdx:int;
private var makeEndIdx:int;
private var removeBegIdx:int;
private var removeEndIdx:int;
private var removeRedoBegIdx:int;
private var removeRedoEndIdx:int;
private var _memento:IMemento;
private var _tcyOn:Boolean;
private var _tcyElement:TCYElement;
/**
* Creates an ApplyTCYOperation object.
*
* @param operationState Describes the range of text to which the operation is applied.
* @param tcyValue Specifies whether to apply TCY (<code>true</code>), or remove TCY (<code>false</code>).
*
* @playerversion Flash 10
* @playerversion AIR 1.5
* @langversion 3.0
*/
public function ApplyTCYOperation(operationState:SelectionState, tcyOn:Boolean)
{
super(operationState);
if(tcyOn)
{
makeBegIdx = operationState.absoluteStart;
makeEndIdx = operationState.absoluteEnd;
}
else
{
removeBegIdx = operationState.absoluteStart;
removeEndIdx = operationState.absoluteEnd;
}
_tcyOn = tcyOn;
}
/**
* Indicates whether the operation applies or removes TCY formatting.
*
* <p>If <code>true</code>, then the operation transforms the range into a
* TCY element. If <code>false</code>, then the operation removes TCY formatting from
* the first TCY element in the range.</p>
*
* @see flashx.textLayout.elements.TCYElement
*
* @playerversion Flash 10
* @playerversion AIR 1.5
* @langversion 3.0
*/
public function get tcyOn():Boolean
{
return _tcyOn;
}
public function set tcyOn(val:Boolean):void
{
_tcyOn = val;
}
/**
* The TCYElement that was created by doOperation.
*
* @playerversion Flash 10
* @playerversion AIR 2.0
* @langversion 3.0
*/
public function get newTCYElement():TCYElement
{
return _tcyElement;
}
/** @private */
public override function doOperation():Boolean
{
if (_tcyOn && makeEndIdx <= makeBegIdx)
{
return false;
}
else if(!_tcyOn && removeEndIdx <= removeBegIdx)
{
return false;
}
if (_tcyOn)
{
//save it off so that we can restore the flow on undo - make and remove need different scraps
_memento = ModelEdit.saveCurrentState(textFlow, makeBegIdx, makeEndIdx);
if (TextFlowEdit.makeTCY(textFlow, makeBegIdx, makeEndIdx))
{
leaf = textFlow.findLeaf(makeBegIdx);
_tcyElement = leaf.getParentByType(TCYElement) as TCYElement;
}
}
else
{
var leaf:FlowLeafElement = textFlow.findLeaf(removeBegIdx);
var tcyElem:TCYElement = leaf.getParentByType(TCYElement) as TCYElement
CONFIG::debug{ assert(tcyElem != null, "Trying to remove TCY from a non-TCY element!"); }
//collect the bounds for redo of removal - redo bounds are only the selection, while do bounds are the whole
//tcyElement
removeRedoBegIdx = removeBegIdx;
removeRedoEndIdx = removeEndIdx;
//now reset the beg and end idx's
removeBegIdx = tcyElem.getAbsoluteStart();
removeEndIdx = removeBegIdx + tcyElem.textLength;
//create the scrap of the whole TCY element
_memento = ModelEdit.saveCurrentState(textFlow, removeBegIdx, removeEndIdx);
//use the removeRedoBegIdx/removeRedoEndIdx
TextFlowEdit.removeTCY(textFlow, removeRedoBegIdx, removeRedoEndIdx);
}
return true;
}
/** @private */
public override function undo():SelectionState
{
_memento.undo();
return originalSelectionState;
}
/** @private */
public override function redo():SelectionState
{
if (_tcyOn)
{
TextFlowEdit.makeTCY(textFlow, makeBegIdx, makeEndIdx);
}
else
{
TextFlowEdit.removeTCY(textFlow, removeRedoBegIdx, removeRedoEndIdx);
}
return originalSelectionState;
}
}
}