2001-03-09 01:12:39 +00:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
2012-05-21 11:12:37 +00:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License , v . 2.0 . If a copy of the MPL was not distributed with this
* file , You can obtain one at http : //mozilla.org/MPL/2.0/. */
2001-03-09 01:12:39 +00:00
# ifndef nsBidiPresUtils_h___
# define nsBidiPresUtils_h___
2013-08-19 22:55:18 +00:00
# ifdef IBMBIDI
2002-02-19 20:41:32 +00:00
# include "nsBidi.h"
# include "nsBidiUtils.h"
2013-08-19 22:55:18 +00:00
# include "nsHashKeys.h"
# include "nsCoord.h"
2006-06-15 08:16:23 +00:00
2010-06-12 11:37:59 +00:00
# ifdef DrawText
# undef DrawText
# endif
2011-04-13 09:23:49 +00:00
struct BidiParagraphData ;
struct BidiLineData ;
2012-08-06 03:00:56 +00:00
class nsIFrame ;
2013-08-19 22:55:18 +00:00
class nsBlockFrame ;
class nsPresContext ;
class nsRenderingContext ;
class nsBlockInFlowLineIterator ;
2013-11-18 15:24:16 +00:00
class nsStyleContext ;
2013-08-19 22:55:18 +00:00
template < class T > class nsTHashtable ;
2011-04-13 09:23:49 +00:00
2006-06-15 08:16:23 +00:00
/**
* A structure representing some continuation state for each frame on the line ,
* used to determine the first and the last continuation frame for each
* continuation chain on the line .
*/
struct nsFrameContinuationState : public nsVoidPtrHashKey
{
nsFrameContinuationState ( const void * aFrame ) : nsVoidPtrHashKey ( aFrame ) { }
/**
* The first visual frame in the continuation chain containing this frame , or
2012-07-30 14:20:58 +00:00
* nullptr if this frame is the first visual frame in the chain .
2006-06-15 08:16:23 +00:00
*/
nsIFrame * mFirstVisualFrame ;
/**
* The number of frames in the continuation chain containing this frame , if
* this frame is the first visual frame of the chain , or 0 otherwise .
*/
2012-08-22 15:56:38 +00:00
uint32_t mFrameCount ;
2006-06-15 08:16:23 +00:00
/**
* TRUE if this frame is the first visual frame of its continuation chain on
* this line and the chain has some frames on the previous lines .
*/
2011-09-29 06:19:26 +00:00
bool mHasContOnPrevLines ;
2006-06-15 08:16:23 +00:00
/**
* TRUE if this frame is the first visual frame of its continuation chain on
* this line and the chain has some frames left for next lines .
*/
2011-09-29 06:19:26 +00:00
bool mHasContOnNextLines ;
2006-06-15 08:16:23 +00:00
} ;
/*
* Following type is used to pass needed hashtable to reordering methods
*/
typedef nsTHashtable < nsFrameContinuationState > nsContinuationStates ;
2001-03-09 01:12:39 +00:00
2004-10-29 12:28:19 +00:00
/**
* A structure representing a logical position which should be resolved
* into its visual position during BiDi processing .
*/
struct nsBidiPositionResolve
{
// [in] Logical index within string.
2012-08-22 15:56:38 +00:00
int32_t logicalIndex ;
2004-10-29 12:28:19 +00:00
// [out] Visual index within string.
// If the logical position was not found, set to kNotFound.
2012-08-22 15:56:38 +00:00
int32_t visualIndex ;
2004-10-29 12:28:19 +00:00
// [out] Visual position of the character, from the left (on the X axis), in twips.
// Eessentially, this is the X position (relative to the rendering context) where the text was drawn + the font metric of the visual string to the left of the given logical position.
// If the logical position was not found, set to kNotFound.
2012-08-22 15:56:38 +00:00
int32_t visualLeftTwips ;
2009-03-21 08:38:14 +00:00
// [out] Visual width of the character, in twips.
// If the logical position was not found, set to kNotFound.
2012-08-22 15:56:38 +00:00
int32_t visualWidth ;
2004-10-29 12:28:19 +00:00
} ;
2001-03-09 01:12:39 +00:00
class nsBidiPresUtils {
public :
nsBidiPresUtils ( ) ;
~ nsBidiPresUtils ( ) ;
2008-07-18 18:29:06 +00:00
/**
* Interface for the processor used by ProcessText . Used by process text to
* collect information about the width of subruns and to notify where each
* subrun should be rendered .
*/
class BidiProcessor {
public :
virtual ~ BidiProcessor ( ) { }
/**
* Sets the current text with the given length and the given direction .
*
* @ remark The reason that the function gives a string instead of an index
* is that ProcessText copies and modifies the string passed to it , so
* passing an index would be impossible .
*
* @ param aText The string of text .
* @ param aLength The length of the string of text .
* @ param aDirection The direction of the text . The string will never have
* mixed direction .
*/
virtual void SetText ( const PRUnichar * aText ,
2012-08-22 15:56:38 +00:00
int32_t aLength ,
2008-07-18 18:29:06 +00:00
nsBidiDirection aDirection ) = 0 ;
/**
* Returns the measured width of the text given in SetText . If SetText was
* not called with valid parameters , the result of this call is undefined .
* This call is guaranteed to only be called once between SetText calls .
* Will be invoked before DrawText .
*/
virtual nscoord GetWidth ( ) = 0 ;
/**
* Draws the text given in SetText to a rendering context . If SetText was
* not called with valid parameters , the result of this call is undefined .
* This call is guaranteed to only be called once between SetText calls .
*
* @ param aXOffset The offset of the left side of the substring to be drawn
* from the beginning of the overall string passed to ProcessText .
* @ param aWidth The width returned by GetWidth .
*/
virtual void DrawText ( nscoord aXOffset ,
nscoord aWidth ) = 0 ;
} ;
2001-03-09 01:12:39 +00:00
/**
2003-07-24 18:33:50 +00:00
* Make Bidi engine calculate the embedding levels of the frames that are
* descendants of a given block frame .
*
* @ param aBlockFrame The block frame
2001-03-09 01:12:39 +00:00
*
* @ lina 06 / 18 / 2000
*/
2011-04-13 09:23:49 +00:00
static nsresult Resolve ( nsBlockFrame * aBlockFrame ) ;
static nsresult ResolveParagraph ( nsBlockFrame * aBlockFrame ,
BidiParagraphData * aBpd ) ;
static void ResolveParagraphWithinBlock ( nsBlockFrame * aBlockFrame ,
BidiParagraphData * aBpd ) ;
2001-03-09 01:12:39 +00:00
/**
* Reorder this line using Bidi engine .
* Update frame array , following the new visual sequence .
*
* @ lina 05 / 02 / 2000
*/
2011-04-13 09:23:49 +00:00
static void ReorderFrames ( nsIFrame * aFirstFrameOnLine ,
2012-08-22 15:56:38 +00:00
int32_t aNumFramesOnLine ) ;
2001-03-09 01:12:39 +00:00
/**
* Format Unicode text , taking into account bidi capabilities
* of the platform . The formatting includes : reordering , Arabic shaping ,
* symmetric and numeric swapping , removing control characters .
*
* @ lina 06 / 18 / 2000
*/
2011-04-13 09:23:49 +00:00
static nsresult FormatUnicodeText ( nsPresContext * aPresContext ,
PRUnichar * aText ,
2012-08-22 15:56:38 +00:00
int32_t & aTextLength ,
2011-04-13 09:23:49 +00:00
nsCharType aCharType ,
2011-09-29 06:19:26 +00:00
bool aIsOddLevel ) ;
2001-03-09 01:12:39 +00:00
2001-11-12 20:51:48 +00:00
/**
* Reorder plain text using the Unicode Bidi algorithm and send it to
* a rendering context for rendering .
*
2004-10-29 12:28:19 +00:00
* @ param [ in ] aText the string to be rendered ( in logical order )
2001-11-12 20:51:48 +00:00
* @ param aLength the number of characters in the string
2013-11-18 15:24:16 +00:00
* @ param aBaseLevel the base embedding level of the string
* odd values are right - to - left ; even values are left - to - right , plus special
* constants as follows ( defined in nsBidi . h )
2001-11-12 20:51:48 +00:00
* NSBIDI_LTR - left - to - right string
* NSBIDI_RTL - right - to - left string
2013-11-18 15:24:16 +00:00
* NSBIDI_DEFAULT_LTR - auto direction determined by first strong character ,
* default is left - to - right
* NSBIDI_DEFAULT_RTL - auto direction determined by first strong character ,
* default is right - to - left
*
2001-11-12 20:51:48 +00:00
* @ param aPresContext the presentation context
2011-01-16 20:23:33 +00:00
* @ param aRenderingContext the rendering context to render to
* @ param aTextRunConstructionContext the rendering context to be used to construct the textrun ( affects font hinting )
2004-10-29 12:28:19 +00:00
* @ param aX the x - coordinate to render the string
* @ param aY the y - coordinate to render the string
2012-07-30 14:20:58 +00:00
* @ param [ in , out ] aPosResolve array of logical positions to resolve into visual positions ; can be nullptr if this functionality is not required
2004-10-29 12:28:19 +00:00
* @ param aPosResolveCount number of items in the aPosResolve array
2001-11-12 20:51:48 +00:00
*/
2011-04-13 09:23:49 +00:00
static nsresult RenderText ( const PRUnichar * aText ,
2012-08-22 15:56:38 +00:00
int32_t aLength ,
2013-11-18 15:24:16 +00:00
nsBidiLevel aBaseLevel ,
2011-04-13 09:23:49 +00:00
nsPresContext * aPresContext ,
nsRenderingContext & aRenderingContext ,
nsRenderingContext & aTextRunConstructionContext ,
nscoord aX ,
nscoord aY ,
2012-07-30 14:20:58 +00:00
nsBidiPositionResolve * aPosResolve = nullptr ,
2012-08-22 15:56:38 +00:00
int32_t aPosResolveCount = 0 )
2007-01-23 02:58:55 +00:00
{
2013-11-18 15:24:16 +00:00
return ProcessTextForRenderingContext ( aText , aLength , aBaseLevel , aPresContext , aRenderingContext ,
2012-07-30 14:20:58 +00:00
aTextRunConstructionContext , MODE_DRAW , aX , aY , aPosResolve , aPosResolveCount , nullptr ) ;
2007-01-23 02:58:55 +00:00
}
2011-04-13 09:23:49 +00:00
static nscoord MeasureTextWidth ( const PRUnichar * aText ,
2012-08-22 15:56:38 +00:00
int32_t aLength ,
2013-11-18 15:24:16 +00:00
nsBidiLevel aBaseLevel ,
2011-04-13 09:23:49 +00:00
nsPresContext * aPresContext ,
nsRenderingContext & aRenderingContext )
2007-01-23 02:58:55 +00:00
{
nscoord length ;
2013-11-18 15:24:16 +00:00
nsresult rv = ProcessTextForRenderingContext ( aText , aLength , aBaseLevel , aPresContext ,
2011-01-16 20:23:33 +00:00
aRenderingContext , aRenderingContext ,
2012-07-30 14:20:58 +00:00
MODE_MEASURE , 0 , 0 , nullptr , 0 , & length ) ;
2007-01-23 02:58:55 +00:00
return NS_SUCCEEDED ( rv ) ? length : 0 ;
}
2001-11-12 20:51:48 +00:00
2006-03-12 09:49:48 +00:00
/**
* Check if a line is reordered , i . e . , if the child frames are not
* all laid out left - to - right .
* @ param aFirstFrameOnLine : first frame of the line to be tested
* @ param aNumFramesOnLine : number of frames on this line
* @ param [ out ] aLeftMost : leftmost frame on this line
* @ param [ out ] aRightMost : rightmost frame on this line
*/
2011-09-29 06:19:26 +00:00
static bool CheckLineOrder ( nsIFrame * aFirstFrameOnLine ,
2012-08-22 15:56:38 +00:00
int32_t aNumFramesOnLine ,
2011-04-13 09:23:49 +00:00
nsIFrame * * aLeftmost ,
nsIFrame * * aRightmost ) ;
2006-03-12 09:49:48 +00:00
/**
* Get the frame to the right of the given frame , on the same line .
* @ param aFrame : We ' re looking for the frame to the right of this frame .
* If null , return the leftmost frame on the line .
* @ param aFirstFrameOnLine : first frame of the line to be tested
* @ param aNumFramesOnLine : number of frames on this line
*/
2011-04-13 09:23:49 +00:00
static nsIFrame * GetFrameToRightOf ( const nsIFrame * aFrame ,
nsIFrame * aFirstFrameOnLine ,
2012-08-22 15:56:38 +00:00
int32_t aNumFramesOnLine ) ;
2006-03-12 09:49:48 +00:00
/**
* Get the frame to the left of the given frame , on the same line .
* @ param aFrame : We ' re looking for the frame to the left of this frame .
* If null , return the rightmost frame on the line .
* @ param aFirstFrameOnLine : first frame of the line to be tested
* @ param aNumFramesOnLine : number of frames on this line
*/
2011-04-13 09:23:49 +00:00
static nsIFrame * GetFrameToLeftOf ( const nsIFrame * aFrame ,
nsIFrame * aFirstFrameOnLine ,
2012-08-22 15:56:38 +00:00
int32_t aNumFramesOnLine ) ;
2012-01-11 19:26:02 +00:00
static nsIFrame * GetFirstLeaf ( nsIFrame * aFrame ) ;
2006-03-12 09:49:48 +00:00
/**
* Get the bidi embedding level of the given ( inline ) frame .
*/
static nsBidiLevel GetFrameEmbeddingLevel ( nsIFrame * aFrame ) ;
2012-01-11 19:26:02 +00:00
/**
* Get the paragraph depth of the given ( inline ) frame .
*/
2012-08-22 15:56:38 +00:00
static uint8_t GetParagraphDepth ( nsIFrame * aFrame ) ;
2006-03-12 09:49:48 +00:00
/**
* Get the bidi base level of the given ( inline ) frame .
*/
static nsBidiLevel GetFrameBaseLevel ( nsIFrame * aFrame ) ;
2007-01-23 02:58:55 +00:00
enum Mode { MODE_DRAW , MODE_MEASURE } ;
2008-07-18 18:29:06 +00:00
/**
* Reorder plain text using the Unicode Bidi algorithm and send it to
* a processor for rendering or measuring
*
* @ param [ in ] aText the string to be processed ( in logical order )
* @ param aLength the number of characters in the string
2013-11-18 15:24:16 +00:00
* @ param aBaseLevel the base embedding level of the string
* odd values are right - to - left ; even values are left - to - right , plus special
* constants as follows ( defined in nsBidi . h )
2008-07-18 18:29:06 +00:00
* NSBIDI_LTR - left - to - right string
* NSBIDI_RTL - right - to - left string
2013-11-18 15:24:16 +00:00
* NSBIDI_DEFAULT_LTR - auto direction determined by first strong character ,
* default is left - to - right
* NSBIDI_DEFAULT_RTL - auto direction determined by first strong character ,
* default is right - to - left
*
2008-07-18 18:29:06 +00:00
* @ param aPresContext the presentation context
* @ param aprocessor the bidi processor
* @ param aMode the operation to process
* MODE_DRAW - invokes DrawText on the processor for each substring
* MODE_MEASURE - does not invoke DrawText on the processor
* Note that the string is always measured , regardless of mode
* @ param [ in , out ] aPosResolve array of logical positions to resolve into
2012-07-30 14:20:58 +00:00
* visual positions ; can be nullptr if this functionality is not required
2008-07-18 18:29:06 +00:00
* @ param aPosResolveCount number of items in the aPosResolve array
* @ param [ out ] aWidth Pointer to where the width will be stored ( may be null )
*/
2011-04-13 09:23:49 +00:00
static nsresult ProcessText ( const PRUnichar * aText ,
2012-08-22 15:56:38 +00:00
int32_t aLength ,
2013-11-18 15:24:16 +00:00
nsBidiLevel aBaseLevel ,
2011-04-13 09:23:49 +00:00
nsPresContext * aPresContext ,
BidiProcessor & aprocessor ,
Mode aMode ,
nsBidiPositionResolve * aPosResolve ,
2012-08-22 15:56:38 +00:00
int32_t aPosResolveCount ,
2011-04-13 09:23:49 +00:00
nscoord * aWidth ,
nsBidi * aBidiEngine ) ;
2008-07-18 18:29:06 +00:00
2011-01-04 08:52:17 +00:00
/**
* Make a copy of a string , converting from logical to visual order
*
* @ param aSource the source string
* @ param aDest the destination string
* @ param aBaseDirection the base direction of the string
* ( NSBIDI_LTR or NSBIDI_RTL to force the base direction ;
* NSBIDI_DEFAULT_LTR or NSBIDI_DEFAULT_RTL to let the bidi engine
* determine the direction from rules P2 and P3 of the bidi algorithm .
* @ see nsBidi : : GetPara
* @ param aOverride if TRUE , the text has a bidi override , according to
* the direction in aDir
*/
2011-04-13 09:23:49 +00:00
static void CopyLogicalToVisual ( const nsAString & aSource ,
nsAString & aDest ,
nsBidiLevel aBaseDirection ,
2011-09-29 06:19:26 +00:00
bool aOverride ) ;
2011-01-11 19:19:00 +00:00
2013-11-18 15:24:16 +00:00
/**
* Use style attributes to determine the base paragraph level to pass to the
* bidi algorithm .
*
* If | unicode - bidi | is set to " [-moz-]plaintext " , returns NSBIDI_DEFAULT_LTR ,
* in other words the direction is determined from the first strong character
* in the text according to rules P2 and P3 of the bidi algorithm , or LTR if
* there is no strong character .
*
* Otherwise returns NSBIDI_LTR or NSBIDI_RTL depending on the value of
* | direction |
*/
static nsBidiLevel BidiLevelFromStyle ( nsStyleContext * aStyleContext ) ;
2008-07-18 18:29:06 +00:00
private :
2011-04-13 09:23:49 +00:00
static nsresult
ProcessTextForRenderingContext ( const PRUnichar * aText ,
2012-08-22 15:56:38 +00:00
int32_t aLength ,
2013-11-18 15:24:16 +00:00
nsBidiLevel aBaseLevel ,
2011-04-13 09:23:49 +00:00
nsPresContext * aPresContext ,
nsRenderingContext & aRenderingContext ,
nsRenderingContext & aTextRunConstructionContext ,
Mode aMode ,
nscoord aX , // DRAW only
nscoord aY , // DRAW only
nsBidiPositionResolve * aPosResolve , /* may be null */
2012-08-22 15:56:38 +00:00
int32_t aPosResolveCount ,
2011-04-13 09:23:49 +00:00
nscoord * aWidth /* may be null */ ) ;
2011-04-27 08:47:18 +00:00
2011-03-25 22:15:29 +00:00
/**
2011-04-11 07:59:30 +00:00
* Traverse the child frames of the block element and :
* Set up an array of the frames in logical order
* Create a string containing the text content of all the frames
* If we encounter content that requires us to split the element into more
* than one paragraph for bidi resolution , resolve the paragraph up to that
* point .
2001-03-09 01:12:39 +00:00
*/
2011-04-13 09:23:49 +00:00
static void TraverseFrames ( nsBlockFrame * aBlockFrame ,
nsBlockInFlowLineIterator * aLineIter ,
nsIFrame * aCurrentFrame ,
2011-11-07 14:26:50 +00:00
BidiParagraphData * aBpd ) ;
2001-03-09 01:12:39 +00:00
2006-06-15 08:16:23 +00:00
/*
* Position aFrame and it ' s descendants to their visual places . Also if aFrame
* is not leaf , resize it to embrace it ' s children .
*
* @ param aFrame The frame which itself and its children are going
* to be repositioned
* @ param aIsOddLevel TRUE means the embedding level of this frame is odd
* @ param [ in , out ] aLeft IN value is the starting position of aFrame ( without
* considering its left margin )
* OUT value will be the ending position of aFrame ( after
* adding its right margin )
* @ param aContinuationStates A map from nsIFrame * to nsFrameContinuationState
*/
2011-04-13 09:23:49 +00:00
static void RepositionFrame ( nsIFrame * aFrame ,
2011-09-29 06:19:26 +00:00
bool aIsOddLevel ,
2011-04-13 09:23:49 +00:00
nscoord & aLeft ,
nsContinuationStates * aContinuationStates ) ;
2006-06-15 08:16:23 +00:00
/*
* Initialize the continuation state ( nsFrameContinuationState ) to
2012-07-30 14:20:58 +00:00
* ( nullptr , 0 ) for aFrame and its descendants .
2006-06-15 08:16:23 +00:00
*
* @ param aFrame The frame which itself and its descendants will
* be initialized
* @ param aContinuationStates A map from nsIFrame * to nsFrameContinuationState
*/
2011-04-13 09:23:49 +00:00
static void InitContinuationStates ( nsIFrame * aFrame ,
nsContinuationStates * aContinuationStates ) ;
2006-06-15 08:16:23 +00:00
/*
* Determine if aFrame is leftmost or rightmost , and set aIsLeftMost and
* aIsRightMost values . Also set continuation states of aContinuationStates .
*
* A frame is leftmost if it ' s the first appearance of its continuation chain
* on the line and the chain is on its first line if it ' s LTR or the chain is
* on its last line if it ' s RTL .
* A frame is rightmost if it ' s the last appearance of its continuation chain
* on the line and the chain is on its first line if it ' s RTL or the chain is
* on its last line if it ' s LTR .
*
* @ param aContinuationStates A map from nsIFrame * to nsFrameContinuationState
* @ param [ out ] aIsLeftMost TRUE means aFrame is leftmost frame or continuation
* @ param [ out ] aIsRightMost TRUE means aFrame is rightmost frame or continuation
*/
2011-04-13 09:23:49 +00:00
static void IsLeftOrRightMost ( nsIFrame * aFrame ,
nsContinuationStates * aContinuationStates ,
2011-09-29 06:19:26 +00:00
bool & aIsLeftMost /* out */ ,
bool & aIsRightMost /* out */ ) ;
2006-06-15 08:16:23 +00:00
2001-03-09 01:12:39 +00:00
/**
* Adjust frame positions following their visual order
*
2007-08-29 09:19:16 +00:00
* @ param aFirstChild the first kid
2001-03-09 01:12:39 +00:00
*
* @ lina 04 / 11 / 2000
*/
2011-04-13 09:23:49 +00:00
static void RepositionInlineFrames ( BidiLineData * aBld ,
nsIFrame * aFirstChild ) ;
2001-03-09 01:12:39 +00:00
2003-07-24 18:33:50 +00:00
/**
* Helper method for Resolve ( )
2008-01-30 04:13:06 +00:00
* Truncate a text frame to the end of a single - directional run and possibly
* create a continuation frame for the remainder of its content .
2003-07-24 18:33:50 +00:00
*
* @ param aFrame the original frame
* @ param aNewFrame [ OUT ] the new frame that was created
* @ param aFrameIndex [ IN / OUT ] index of aFrame in mLogicalFrames
2008-01-30 04:13:06 +00:00
* @ param aStart [ IN ] the start of the content mapped by aFrame ( and
* any fluid continuations )
* @ param aEnd [ IN ] the offset of the end of the single - directional
* text run .
2003-07-24 18:33:50 +00:00
* @ see Resolve ( )
* @ see RemoveBidiContinuation ( )
*/
2011-04-13 09:23:49 +00:00
static inline
nsresult EnsureBidiContinuation ( nsIFrame * aFrame ,
nsIFrame * * aNewFrame ,
2012-08-22 15:56:38 +00:00
int32_t & aFrameIndex ,
int32_t aStart ,
int32_t aEnd ) ;
2003-07-24 18:33:50 +00:00
/**
* Helper method for Resolve ( )
2006-03-08 09:02:42 +00:00
* Convert one or more bidi continuation frames created in a previous reflow by
* EnsureBidiContinuation ( ) into fluid continuations .
2003-07-24 18:33:50 +00:00
* @ param aFrame the frame whose continuations are to be removed
* @ param aFirstIndex index of aFrame in mLogicalFrames
* @ param aLastIndex index of the last frame to be removed
* @ param aOffset [ OUT ] count of directional frames removed . Since
* directional frames have control characters
* corresponding to them in mBuffer , the pointers to
* mBuffer in Resolve ( ) will need to be updated after
* deleting the frames .
*
* @ see Resolve ( )
* @ see EnsureBidiContinuation ( )
*/
2011-04-13 09:23:49 +00:00
static void RemoveBidiContinuation ( BidiParagraphData * aBpd ,
nsIFrame * aFrame ,
2012-08-22 15:56:38 +00:00
int32_t aFirstIndex ,
int32_t aLastIndex ,
int32_t & aOffset ) ;
2011-04-13 09:23:49 +00:00
static void CalculateCharType ( nsBidi * aBidiEngine ,
const PRUnichar * aText ,
2012-08-22 15:56:38 +00:00
int32_t & aOffset ,
int32_t aCharTypeLimit ,
int32_t & aRunLimit ,
int32_t & aRunLength ,
int32_t & aRunCount ,
uint8_t & aCharType ,
uint8_t & aPrevCharType ) ;
2001-03-09 01:12:39 +00:00
2011-04-13 09:23:49 +00:00
static void StripBidiControlCharacters ( PRUnichar * aText ,
2012-08-22 15:56:38 +00:00
int32_t & aTextLength ) ;
2011-01-04 08:52:17 +00:00
2011-09-29 06:19:26 +00:00
static bool WriteLogicalToVisual ( const PRUnichar * aSrc ,
2012-08-22 15:56:38 +00:00
uint32_t aSrcLength ,
2011-01-04 08:52:17 +00:00
PRUnichar * aDest ,
nsBidiLevel aBaseDirection ,
nsBidi * aBidiEngine ) ;
2011-04-13 09:23:49 +00:00
static void WriteReverse ( const PRUnichar * aSrc ,
2012-08-22 15:56:38 +00:00
uint32_t aSrcLength ,
2011-04-13 09:23:49 +00:00
PRUnichar * aDest ) ;
2001-03-09 01:12:39 +00:00
} ;
# endif // IBMBIDI
2013-08-19 22:55:18 +00:00
# endif /* nsBidiPresUtils_h___ */