X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-controller.cpp;h=dbbf52356da6fa7c65c4f56b4f2e044ae1e20831;hb=96d995c2f22cb20080496e7442c4683eccc62a99;hp=e273f013b749d15ceb50df2b68c9ff4f4a1e390e;hpb=49fabc565606e00c95baacb41f009de2a532a4da;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/text-controller.cpp b/dali-toolkit/internal/text/text-controller.cpp index e273f01..d02f9aa 100644 --- a/dali-toolkit/internal/text/text-controller.cpp +++ b/dali-toolkit/internal/text/text-controller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,9 +20,11 @@ // EXTERNAL INCLUDES #include +#include #include #include #include +#include // INTERNAL INCLUDES #include @@ -30,6 +32,7 @@ #include #include #include +#include namespace { @@ -39,10 +42,8 @@ namespace #endif const float MAX_FLOAT = std::numeric_limits::max(); -const unsigned int POINTS_PER_INCH = 72; const std::string EMPTY_STRING(""); -const unsigned int ZERO = 0u; float ConvertToEven( float value ) { @@ -61,19 +62,93 @@ namespace Toolkit namespace Text { -ControllerPtr Controller::New( ControlInterface& controlInterface ) +/** + * @brief Adds a new font description run for the selected text. + * + * The new font parameters are added after the call to this method. + * + * @param[in] eventData The event data pointer. + * @param[in] logicalModel The logical model where to add the new font description run. + * @param[out] startOfSelectedText Index to the first selected character. + * @param[out] lengthOfSelectedText Number of selected characters. + */ +FontDescriptionRun& UpdateSelectionFontStyleRun( EventData* eventData, + LogicalModelPtr logicalModel, + CharacterIndex& startOfSelectedText, + Length& lengthOfSelectedText ) +{ + const bool handlesCrossed = eventData->mLeftSelectionPosition > eventData->mRightSelectionPosition; + + // Get start and end position of selection + startOfSelectedText = handlesCrossed ? eventData->mRightSelectionPosition : eventData->mLeftSelectionPosition; + lengthOfSelectedText = ( handlesCrossed ? eventData->mLeftSelectionPosition : eventData->mRightSelectionPosition ) - startOfSelectedText; + + // Add the font run. + const VectorBase::SizeType numberOfRuns = logicalModel->mFontDescriptionRuns.Count(); + logicalModel->mFontDescriptionRuns.Resize( numberOfRuns + 1u ); + + FontDescriptionRun& fontDescriptionRun = *( logicalModel->mFontDescriptionRuns.Begin() + numberOfRuns ); + + fontDescriptionRun.characterRun.characterIndex = startOfSelectedText; + fontDescriptionRun.characterRun.numberOfCharacters = lengthOfSelectedText; + + // Recalculate the selection highlight as the metrics may have changed. + eventData->mUpdateLeftSelectionPosition = true; + eventData->mUpdateRightSelectionPosition = true; + eventData->mUpdateHighlightBox = true; + + return fontDescriptionRun; +} + +// public : Constructor. + +ControllerPtr Controller::New() +{ + return ControllerPtr( new Controller() ); +} + +ControllerPtr Controller::New( ControlInterface* controlInterface ) { return ControllerPtr( new Controller( controlInterface ) ); } +ControllerPtr Controller::New( ControlInterface* controlInterface, + EditableControlInterface* editableControlInterface ) +{ + return ControllerPtr( new Controller( controlInterface, + editableControlInterface ) ); +} + +// public : Configure the text controller. + void Controller::EnableTextInput( DecoratorPtr decorator ) { - if( !mImpl->mEventData ) + if( !decorator ) + { + delete mImpl->mEventData; + mImpl->mEventData = NULL; + + // Nothing else to do. + return; + } + + if( NULL == mImpl->mEventData ) { mImpl->mEventData = new EventData( decorator ); } } +void Controller::SetGlyphType( TextAbstraction::GlyphType glyphType ) +{ + // Metrics for bitmap & vector based glyphs are different + mImpl->mMetrics->SetGlyphType( glyphType ); + + // Clear the font-specific data + ClearFontData(); + + mImpl->RequestRelayout(); +} + void Controller::SetMarkupProcessorEnabled( bool enable ) { mImpl->mMarkupProcessorEnabled = enable; @@ -84,6 +159,241 @@ bool Controller::IsMarkupProcessorEnabled() const return mImpl->mMarkupProcessorEnabled; } +void Controller::SetAutoScrollEnabled( bool enable ) +{ + DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetAutoScrollEnabled[%s] SingleBox[%s]-> [%p]\n", (enable)?"true":"false", ( mImpl->mLayoutEngine.GetLayout() == Layout::Engine::SINGLE_LINE_BOX)?"true":"false", this ); + + if( mImpl->mLayoutEngine.GetLayout() == Layout::Engine::SINGLE_LINE_BOX ) + { + if( enable ) + { + DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetAutoScrollEnabled for SINGLE_LINE_BOX\n" ); + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + LAYOUT | + ALIGN | + UPDATE_LAYOUT_SIZE | + UPDATE_DIRECTION | + REORDER ); + + } + else + { + DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetAutoScrollEnabled Disabling autoscroll\n"); + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + LAYOUT | + ALIGN | + UPDATE_LAYOUT_SIZE | + REORDER ); + } + + mImpl->mIsAutoScrollEnabled = enable; + mImpl->RequestRelayout(); + } + else + { + DALI_LOG_WARNING( "Attempted AutoScrolling on a non SINGLE_LINE_BOX, request ignored\n" ); + mImpl->mIsAutoScrollEnabled = false; + } +} + +bool Controller::IsAutoScrollEnabled() const +{ + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::IsAutoScrollEnabled[%s]\n", mImpl->mIsAutoScrollEnabled?"true":"false" ); + + return mImpl->mIsAutoScrollEnabled; +} + +CharacterDirection Controller::GetAutoScrollDirection() const +{ + return mImpl->mAutoScrollDirectionRTL; +} + +float Controller::GetAutoScrollLineAlignment() const +{ + float offset = 0.f; + + if( mImpl->mModel->mVisualModel && + ( 0u != mImpl->mModel->mVisualModel->mLines.Count() ) ) + { + offset = ( *mImpl->mModel->mVisualModel->mLines.Begin() ).alignmentOffset; + } + + return offset; +} + +void Controller::SetHorizontalScrollEnabled( bool enable ) +{ + if( ( NULL != mImpl->mEventData ) && + mImpl->mEventData->mDecorator ) + { + mImpl->mEventData->mDecorator->SetHorizontalScrollEnabled( enable ); + } +} +bool Controller::IsHorizontalScrollEnabled() const +{ + if( ( NULL != mImpl->mEventData ) && + mImpl->mEventData->mDecorator ) + { + return mImpl->mEventData->mDecorator->IsHorizontalScrollEnabled(); + } + + return false; +} + +void Controller::SetVerticalScrollEnabled( bool enable ) +{ + if( ( NULL != mImpl->mEventData ) && + mImpl->mEventData->mDecorator ) + { + if( mImpl->mEventData->mDecorator ) + { + mImpl->mEventData->mDecorator->SetVerticalScrollEnabled( enable ); + } + } +} + +bool Controller::IsVerticalScrollEnabled() const +{ + if( ( NULL != mImpl->mEventData ) && + mImpl->mEventData->mDecorator ) + { + return mImpl->mEventData->mDecorator->IsVerticalScrollEnabled(); + } + + return false; +} + +void Controller::SetSmoothHandlePanEnabled( bool enable ) +{ + if( ( NULL != mImpl->mEventData ) && + mImpl->mEventData->mDecorator ) + { + mImpl->mEventData->mDecorator->SetSmoothHandlePanEnabled( enable ); + } +} + +bool Controller::IsSmoothHandlePanEnabled() const +{ + if( ( NULL != mImpl->mEventData ) && + mImpl->mEventData->mDecorator ) + { + return mImpl->mEventData->mDecorator->IsSmoothHandlePanEnabled(); + } + + return false; +} + +void Controller::SetMaximumNumberOfCharacters( Length maxCharacters ) +{ + mImpl->mMaximumNumberOfCharacters = maxCharacters; +} + +int Controller::GetMaximumNumberOfCharacters() +{ + return mImpl->mMaximumNumberOfCharacters; +} + +void Controller::SetEnableCursorBlink( bool enable ) +{ + DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "TextInput disabled" ); + + if( NULL != mImpl->mEventData ) + { + mImpl->mEventData->mCursorBlinkEnabled = enable; + + if( !enable && + mImpl->mEventData->mDecorator ) + { + mImpl->mEventData->mDecorator->StopCursorBlink(); + } + } +} + +bool Controller::GetEnableCursorBlink() const +{ + if( NULL != mImpl->mEventData ) + { + return mImpl->mEventData->mCursorBlinkEnabled; + } + + return false; +} + +void Controller::SetMultiLineEnabled( bool enable ) +{ + const Layout::Engine::Type layout = enable ? Layout::Engine::MULTI_LINE_BOX : Layout::Engine::SINGLE_LINE_BOX; + + if( layout != mImpl->mLayoutEngine.GetLayout() ) + { + // Set the layout type. + mImpl->mLayoutEngine.SetLayout( layout ); + + // Set the flags to redo the layout operations + const OperationsMask layoutOperations = static_cast( LAYOUT | + UPDATE_LAYOUT_SIZE | + ALIGN | + REORDER ); + + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | layoutOperations ); + + mImpl->RequestRelayout(); + } +} + +bool Controller::IsMultiLineEnabled() const +{ + return Layout::Engine::MULTI_LINE_BOX == mImpl->mLayoutEngine.GetLayout(); +} + +void Controller::SetHorizontalAlignment( Layout::HorizontalAlignment alignment ) +{ + if( alignment != mImpl->mModel->mHorizontalAlignment ) + { + // Set the alignment. + mImpl->mModel->mHorizontalAlignment = alignment; + + // Set the flag to redo the alignment operation. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | ALIGN ); + + mImpl->RequestRelayout(); + } +} + +Layout::HorizontalAlignment Controller::GetHorizontalAlignment() const +{ + return mImpl->mModel->mHorizontalAlignment; +} + +void Controller::SetVerticalAlignment( Layout::VerticalAlignment alignment ) +{ + if( alignment != mImpl->mModel->mVerticalAlignment ) + { + // Set the alignment. + mImpl->mModel->mVerticalAlignment = alignment; + + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | ALIGN ); + + mImpl->RequestRelayout(); + } +} + +Layout::VerticalAlignment Controller::GetVerticalAlignment() const +{ + return mImpl->mModel->mVerticalAlignment; +} + +void Controller::SetTextElideEnabled( bool enabled ) +{ + mImpl->mModel->mElideEnabled = enabled; +} + +bool Controller::IsTextElideEnabled() const +{ + return mImpl->mModel->mElideEnabled; +} + +// public : Update + void Controller::SetText( const std::string& text ) { DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SetText\n" ); @@ -99,7 +409,7 @@ void Controller::SetText( const std::string& text ) CharacterIndex lastCursorIndex = 0u; - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { // If popup shown then hide it by switching to Editing state if( ( EventData::SELECTING == mImpl->mEventData->mState ) || @@ -113,7 +423,10 @@ void Controller::SetText( const std::string& text ) if( !text.empty() ) { - MarkupProcessData markupProcessData( mImpl->mLogicalModel->mColorRuns ); + mImpl->mModel->mVisualModel->SetTextColor( mImpl->mTextColor ); + + MarkupProcessData markupProcessData( mImpl->mModel->mLogicalModel->mColorRuns, + mImpl->mModel->mLogicalModel->mFontDescriptionRuns ); Length textSize = 0u; const uint8_t* utf8 = NULL; @@ -134,7 +447,7 @@ void Controller::SetText( const std::string& text ) } // Convert text into UTF-32 - Vector& utf32Characters = mImpl->mLogicalModel->mText; + Vector& utf32Characters = mImpl->mModel->mLogicalModel->mText; utf32Characters.Resize( textSize ); // Transform a text array encoded in utf8 into an array encoded in utf32. @@ -143,7 +456,10 @@ void Controller::SetText( const std::string& text ) utf32Characters.Resize( characterCount ); DALI_ASSERT_DEBUG( textSize >= characterCount && "Invalid UTF32 conversion length" ); - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SetText %p UTF8 size %d, UTF32 size %d\n", this, textSize, mImpl->mLogicalModel->mText.Count() ); + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SetText %p UTF8 size %d, UTF32 size %d\n", this, textSize, mImpl->mModel->mLogicalModel->mText.Count() ); + + // The characters to be added. + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count(); // To reset the cursor position lastCursorIndex = characterCount; @@ -170,29 +486,25 @@ void Controller::SetText( const std::string& text ) mImpl->RequestRelayout(); - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { // Cancel previously queued events mImpl->mEventData->mEventQueue.clear(); } - // Notify IMF as text changed - NotifyImfManager(); - - // Do this last since it provides callbacks into application code - mImpl->mControlInterface.TextChanged(); + // Do this last since it provides callbacks into application code. + if( NULL != mImpl->mEditableControlInterface ) + { + mImpl->mEditableControlInterface->TextChanged(); + } } void Controller::GetText( std::string& text ) const { - if( ! mImpl->IsShowingPlaceholderText() ) + if( !mImpl->IsShowingPlaceholderText() ) { - Vector& utf32Characters = mImpl->mLogicalModel->mText; - - if( 0u != utf32Characters.Count() ) - { - Utf32ToUtf8( &utf32Characters[0], utf32Characters.Count(), text ); - } + // Retrieves the text string. + mImpl->GetText( 0u, text ); } else { @@ -200,19 +512,9 @@ void Controller::GetText( std::string& text ) const } } -unsigned int Controller::GetLogicalCursorPosition() const -{ - if( mImpl->mEventData ) - { - return mImpl->mEventData->mPrimaryCursorPosition; - } - - return 0u; -} - void Controller::SetPlaceholderText( PlaceholderType type, const std::string& text ) { - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { if( PLACEHOLDER_TYPE_INACTIVE == type ) { @@ -225,7 +527,7 @@ void Controller::SetPlaceholderText( PlaceholderType type, const std::string& te // Update placeholder if there is no text if( mImpl->IsShowingPlaceholderText() || - 0u == mImpl->mLogicalModel->mText.Count() ) + ( 0u == mImpl->mModel->mLogicalModel->mText.Count() ) ) { ShowPlaceholderText(); } @@ -234,7 +536,7 @@ void Controller::SetPlaceholderText( PlaceholderType type, const std::string& te void Controller::GetPlaceholderText( PlaceholderType type, std::string& text ) const { - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { if( PLACEHOLDER_TYPE_INACTIVE == type ) { @@ -247,42 +549,43 @@ void Controller::GetPlaceholderText( PlaceholderType type, std::string& text ) c } } -void Controller::SetMaximumNumberOfCharacters( int maxCharacters ) +void Controller::UpdateAfterFontChange( const std::string& newDefaultFont ) { - if ( maxCharacters >= 0 ) + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::UpdateAfterFontChange\n"); + + if( !mImpl->mFontDefaults->familyDefined ) // If user defined font then should not update when system font changes { - mImpl->mMaximumNumberOfCharacters = maxCharacters; + DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::UpdateAfterFontChange newDefaultFont(%s)\n", newDefaultFont.c_str() ); + mImpl->mFontDefaults->mFontDescription.family = newDefaultFont; + + ClearFontData(); + + mImpl->RequestRelayout(); } } -int Controller::GetMaximumNumberOfCharacters() -{ - return mImpl->mMaximumNumberOfCharacters; -} +// public : Default style & Input style void Controller::SetDefaultFontFamily( const std::string& defaultFontFamily ) { - if( !mImpl->mFontDefaults ) + if( NULL == mImpl->mFontDefaults ) { mImpl->mFontDefaults = new FontDefaults(); } mImpl->mFontDefaults->mFontDescription.family = defaultFontFamily; DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetDefaultFontFamily %s\n", defaultFontFamily.c_str()); - mImpl->mUserDefinedFontFamily = true; + mImpl->mFontDefaults->familyDefined = !defaultFontFamily.empty(); // Clear the font-specific data ClearFontData(); - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->mRecalculateNaturalSize = true; - mImpl->RequestRelayout(); } const std::string& Controller::GetDefaultFontFamily() const { - if( mImpl->mFontDefaults ) + if( NULL != mImpl->mFontDefaults ) { return mImpl->mFontDefaults->mFontDescription.family; } @@ -290,47 +593,61 @@ const std::string& Controller::GetDefaultFontFamily() const return EMPTY_STRING; } -void Controller::SetDefaultFontStyle( const std::string& style ) +void Controller::SetDefaultFontWeight( FontWeight weight ) { - if( !mImpl->mFontDefaults ) + if( NULL == mImpl->mFontDefaults ) { mImpl->mFontDefaults = new FontDefaults(); } - mImpl->mFontDefaults->mFontStyle = style; + mImpl->mFontDefaults->mFontDescription.weight = weight; + mImpl->mFontDefaults->weightDefined = true; + + // Clear the font-specific data + ClearFontData(); + + mImpl->RequestRelayout(); } -const std::string& Controller::GetDefaultFontStyle() const +bool Controller::IsDefaultFontWeightDefined() const { - if( mImpl->mFontDefaults ) + return mImpl->mFontDefaults->weightDefined; +} + +FontWeight Controller::GetDefaultFontWeight() const +{ + if( NULL != mImpl->mFontDefaults ) { - return mImpl->mFontDefaults->mFontStyle; + return mImpl->mFontDefaults->mFontDescription.weight; } - return EMPTY_STRING; + return TextAbstraction::FontWeight::NORMAL; } void Controller::SetDefaultFontWidth( FontWidth width ) { - if( !mImpl->mFontDefaults ) + if( NULL == mImpl->mFontDefaults ) { mImpl->mFontDefaults = new FontDefaults(); } mImpl->mFontDefaults->mFontDescription.width = width; + mImpl->mFontDefaults->widthDefined = true; // Clear the font-specific data ClearFontData(); - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->mRecalculateNaturalSize = true; - mImpl->RequestRelayout(); } +bool Controller::IsDefaultFontWidthDefined() const +{ + return mImpl->mFontDefaults->widthDefined; +} + FontWidth Controller::GetDefaultFontWidth() const { - if( mImpl->mFontDefaults ) + if( NULL != mImpl->mFontDefaults ) { return mImpl->mFontDefaults->mFontDescription.width; } @@ -338,55 +655,30 @@ FontWidth Controller::GetDefaultFontWidth() const return TextAbstraction::FontWidth::NORMAL; } -void Controller::SetDefaultFontWeight( FontWeight weight ) +void Controller::SetDefaultFontSlant( FontSlant slant ) { - if( !mImpl->mFontDefaults ) + if( NULL == mImpl->mFontDefaults ) { mImpl->mFontDefaults = new FontDefaults(); } - mImpl->mFontDefaults->mFontDescription.weight = weight; + mImpl->mFontDefaults->mFontDescription.slant = slant; + mImpl->mFontDefaults->slantDefined = true; // Clear the font-specific data ClearFontData(); - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->mRecalculateNaturalSize = true; - mImpl->RequestRelayout(); } -FontWeight Controller::GetDefaultFontWeight() const -{ - if( mImpl->mFontDefaults ) - { - return mImpl->mFontDefaults->mFontDescription.weight; - } - - return TextAbstraction::FontWeight::NORMAL; -} - -void Controller::SetDefaultFontSlant( FontSlant slant ) +bool Controller::IsDefaultFontSlantDefined() const { - if( !mImpl->mFontDefaults ) - { - mImpl->mFontDefaults = new FontDefaults(); - } - - mImpl->mFontDefaults->mFontDescription.slant = slant; - - // Clear the font-specific data - ClearFontData(); - - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->mRecalculateNaturalSize = true; - - mImpl->RequestRelayout(); + return mImpl->mFontDefaults->slantDefined; } FontSlant Controller::GetDefaultFontSlant() const { - if( mImpl->mFontDefaults ) + if( NULL != mImpl->mFontDefaults ) { return mImpl->mFontDefaults->mFontDescription.slant; } @@ -394,151 +686,113 @@ FontSlant Controller::GetDefaultFontSlant() const return TextAbstraction::FontSlant::NORMAL; } -void Controller::SetDefaultPointSize( float pointSize ) +void Controller::SetDefaultFontSize( float fontSize, FontSizeType type ) { - if( !mImpl->mFontDefaults ) + if( NULL == mImpl->mFontDefaults ) { mImpl->mFontDefaults = new FontDefaults(); } - mImpl->mFontDefaults->mDefaultPointSize = pointSize; - - unsigned int horizontalDpi( 0u ); - unsigned int verticalDpi( 0u ); - mImpl->mFontClient.GetDpi( horizontalDpi, verticalDpi ); + switch( type ) + { + case POINT_SIZE: + { + mImpl->mFontDefaults->mDefaultPointSize = fontSize; + mImpl->mFontDefaults->sizeDefined = true; + break; + } + case PIXEL_SIZE: + { + // Point size = Pixel size * 72 / DPI + unsigned int horizontalDpi = 0u; + unsigned int verticalDpi = 0u; + TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get(); + fontClient.GetDpi( horizontalDpi, verticalDpi ); - // Adjust the metrics if the fixed-size font should be down-scaled - int maxEmojiSize( pointSize/POINTS_PER_INCH * verticalDpi ); - DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetDefaultPointSize %p setting MaxEmojiSize %d\n", this, maxEmojiSize ); - mImpl->mMetrics->SetMaxEmojiSize( maxEmojiSize ); + mImpl->mFontDefaults->mDefaultPointSize = ( fontSize * 72 ) / horizontalDpi; + mImpl->mFontDefaults->sizeDefined = true; + break; + } + default: + { + DALI_ASSERT_ALWAYS( false ); + } + } // Clear the font-specific data ClearFontData(); - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->mRecalculateNaturalSize = true; - mImpl->RequestRelayout(); } -float Controller::GetDefaultPointSize() const +float Controller::GetDefaultFontSize( FontSizeType type ) const { - if( mImpl->mFontDefaults ) + float value = 0.0f; + if( NULL != mImpl->mFontDefaults ) { - return mImpl->mFontDefaults->mDefaultPointSize; - } - - return 0.0f; -} - -void Controller::UpdateAfterFontChange( std::string& newDefaultFont ) -{ - DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::UpdateAfterFontChange"); + switch( type ) + { + case POINT_SIZE: + { + value = mImpl->mFontDefaults->mDefaultPointSize; + break; + } + case PIXEL_SIZE: + { + // Pixel size = Point size * DPI / 72 + unsigned int horizontalDpi = 0u; + unsigned int verticalDpi = 0u; + TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get(); + fontClient.GetDpi( horizontalDpi, verticalDpi ); - if ( !mImpl->mUserDefinedFontFamily ) // If user defined font then should not update when system font changes - { - DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::UpdateAfterFontChange newDefaultFont(%s)\n", newDefaultFont.c_str() ); - ClearFontData(); - mImpl->mFontDefaults->mFontDescription.family = newDefaultFont; - mImpl->UpdateModel( ALL_OPERATIONS ); - mImpl->QueueModifyEvent( ModifyEvent::TEXT_REPLACED ); - mImpl->mRecalculateNaturalSize = true; - mImpl->RequestRelayout(); + value = mImpl->mFontDefaults->mDefaultPointSize * horizontalDpi / 72; + break; + } + default: + { + DALI_ASSERT_ALWAYS( false ); + } + } + return value; } + + return value; } -void Controller::SetTextColor( const Vector4& textColor ) +void Controller::SetDefaultColor( const Vector4& color ) { - mImpl->mTextColor = textColor; + mImpl->mTextColor = color; if( !mImpl->IsShowingPlaceholderText() ) { - mImpl->mVisualModel->SetTextColor( textColor ); + mImpl->mModel->mVisualModel->SetTextColor( color ); mImpl->RequestRelayout(); } } -const Vector4& Controller::GetTextColor() const +const Vector4& Controller::GetDefaultColor() const { return mImpl->mTextColor; } -bool Controller::RemoveText( int cursorOffset, int numberOfChars ) -{ - bool removed( false ); - - DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p mText.Count() %d cursor %d cursorOffset %d numberOfChars %d\n", - this, mImpl->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition, cursorOffset, numberOfChars ); - - if( !mImpl->IsShowingPlaceholderText() ) - { - // Delete at current cursor position - Vector& currentText = mImpl->mLogicalModel->mText; - CharacterIndex& oldCursorIndex = mImpl->mEventData->mPrimaryCursorPosition; - - CharacterIndex cursorIndex = oldCursorIndex; - - // Validate the cursor position & number of characters - if( static_cast< CharacterIndex >( std::abs( cursorOffset ) ) <= cursorIndex ) - { - cursorIndex = oldCursorIndex + cursorOffset; - } - - if( ( cursorIndex + numberOfChars ) > currentText.Count() ) - { - numberOfChars = currentText.Count() - cursorIndex; - } - - if( ( cursorIndex + numberOfChars ) <= currentText.Count() ) - { - // Update the input style and remove the text's style before removing the text. - if( mImpl->mEventData ) - { - // Set first the default input style. - mImpl->RetrieveDefaultInputStyle( mImpl->mEventData->mInputStyle ); - - // Update the input style. - mImpl->mLogicalModel->RetrieveStyle( cursorIndex, mImpl->mEventData->mInputStyle ); - - // Remove the text's style before removing the text. - mImpl->mLogicalModel->UpdateTextStyleRuns( cursorIndex, -numberOfChars ); - } - - // Remove the characters. - Vector::Iterator first = currentText.Begin() + cursorIndex; - Vector::Iterator last = first + numberOfChars; - - currentText.Erase( first, last ); - - // Cursor position retreat - oldCursorIndex = cursorIndex; - - DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p removed %d\n", this, numberOfChars ); - removed = true; - } - } - - return removed; -} - void Controller::SetPlaceholderTextColor( const Vector4& textColor ) { - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { mImpl->mEventData->mPlaceholderTextColor = textColor; } if( mImpl->IsShowingPlaceholderText() ) { - mImpl->mVisualModel->SetTextColor( textColor ); + mImpl->mModel->mVisualModel->SetTextColor( textColor ); mImpl->RequestRelayout(); } } const Vector4& Controller::GetPlaceholderTextColor() const { - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { return mImpl->mEventData->mPlaceholderTextColor; } @@ -548,69 +802,121 @@ const Vector4& Controller::GetPlaceholderTextColor() const void Controller::SetShadowOffset( const Vector2& shadowOffset ) { - mImpl->mVisualModel->SetShadowOffset( shadowOffset ); + mImpl->mModel->mVisualModel->SetShadowOffset( shadowOffset ); mImpl->RequestRelayout(); } const Vector2& Controller::GetShadowOffset() const { - return mImpl->mVisualModel->GetShadowOffset(); + return mImpl->mModel->mVisualModel->GetShadowOffset(); } void Controller::SetShadowColor( const Vector4& shadowColor ) { - mImpl->mVisualModel->SetShadowColor( shadowColor ); + mImpl->mModel->mVisualModel->SetShadowColor( shadowColor ); mImpl->RequestRelayout(); } const Vector4& Controller::GetShadowColor() const { - return mImpl->mVisualModel->GetShadowColor(); + return mImpl->mModel->mVisualModel->GetShadowColor(); } void Controller::SetUnderlineColor( const Vector4& color ) { - mImpl->mVisualModel->SetUnderlineColor( color ); + mImpl->mModel->mVisualModel->SetUnderlineColor( color ); mImpl->RequestRelayout(); } const Vector4& Controller::GetUnderlineColor() const { - return mImpl->mVisualModel->GetUnderlineColor(); + return mImpl->mModel->mVisualModel->GetUnderlineColor(); } void Controller::SetUnderlineEnabled( bool enabled ) { - mImpl->mVisualModel->SetUnderlineEnabled( enabled ); + mImpl->mModel->mVisualModel->SetUnderlineEnabled( enabled ); mImpl->RequestRelayout(); } bool Controller::IsUnderlineEnabled() const { - return mImpl->mVisualModel->IsUnderlineEnabled(); + return mImpl->mModel->mVisualModel->IsUnderlineEnabled(); } void Controller::SetUnderlineHeight( float height ) { - mImpl->mVisualModel->SetUnderlineHeight( height ); + mImpl->mModel->mVisualModel->SetUnderlineHeight( height ); mImpl->RequestRelayout(); } float Controller::GetUnderlineHeight() const { - return mImpl->mVisualModel->GetUnderlineHeight(); + return mImpl->mModel->mVisualModel->GetUnderlineHeight(); +} + +void Controller::SetDefaultEmbossProperties( const std::string& embossProperties ) +{ + if( NULL == mImpl->mEmbossDefaults ) + { + mImpl->mEmbossDefaults = new EmbossDefaults(); + } + + mImpl->mEmbossDefaults->properties = embossProperties; +} + +const std::string& Controller::GetDefaultEmbossProperties() const +{ + if( NULL != mImpl->mEmbossDefaults ) + { + return mImpl->mEmbossDefaults->properties; + } + + return EMPTY_STRING; +} + +void Controller::SetDefaultOutlineProperties( const std::string& outlineProperties ) +{ + if( NULL == mImpl->mOutlineDefaults ) + { + mImpl->mOutlineDefaults = new OutlineDefaults(); + } + + mImpl->mOutlineDefaults->properties = outlineProperties; +} + +const std::string& Controller::GetDefaultOutlineProperties() const +{ + if( NULL != mImpl->mOutlineDefaults ) + { + return mImpl->mOutlineDefaults->properties; + } + + return EMPTY_STRING; +} + +void Controller::SetDefaultLineSpacing( float lineSpacing ) +{ + //TODO finish implementation + mImpl->mLayoutEngine.SetDefaultLineSpacing( lineSpacing ); +} + +float Controller::GetDefaultLineSpacing() const +{ + return mImpl->mLayoutEngine.GetDefaultLineSpacing(); } void Controller::SetInputColor( const Vector4& color ) { - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { mImpl->mEventData->mInputStyle.textColor = color; + mImpl->mEventData->mInputStyle.isDefaultColor = false; if( EventData::SELECTING == mImpl->mEventData->mState ) { @@ -621,10 +927,10 @@ void Controller::SetInputColor( const Vector4& color ) const Length lengthOfSelectedText = ( handlesCrossed ? mImpl->mEventData->mLeftSelectionPosition : mImpl->mEventData->mRightSelectionPosition ) - startOfSelectedText; // Add the color run. - const VectorBase::SizeType numberOfRuns = mImpl->mLogicalModel->mColorRuns.Count(); - mImpl->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u ); + const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mColorRuns.Count(); + mImpl->mModel->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u ); - ColorRun& colorRun = *( mImpl->mLogicalModel->mColorRuns.Begin() + numberOfRuns ); + ColorRun& colorRun = *( mImpl->mModel->mLogicalModel->mColorRuns.Begin() + numberOfRuns ); colorRun.color = color; colorRun.characterRun.characterIndex = startOfSelectedText; colorRun.characterRun.numberOfCharacters = lengthOfSelectedText; @@ -632,13 +938,17 @@ void Controller::SetInputColor( const Vector4& color ) // Request to relayout. mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | COLOR ); mImpl->RequestRelayout(); + + mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText; } } } const Vector4& Controller::GetInputColor() const { - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { return mImpl->mEventData->mInputStyle.textColor; } @@ -648,700 +958,850 @@ const Vector4& Controller::GetInputColor() const } -void Controller::SetEnableCursorBlink( bool enable ) +void Controller::SetInputFontFamily( const std::string& fontFamily ) { - DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "TextInput disabled" ); - - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { - mImpl->mEventData->mCursorBlinkEnabled = enable; + mImpl->mEventData->mInputStyle.familyName = fontFamily; + mImpl->mEventData->mInputStyle.isFamilyDefined = true; - if( !enable && - mImpl->mEventData->mDecorator ) + if( EventData::SELECTING == mImpl->mEventData->mState ) { - mImpl->mEventData->mDecorator->StopCursorBlink(); + CharacterIndex startOfSelectedText = 0u; + Length lengthOfSelectedText = 0u; + FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData, + mImpl->mModel->mLogicalModel, + startOfSelectedText, + lengthOfSelectedText ); + + fontDescriptionRun.familyLength = fontFamily.size(); + fontDescriptionRun.familyName = new char[fontDescriptionRun.familyLength]; + memcpy( fontDescriptionRun.familyName, fontFamily.c_str(), fontDescriptionRun.familyLength ); + fontDescriptionRun.familyDefined = true; + + // The memory allocated for the font family name is freed when the font description is removed from the logical model. + + // Request to relayout. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + VALIDATE_FONTS | + SHAPE_TEXT | + GET_GLYPH_METRICS | + LAYOUT | + UPDATE_LAYOUT_SIZE | + REORDER | + ALIGN ); + mImpl->mRecalculateNaturalSize = true; + mImpl->RequestRelayout(); + + mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText; + + // As the font changes, recalculate the handle positions is needed. + mImpl->mEventData->mUpdateLeftSelectionPosition = true; + mImpl->mEventData->mUpdateRightSelectionPosition = true; + mImpl->mEventData->mUpdateHighlightBox = true; + mImpl->mEventData->mScrollAfterUpdatePosition = true; } } } -bool Controller::GetEnableCursorBlink() const +const std::string& Controller::GetInputFontFamily() const { - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { - return mImpl->mEventData->mCursorBlinkEnabled; + return mImpl->mEventData->mInputStyle.familyName; } - return false; + // Return the default font's family if there is no EventData. + return GetDefaultFontFamily(); } -const Vector2& Controller::GetScrollPosition() const +void Controller::SetInputFontWeight( FontWeight weight ) { - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { - return mImpl->mEventData->mScrollPosition; - } + mImpl->mEventData->mInputStyle.weight = weight; + mImpl->mEventData->mInputStyle.isWeightDefined = true; + + if( EventData::SELECTING == mImpl->mEventData->mState ) + { + CharacterIndex startOfSelectedText = 0u; + Length lengthOfSelectedText = 0u; + FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData, + mImpl->mModel->mLogicalModel, + startOfSelectedText, + lengthOfSelectedText ); + + fontDescriptionRun.weight = weight; + fontDescriptionRun.weightDefined = true; + + // Request to relayout. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + VALIDATE_FONTS | + SHAPE_TEXT | + GET_GLYPH_METRICS | + LAYOUT | + UPDATE_LAYOUT_SIZE | + REORDER | + ALIGN ); + mImpl->mRecalculateNaturalSize = true; + mImpl->RequestRelayout(); - return Vector2::ZERO; + mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText; + + // As the font might change, recalculate the handle positions is needed. + mImpl->mEventData->mUpdateLeftSelectionPosition = true; + mImpl->mEventData->mUpdateRightSelectionPosition = true; + mImpl->mEventData->mUpdateHighlightBox = true; + mImpl->mEventData->mScrollAfterUpdatePosition = true; + } + } } -const Vector2& Controller::GetAlignmentOffset() const +bool Controller::IsInputFontWeightDefined() const { - return mImpl->mAlignmentOffset; + bool defined = false; + + if( NULL != mImpl->mEventData ) + { + defined = mImpl->mEventData->mInputStyle.isWeightDefined; + } + + return defined; } -Vector3 Controller::GetNaturalSize() +FontWeight Controller::GetInputFontWeight() const { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetNaturalSize\n" ); - Vector3 naturalSize; + if( NULL != mImpl->mEventData ) + { + return mImpl->mEventData->mInputStyle.weight; + } - // Make sure the model is up-to-date before layouting - ProcessModifyEvents(); + return GetDefaultFontWeight(); +} - if( mImpl->mRecalculateNaturalSize ) +void Controller::SetInputFontWidth( FontWidth width ) +{ + if( NULL != mImpl->mEventData ) { - // Operations that can be done only once until the text changes. - const OperationsMask onlyOnceOperations = static_cast( CONVERT_TO_UTF32 | - GET_SCRIPTS | - VALIDATE_FONTS | - GET_LINE_BREAKS | - GET_WORD_BREAKS | - BIDI_INFO | - SHAPE_TEXT | - GET_GLYPH_METRICS ); - // Make sure the model is up-to-date before layouting - mImpl->UpdateModel( onlyOnceOperations ); + mImpl->mEventData->mInputStyle.width = width; + mImpl->mEventData->mInputStyle.isWidthDefined = true; - // Operations that need to be done if the size changes. - const OperationsMask sizeOperations = static_cast( LAYOUT | - ALIGN | - REORDER ); + if( EventData::SELECTING == mImpl->mEventData->mState ) + { + CharacterIndex startOfSelectedText = 0u; + Length lengthOfSelectedText = 0u; + FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData, + mImpl->mModel->mLogicalModel, + startOfSelectedText, + lengthOfSelectedText ); - DoRelayout( Size( MAX_FLOAT, MAX_FLOAT ), - static_cast( onlyOnceOperations | - sizeOperations ), - naturalSize.GetVectorXY() ); + fontDescriptionRun.width = width; + fontDescriptionRun.widthDefined = true; - // Do not do again the only once operations. - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending & ~onlyOnceOperations ); + // Request to relayout. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + VALIDATE_FONTS | + SHAPE_TEXT | + GET_GLYPH_METRICS | + LAYOUT | + UPDATE_LAYOUT_SIZE | + REORDER | + ALIGN ); + mImpl->mRecalculateNaturalSize = true; + mImpl->RequestRelayout(); - // Do the size related operations again. - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | sizeOperations ); + mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText; - // Stores the natural size to avoid recalculate it again - // unless the text/style changes. - mImpl->mVisualModel->SetNaturalSize( naturalSize.GetVectorXY() ); + // As the font might change, recalculate the handle positions is needed. + mImpl->mEventData->mUpdateLeftSelectionPosition = true; + mImpl->mEventData->mUpdateRightSelectionPosition = true; + mImpl->mEventData->mUpdateHighlightBox = true; + mImpl->mEventData->mScrollAfterUpdatePosition = true; + } + } +} - mImpl->mRecalculateNaturalSize = false; +bool Controller::IsInputFontWidthDefined() const +{ + bool defined = false; - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize calculated %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z ); - } - else + if( NULL != mImpl->mEventData ) { - naturalSize = mImpl->mVisualModel->GetNaturalSize(); - - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize cached %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z ); + defined = mImpl->mEventData->mInputStyle.isWidthDefined; } - naturalSize.x = ConvertToEven( naturalSize.x ); - naturalSize.y = ConvertToEven( naturalSize.y ); - - return naturalSize; + return defined; } -float Controller::GetHeightForWidth( float width ) +FontWidth Controller::GetInputFontWidth() const { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetHeightForWidth %p width %f\n", this, width ); - // Make sure the model is up-to-date before layouting - ProcessModifyEvents(); - - Size layoutSize; - if( fabsf( width - mImpl->mVisualModel->mControlSize.width ) > Math::MACHINE_EPSILON_1000 ) + if( NULL != mImpl->mEventData ) { - // Operations that can be done only once until the text changes. - const OperationsMask onlyOnceOperations = static_cast( CONVERT_TO_UTF32 | - GET_SCRIPTS | - VALIDATE_FONTS | - GET_LINE_BREAKS | - GET_WORD_BREAKS | - BIDI_INFO | - SHAPE_TEXT | - GET_GLYPH_METRICS ); - // Make sure the model is up-to-date before layouting - mImpl->UpdateModel( onlyOnceOperations ); + return mImpl->mEventData->mInputStyle.width; + } - // Operations that need to be done if the size changes. - const OperationsMask sizeOperations = static_cast( LAYOUT | - ALIGN | - REORDER ); + return GetDefaultFontWidth(); +} - DoRelayout( Size( width, MAX_FLOAT ), - static_cast( onlyOnceOperations | - sizeOperations ), - layoutSize ); +void Controller::SetInputFontSlant( FontSlant slant ) +{ + if( NULL != mImpl->mEventData ) + { + mImpl->mEventData->mInputStyle.slant = slant; + mImpl->mEventData->mInputStyle.isSlantDefined = true; - // Do not do again the only once operations. - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending & ~onlyOnceOperations ); + if( EventData::SELECTING == mImpl->mEventData->mState ) + { + CharacterIndex startOfSelectedText = 0u; + Length lengthOfSelectedText = 0u; + FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData, + mImpl->mModel->mLogicalModel, + startOfSelectedText, + lengthOfSelectedText ); - // Do the size related operations again. - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | sizeOperations ); - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth calculated %f\n", layoutSize.height ); + fontDescriptionRun.slant = slant; + fontDescriptionRun.slantDefined = true; + + // Request to relayout. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + VALIDATE_FONTS | + SHAPE_TEXT | + GET_GLYPH_METRICS | + LAYOUT | + UPDATE_LAYOUT_SIZE | + REORDER | + ALIGN ); + mImpl->mRecalculateNaturalSize = true; + mImpl->RequestRelayout(); + + mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText; + + // As the font might change, recalculate the handle positions is needed. + mImpl->mEventData->mUpdateLeftSelectionPosition = true; + mImpl->mEventData->mUpdateRightSelectionPosition = true; + mImpl->mEventData->mUpdateHighlightBox = true; + mImpl->mEventData->mScrollAfterUpdatePosition = true; + } } - else +} + +bool Controller::IsInputFontSlantDefined() const +{ + bool defined = false; + + if( NULL != mImpl->mEventData ) { - layoutSize = mImpl->mVisualModel->GetActualSize(); - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth cached %f\n", layoutSize.height ); + defined = mImpl->mEventData->mInputStyle.isSlantDefined; } - return layoutSize.height; + return defined; } -bool Controller::Relayout( const Size& size ) +FontSlant Controller::GetInputFontSlant() const { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::Relayout %p size %f,%f\n", this, size.width, size.height ); - - if( ( size.width < Math::MACHINE_EPSILON_1000 ) || ( size.height < Math::MACHINE_EPSILON_1000 ) ) + if( NULL != mImpl->mEventData ) { - bool glyphsRemoved( false ); - if( 0u != mImpl->mVisualModel->mGlyphPositions.Count() ) - { - mImpl->mVisualModel->mGlyphPositions.Clear(); - glyphsRemoved = true; - } - // Not worth to relayout if width or height is equal to zero. - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout (skipped)\n" ); - return glyphsRemoved; + return mImpl->mEventData->mInputStyle.slant; } - const bool newSize = ( size != mImpl->mVisualModel->mControlSize ); + return GetDefaultFontSlant(); +} - if( newSize ) +void Controller::SetInputFontPointSize( float size ) +{ + if( NULL != mImpl->mEventData ) { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "new size (previous size %f,%f)\n", mImpl->mVisualModel->mControlSize.width, mImpl->mVisualModel->mControlSize.height ); + mImpl->mEventData->mInputStyle.size = size; + mImpl->mEventData->mInputStyle.isSizeDefined = true; - // Layout operations that need to be done if the size changes. - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | - LAYOUT | - ALIGN | - UPDATE_ACTUAL_SIZE | - REORDER ); + if( EventData::SELECTING == mImpl->mEventData->mState ) + { + CharacterIndex startOfSelectedText = 0u; + Length lengthOfSelectedText = 0u; + FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData, + mImpl->mModel->mLogicalModel, + startOfSelectedText, + lengthOfSelectedText ); - mImpl->mVisualModel->mControlSize = size; - } + fontDescriptionRun.size = static_cast( size * 64.f ); + fontDescriptionRun.sizeDefined = true; - // Whether there are modify events. - const bool isModifyEventsEmpty = 0u == mImpl->mModifyEvents.Count(); + // Request to relayout. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + VALIDATE_FONTS | + SHAPE_TEXT | + GET_GLYPH_METRICS | + LAYOUT | + UPDATE_LAYOUT_SIZE | + REORDER | + ALIGN ); + mImpl->mRecalculateNaturalSize = true; + mImpl->RequestRelayout(); - // Make sure the model is up-to-date before layouting. - ProcessModifyEvents(); - mImpl->UpdateModel( mImpl->mOperationsPending ); + mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText; + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText; - // Style operations that need to be done if the text is modified. - if( !isModifyEventsEmpty ) - { - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | - COLOR ); + // As the font might change, recalculate the handle positions is needed. + mImpl->mEventData->mUpdateLeftSelectionPosition = true; + mImpl->mEventData->mUpdateRightSelectionPosition = true; + mImpl->mEventData->mUpdateHighlightBox = true; + mImpl->mEventData->mScrollAfterUpdatePosition = true; + } } +} - // Apply the style runs if text is modified. - bool updated = mImpl->UpdateModelStyle( mImpl->mOperationsPending ); +float Controller::GetInputFontPointSize() const +{ + if( NULL != mImpl->mEventData ) + { + return mImpl->mEventData->mInputStyle.size; + } - // Layout the text. - Size layoutSize; - updated = DoRelayout( mImpl->mVisualModel->mControlSize, - mImpl->mOperationsPending, - layoutSize ) || updated; + // Return the default font's point size if there is no EventData. + return GetDefaultFontSize( Text::Controller::POINT_SIZE ); +} - // Do not re-do any operation until something changes. - mImpl->mOperationsPending = NO_OPERATION; +void Controller::SetInputLineSpacing( float lineSpacing ) +{ + if( NULL != mImpl->mEventData ) + { + mImpl->mEventData->mInputStyle.lineSpacing = lineSpacing; + mImpl->mEventData->mInputStyle.isLineSpacingDefined = true; + } +} - // Keep the current offset and alignment as it will be used to update the decorator's positions (if the size changes). - Vector2 offset; - if( newSize && mImpl->mEventData ) +float Controller::GetInputLineSpacing() const +{ + if( NULL != mImpl->mEventData ) { - offset = mImpl->mAlignmentOffset + mImpl->mEventData->mScrollPosition; + return mImpl->mEventData->mInputStyle.lineSpacing; } - // After doing the text layout, the alignment offset to place the actor in the desired position can be calculated. - CalculateTextAlignment( size ); + return 0.f; +} - if( mImpl->mEventData ) +void Controller::SetInputShadowProperties( const std::string& shadowProperties ) +{ + if( NULL != mImpl->mEventData ) { - if( newSize ) - { - // If there is a new size, the scroll position needs to be clamped. - mImpl->ClampHorizontalScroll( layoutSize ); - - // Update the decorator's positions is needed if there is a new size. - mImpl->mEventData->mDecorator->UpdatePositions( mImpl->mAlignmentOffset + mImpl->mEventData->mScrollPosition - offset ); - } + mImpl->mEventData->mInputStyle.shadowProperties = shadowProperties; + } +} - // Move the cursor, grab handle etc. - updated = mImpl->ProcessInputEvents() || updated; +const std::string& Controller::GetInputShadowProperties() const +{ + if( NULL != mImpl->mEventData ) + { + return mImpl->mEventData->mInputStyle.shadowProperties; } - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout\n" ); - return updated; + return EMPTY_STRING; } -void Controller::ProcessModifyEvents() +void Controller::SetInputUnderlineProperties( const std::string& underlineProperties ) { - Vector& events = mImpl->mModifyEvents; - - if( 0u == events.Count() ) + if( NULL != mImpl->mEventData ) { - // Nothing to do. - return; + mImpl->mEventData->mInputStyle.underlineProperties = underlineProperties; } +} - for( Vector::ConstIterator it = events.Begin(), - endIt = events.End(); - it != endIt; - ++it ) +const std::string& Controller::GetInputUnderlineProperties() const +{ + if( NULL != mImpl->mEventData ) { - const ModifyEvent& event = *it; + return mImpl->mEventData->mInputStyle.underlineProperties; + } - if( ModifyEvent::TEXT_REPLACED == event.type ) - { - // A (single) replace event should come first, otherwise we wasted time processing NOOP events - DALI_ASSERT_DEBUG( it == events.Begin() && "Unexpected TEXT_REPLACED event" ); + return EMPTY_STRING; +} - TextReplacedEvent(); - } - else if( ModifyEvent::TEXT_INSERTED == event.type ) - { - TextInsertedEvent(); - } - else if( ModifyEvent::TEXT_DELETED == event.type ) - { - // Placeholder-text cannot be deleted - if( !mImpl->IsShowingPlaceholderText() ) - { - TextDeletedEvent(); - } - } +void Controller::SetInputEmbossProperties( const std::string& embossProperties ) +{ + if( NULL != mImpl->mEventData ) + { + mImpl->mEventData->mInputStyle.embossProperties = embossProperties; } +} - if( mImpl->mEventData ) +const std::string& Controller::GetInputEmbossProperties() const +{ + if( NULL != mImpl->mEventData ) { - // When the text is being modified, delay cursor blinking - mImpl->mEventData->mDecorator->DelayCursorBlink(); + return mImpl->mEventData->mInputStyle.embossProperties; } - // Discard temporary text - events.Clear(); + return GetDefaultEmbossProperties(); } -void Controller::ResetText() +void Controller::SetInputOutlineProperties( const std::string& outlineProperties ) { - // Reset buffers. - mImpl->mLogicalModel->mText.Clear(); - ClearModelData(); - - // We have cleared everything including the placeholder-text - mImpl->PlaceholderCleared(); + if( NULL != mImpl->mEventData ) + { + mImpl->mEventData->mInputStyle.outlineProperties = outlineProperties; + } +} - // The natural size needs to be re-calculated. - mImpl->mRecalculateNaturalSize = true; +const std::string& Controller::GetInputOutlineProperties() const +{ + if( NULL != mImpl->mEventData ) + { + return mImpl->mEventData->mInputStyle.outlineProperties; + } - // Apply modifications to the model - mImpl->mOperationsPending = ALL_OPERATIONS; + return GetDefaultOutlineProperties(); } -void Controller::ResetCursorPosition( CharacterIndex cursorIndex ) +void Controller::SetInputModePassword( bool passwordInput ) { - // Reset the cursor position if( NULL != mImpl->mEventData ) { - mImpl->mEventData->mPrimaryCursorPosition = cursorIndex; - - // Update the cursor if it's in editing mode. - if ( EventData::IsEditingState( mImpl->mEventData->mState ) ) - { - mImpl->mEventData->mUpdateCursorPosition = true; - } + mImpl->mEventData->mPasswordInput = passwordInput; } } -void Controller::ResetScrollPosition() +bool Controller::IsInputModePassword() { if( NULL != mImpl->mEventData ) { - // Reset the scroll position. - mImpl->mEventData->mScrollPosition = Vector2::ZERO; - mImpl->mEventData->mScrollAfterUpdatePosition = true; + return mImpl->mEventData->mPasswordInput; } + return false; } -void Controller::TextReplacedEvent() +void Controller::SetNoTextDoubleTapAction( NoTextTap::Action action ) { - // Reset buffers. - ClearModelData(); - - // The natural size needs to be re-calculated. - mImpl->mRecalculateNaturalSize = true; - - // Apply modifications to the model - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->UpdateModel( ALL_OPERATIONS ); - mImpl->mOperationsPending = static_cast( LAYOUT | - ALIGN | - UPDATE_ACTUAL_SIZE | - REORDER ); + if( NULL != mImpl->mEventData ) + { + mImpl->mEventData->mDoubleTapAction = action; + } } -void Controller::TextInsertedEvent() +Controller::NoTextTap::Action Controller::GetNoTextDoubleTapAction() const { - DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextInsertedEvent" ); + NoTextTap::Action action = NoTextTap::NO_ACTION; - // TODO - Optimize this - ClearModelData(); - - // The natural size needs to be re-calculated. - mImpl->mRecalculateNaturalSize = true; + if( NULL != mImpl->mEventData ) + { + action = mImpl->mEventData->mDoubleTapAction; + } - // Apply modifications to the model; TODO - Optimize this - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->UpdateModel( ALL_OPERATIONS ); - mImpl->mOperationsPending = static_cast( LAYOUT | - ALIGN | - UPDATE_ACTUAL_SIZE | - REORDER ); + return action; +} - // Queue a cursor reposition event; this must wait until after DoRelayout() - if ( EventData::IsEditingState( mImpl->mEventData->mState ) ) +void Controller::SetNoTextLongPressAction( NoTextTap::Action action ) +{ + if( NULL != mImpl->mEventData ) { - mImpl->mEventData->mUpdateCursorPosition = true; - mImpl->mEventData->mScrollAfterUpdatePosition = true; + mImpl->mEventData->mLongPressAction = action; } } -void Controller::TextDeletedEvent() +Controller::NoTextTap::Action Controller::GetNoTextLongPressAction() const { - DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextDeletedEvent" ); - - // TODO - Optimize this - ClearModelData(); - - // The natural size needs to be re-calculated. - mImpl->mRecalculateNaturalSize = true; - - // Apply modifications to the model; TODO - Optimize this - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->UpdateModel( ALL_OPERATIONS ); - mImpl->mOperationsPending = static_cast( LAYOUT | - ALIGN | - UPDATE_ACTUAL_SIZE | - REORDER ); + NoTextTap::Action action = NoTextTap::NO_ACTION; - // Queue a cursor reposition event; this must wait until after DoRelayout() - mImpl->mEventData->mUpdateCursorPosition = true; - if( 0u != mImpl->mLogicalModel->mText.Count() ) + if( NULL != mImpl->mEventData ) { - mImpl->mEventData->mScrollAfterDelete = true; + action = mImpl->mEventData->mLongPressAction; } + + return action; } -bool Controller::DoRelayout( const Size& size, - OperationsMask operationsRequired, - Size& layoutSize ) +bool Controller::IsUnderlineSetByString() { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout %p size %f,%f\n", this, size.width, size.height ); - bool viewUpdated( false ); + return mImpl->mUnderlineSetByString; +} - // Calculate the operations to be done. - const OperationsMask operations = static_cast( mImpl->mOperationsPending & operationsRequired ); +void Controller::UnderlineSetByString( bool setByString ) +{ + mImpl->mUnderlineSetByString = setByString; +} - if( LAYOUT & operations ) - { - // Some vectors with data needed to layout and reorder may be void - // after the first time the text has been laid out. - // Fill the vectors again. +bool Controller::IsShadowSetByString() +{ + return mImpl->mShadowSetByString; +} - const Length numberOfGlyphs = mImpl->mVisualModel->mGlyphs.Count(); +void Controller::ShadowSetByString( bool setByString ) +{ + mImpl->mShadowSetByString = setByString; +} - if( 0u == numberOfGlyphs ) - { - // Nothing else to do if there is no glyphs. - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout no glyphs, view updated true\n" ); - return true; - } +// public : Queries & retrieves. - const Vector& lineBreakInfo = mImpl->mLogicalModel->mLineBreakInfo; - const Vector& wordBreakInfo = mImpl->mLogicalModel->mWordBreakInfo; - const Vector& characterDirection = mImpl->mLogicalModel->mCharacterDirections; - const Vector& glyphs = mImpl->mVisualModel->mGlyphs; - const Vector& glyphsToCharactersMap = mImpl->mVisualModel->mGlyphsToCharacters; - const Vector& charactersPerGlyph = mImpl->mVisualModel->mCharactersPerGlyph; - const Character* const textBuffer = mImpl->mLogicalModel->mText.Begin(); +Layout::Engine& Controller::GetLayoutEngine() +{ + return mImpl->mLayoutEngine; +} - // Set the layout parameters. - LayoutParameters layoutParameters( size, - textBuffer, - lineBreakInfo.Begin(), - wordBreakInfo.Begin(), - ( 0u != characterDirection.Count() ) ? characterDirection.Begin() : NULL, - numberOfGlyphs, - glyphs.Begin(), - glyphsToCharactersMap.Begin(), - charactersPerGlyph.Begin() ); +View& Controller::GetView() +{ + return mImpl->mView; +} - // The laid-out lines. - // It's not possible to know in how many lines the text is going to be laid-out, - // but it can be resized at least with the number of 'paragraphs' to avoid - // some re-allocations. - Vector& lines = mImpl->mVisualModel->mLines; +Vector3 Controller::GetNaturalSize() +{ + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetNaturalSize\n" ); + Vector3 naturalSize; - // Delete any previous laid out lines before setting the new ones. - lines.Clear(); + // Make sure the model is up-to-date before layouting + ProcessModifyEvents(); - // The capacity of the bidirectional paragraph info is the number of paragraphs. - lines.Reserve( mImpl->mLogicalModel->mBidirectionalParagraphInfo.Capacity() ); + if( mImpl->mRecalculateNaturalSize ) + { + // Operations that can be done only once until the text changes. + const OperationsMask onlyOnceOperations = static_cast( CONVERT_TO_UTF32 | + GET_SCRIPTS | + VALIDATE_FONTS | + GET_LINE_BREAKS | + GET_WORD_BREAKS | + BIDI_INFO | + SHAPE_TEXT | + GET_GLYPH_METRICS ); - // Resize the vector of positions to have the same size than the vector of glyphs. - Vector& glyphPositions = mImpl->mVisualModel->mGlyphPositions; - glyphPositions.Resize( numberOfGlyphs ); + // Set the update info to relayout the whole text. + mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u; + mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count(); - // Whether the last character is a new paragraph character. - layoutParameters.isLastNewParagraph = TextAbstraction::IsNewParagraph( *( textBuffer + ( mImpl->mLogicalModel->mText.Count() - 1u ) ) ); - - // Update the visual model. - viewUpdated = mImpl->mLayoutEngine.LayoutText( layoutParameters, - glyphPositions, - lines, - layoutSize ); - - if( viewUpdated ) - { - // Reorder the lines - if( REORDER & operations ) - { - Vector& bidirectionalInfo = mImpl->mLogicalModel->mBidirectionalParagraphInfo; + // Make sure the model is up-to-date before layouting + mImpl->UpdateModel( onlyOnceOperations ); - // Check first if there are paragraphs with bidirectional info. - if( 0u != bidirectionalInfo.Count() ) - { - // Get the lines - const Length numberOfLines = mImpl->mVisualModel->mLines.Count(); + // Layout the text for the new width. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | LAYOUT ); - // Reorder the lines. - Vector lineBidirectionalInfoRuns; - lineBidirectionalInfoRuns.Reserve( numberOfLines ); // Reserve because is not known yet how many lines have right to left characters. - ReorderLines( bidirectionalInfo, - lines, - lineBidirectionalInfoRuns ); + // Store the actual control's size to restore later. + const Size actualControlSize = mImpl->mModel->mVisualModel->mControlSize; - // Set the bidirectional info into the model. - const Length numberOfBidirectionalInfoRuns = lineBidirectionalInfoRuns.Count(); - mImpl->mLogicalModel->SetVisualToLogicalMap( lineBidirectionalInfoRuns.Begin(), - numberOfBidirectionalInfoRuns ); + DoRelayout( Size( MAX_FLOAT, MAX_FLOAT ), + static_cast( onlyOnceOperations | + LAYOUT ), + naturalSize.GetVectorXY() ); - // Set the bidirectional info per line into the layout parameters. - layoutParameters.lineBidirectionalInfoRunsBuffer = lineBidirectionalInfoRuns.Begin(); - layoutParameters.numberOfBidirectionalInfoRuns = numberOfBidirectionalInfoRuns; + // Do not do again the only once operations. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending & ~onlyOnceOperations ); - // Get the character to glyph conversion table and set into the layout. - layoutParameters.charactersToGlyphsBuffer = mImpl->mVisualModel->mCharactersToGlyph.Begin(); + // Do the size related operations again. + const OperationsMask sizeOperations = static_cast( LAYOUT | + ALIGN | + REORDER ); + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | sizeOperations ); - // Get the glyphs per character table and set into the layout. - layoutParameters.glyphsPerCharacterBuffer = mImpl->mVisualModel->mGlyphsPerCharacter.Begin(); + // Stores the natural size to avoid recalculate it again + // unless the text/style changes. + mImpl->mModel->mVisualModel->SetNaturalSize( naturalSize.GetVectorXY() ); - // Re-layout the text. Reorder those lines with right to left characters. - mImpl->mLayoutEngine.ReLayoutRightToLeftLines( layoutParameters, - glyphPositions ); + mImpl->mRecalculateNaturalSize = false; - // Free the allocated memory used to store the conversion table in the bidirectional line info run. - for( Vector::Iterator it = lineBidirectionalInfoRuns.Begin(), - endIt = lineBidirectionalInfoRuns.End(); - it != endIt; - ++it ) - { - BidirectionalLineInfoRun& bidiLineInfo = *it; + // Clear the update info. This info will be set the next time the text is updated. + mImpl->mTextUpdateInfo.Clear(); - free( bidiLineInfo.visualToLogicalMap ); - } - } - } // REORDER + // Restore the actual control's size. + mImpl->mModel->mVisualModel->mControlSize = actualControlSize; - // Sets the actual size. - if( UPDATE_ACTUAL_SIZE & operations ) - { - mImpl->mVisualModel->SetActualSize( layoutSize ); - } - } // view updated + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize calculated %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z ); } else { - layoutSize = mImpl->mVisualModel->GetActualSize(); - } - - if( ALIGN & operations ) - { - // The laid-out lines. - Vector& lines = mImpl->mVisualModel->mLines; - - mImpl->mLayoutEngine.Align( layoutSize, - lines ); + naturalSize = mImpl->mModel->mVisualModel->GetNaturalSize(); - viewUpdated = true; + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize cached %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z ); } - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout, view updated %s\n", ( viewUpdated ? "true" : "false" ) ); - return viewUpdated; + naturalSize.x = ConvertToEven( naturalSize.x ); + naturalSize.y = ConvertToEven( naturalSize.y ); + + return naturalSize; } -void Controller::SetMultiLineEnabled( bool enable ) +float Controller::GetHeightForWidth( float width ) { - const LayoutEngine::Layout layout = enable ? LayoutEngine::MULTI_LINE_BOX : LayoutEngine::SINGLE_LINE_BOX; + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetHeightForWidth %p width %f\n", this, width ); + // Make sure the model is up-to-date before layouting + ProcessModifyEvents(); - if( layout != mImpl->mLayoutEngine.GetLayout() ) + Size layoutSize; + if( fabsf( width - mImpl->mModel->mVisualModel->mControlSize.width ) > Math::MACHINE_EPSILON_1000 ) { - // Set the layout type. - mImpl->mLayoutEngine.SetLayout( layout ); + // Operations that can be done only once until the text changes. + const OperationsMask onlyOnceOperations = static_cast( CONVERT_TO_UTF32 | + GET_SCRIPTS | + VALIDATE_FONTS | + GET_LINE_BREAKS | + GET_WORD_BREAKS | + BIDI_INFO | + SHAPE_TEXT | + GET_GLYPH_METRICS ); - // Set the flags to redo the layout operations - const OperationsMask layoutOperations = static_cast( LAYOUT | - UPDATE_ACTUAL_SIZE | - ALIGN | - REORDER ); + // Set the update info to relayout the whole text. + mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u; + mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count(); - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | layoutOperations ); + // Make sure the model is up-to-date before layouting + mImpl->UpdateModel( onlyOnceOperations ); - mImpl->RequestRelayout(); + + // Layout the text for the new width. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | LAYOUT ); + + // Store the actual control's width. + const float actualControlWidth = mImpl->mModel->mVisualModel->mControlSize.width; + + DoRelayout( Size( width, MAX_FLOAT ), + static_cast( onlyOnceOperations | + LAYOUT ), + layoutSize ); + + // Do not do again the only once operations. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending & ~onlyOnceOperations ); + + // Do the size related operations again. + const OperationsMask sizeOperations = static_cast( LAYOUT | + ALIGN | + REORDER ); + + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | sizeOperations ); + + // Clear the update info. This info will be set the next time the text is updated. + mImpl->mTextUpdateInfo.Clear(); + + // Restore the actual control's width. + mImpl->mModel->mVisualModel->mControlSize.width = actualControlWidth; + + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth calculated %f\n", layoutSize.height ); + } + else + { + layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize(); + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth cached %f\n", layoutSize.height ); } + + return layoutSize.height; } -bool Controller::IsMultiLineEnabled() const +const ModelInterface* const Controller::GetTextModel() const { - return LayoutEngine::MULTI_LINE_BOX == mImpl->mLayoutEngine.GetLayout(); + return mImpl->mModel.Get(); } -void Controller::SetHorizontalAlignment( LayoutEngine::HorizontalAlignment alignment ) +float Controller::GetScrollAmountByUserInput() { - if( alignment != mImpl->mLayoutEngine.GetHorizontalAlignment() ) - { - // Set the alignment. - mImpl->mLayoutEngine.SetHorizontalAlignment( alignment ); - - // Set the flag to redo the alignment operation. - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | ALIGN ); + float scrollAmount = 0.0f; - mImpl->RequestRelayout(); + if (NULL != mImpl->mEventData && mImpl->mEventData->mCheckScrollAmount) + { + scrollAmount = mImpl->mModel->mScrollPosition.y - mImpl->mModel->mScrollPositionLast.y; + mImpl->mEventData->mCheckScrollAmount = false; } + return scrollAmount; } -LayoutEngine::HorizontalAlignment Controller::GetHorizontalAlignment() const +bool Controller::GetTextScrollInfo( float& scrollPosition, float& controlHeight, float& layoutHeight ) { - return mImpl->mLayoutEngine.GetHorizontalAlignment(); + const Vector2& layout = mImpl->mModel->mVisualModel->GetLayoutSize(); + bool isScrolled; + + controlHeight = mImpl->mModel->mVisualModel->mControlSize.height; + layoutHeight = layout.height; + scrollPosition = mImpl->mModel->mScrollPosition.y; + isScrolled = !Equals( mImpl->mModel->mScrollPosition.y, mImpl->mModel->mScrollPositionLast.y, Math::MACHINE_EPSILON_1 ); + return isScrolled; } -void Controller::SetVerticalAlignment( LayoutEngine::VerticalAlignment alignment ) +void Controller::SetHiddenInputOption(const Property::Map& options ) { - if( alignment != mImpl->mLayoutEngine.GetVerticalAlignment() ) + if( NULL == mImpl->mHiddenInput ) { - // Set the alignment. - mImpl->mLayoutEngine.SetVerticalAlignment( alignment ); - - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | ALIGN ); - - mImpl->RequestRelayout(); + mImpl->mHiddenInput = new HiddenText( this ); } + mImpl->mHiddenInput->SetProperties(options); } -LayoutEngine::VerticalAlignment Controller::GetVerticalAlignment() const +void Controller::GetHiddenInputOption(Property::Map& options ) { - return mImpl->mLayoutEngine.GetVerticalAlignment(); + if( NULL != mImpl->mHiddenInput ) + { + mImpl->mHiddenInput->GetProperties(options); + } } -void Controller::CalculateTextAlignment( const Size& size ) +// public : Relayout. + +Controller::UpdateTextType Controller::Relayout( const Size& size ) { - // Get the direction of the first character. - const CharacterDirection firstParagraphDirection = mImpl->mLogicalModel->GetCharacterDirection( 0u ); + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::Relayout %p size %f,%f, autoScroll[%s]\n", this, size.width, size.height, mImpl->mIsAutoScrollEnabled ?"true":"false" ); - Size actualSize = mImpl->mVisualModel->GetActualSize(); - if( fabsf( actualSize.height ) < Math::MACHINE_EPSILON_1000 ) - { - // Get the line height of the default font. - actualSize.height = mImpl->GetDefaultFontLineHeight(); - } + UpdateTextType updateTextType = NONE_UPDATED; - // If the first paragraph is right to left swap ALIGN_BEGIN and ALIGN_END; - LayoutEngine::HorizontalAlignment horizontalAlignment = mImpl->mLayoutEngine.GetHorizontalAlignment(); - if( firstParagraphDirection && - ( LayoutEngine::HORIZONTAL_ALIGN_CENTER != horizontalAlignment ) ) + if( ( size.width < Math::MACHINE_EPSILON_1000 ) || ( size.height < Math::MACHINE_EPSILON_1000 ) ) { - if( LayoutEngine::HORIZONTAL_ALIGN_BEGIN == horizontalAlignment ) - { - horizontalAlignment = LayoutEngine::HORIZONTAL_ALIGN_END; - } - else + if( 0u != mImpl->mModel->mVisualModel->mGlyphPositions.Count() ) { - horizontalAlignment = LayoutEngine::HORIZONTAL_ALIGN_BEGIN; + mImpl->mModel->mVisualModel->mGlyphPositions.Clear(); + updateTextType = MODEL_UPDATED; } + + // Clear the update info. This info will be set the next time the text is updated. + mImpl->mTextUpdateInfo.Clear(); + + // Not worth to relayout if width or height is equal to zero. + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout (skipped)\n" ); + + return updateTextType; } - switch( horizontalAlignment ) + // Whether a new size has been set. + const bool newSize = ( size != mImpl->mModel->mVisualModel->mControlSize ); + + if( newSize ) { - case LayoutEngine::HORIZONTAL_ALIGN_BEGIN: - { - mImpl->mAlignmentOffset.x = 0.f; - break; - } - case LayoutEngine::HORIZONTAL_ALIGN_CENTER: - { - mImpl->mAlignmentOffset.x = floorf( 0.5f * ( size.width - actualSize.width ) ); // try to avoid pixel alignment. - break; - } - case LayoutEngine::HORIZONTAL_ALIGN_END: - { - mImpl->mAlignmentOffset.x = size.width - actualSize.width; - break; - } + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "new size (previous size %f,%f)\n", mImpl->mModel->mVisualModel->mControlSize.width, mImpl->mModel->mVisualModel->mControlSize.height ); + + // Layout operations that need to be done if the size changes. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + LAYOUT | + ALIGN | + UPDATE_LAYOUT_SIZE | + REORDER ); + // Set the update info to relayout the whole text. + mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true; + mImpl->mTextUpdateInfo.mCharacterIndex = 0u; + + // Store the size used to layout the text. + mImpl->mModel->mVisualModel->mControlSize = size; } - const LayoutEngine::VerticalAlignment verticalAlignment = mImpl->mLayoutEngine.GetVerticalAlignment(); - switch( verticalAlignment ) + // Whether there are modify events. + if( 0u != mImpl->mModifyEvents.Count() ) { - case LayoutEngine::VERTICAL_ALIGN_TOP: - { - mImpl->mAlignmentOffset.y = 0.f; - break; - } - case LayoutEngine::VERTICAL_ALIGN_CENTER: + // Style operations that need to be done if the text is modified. + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + COLOR ); + } + + // Make sure the model is up-to-date before layouting. + ProcessModifyEvents(); + bool updated = mImpl->UpdateModel( mImpl->mOperationsPending ); + + // Layout the text. + Size layoutSize; + updated = DoRelayout( size, + mImpl->mOperationsPending, + layoutSize ) || updated; + + if( updated ) + { + updateTextType = MODEL_UPDATED; + } + + // Do not re-do any operation until something changes. + mImpl->mOperationsPending = NO_OPERATION; + mImpl->mModel->mScrollPositionLast = mImpl->mModel->mScrollPosition; + + // Whether the text control is editable + const bool isEditable = NULL != mImpl->mEventData; + + // Keep the current offset as it will be used to update the decorator's positions (if the size changes). + Vector2 offset; + if( newSize && isEditable ) + { + offset = mImpl->mModel->mScrollPosition; + } + + if( !isEditable || !IsMultiLineEnabled() ) + { + // After doing the text layout, the vertical offset to place the actor in the desired position can be calculated. + CalculateVerticalOffset( size ); + } + + if( isEditable ) + { + if( newSize ) { - mImpl->mAlignmentOffset.y = floorf( 0.5f * ( size.height - actualSize.height ) ); // try to avoid pixel alignment. - break; + // If there is a new size, the scroll position needs to be clamped. + mImpl->ClampHorizontalScroll( layoutSize ); + + // Update the decorator's positions is needed if there is a new size. + mImpl->mEventData->mDecorator->UpdatePositions( mImpl->mModel->mScrollPosition - offset ); } - case LayoutEngine::VERTICAL_ALIGN_BOTTOM: + + // Move the cursor, grab handle etc. + if( mImpl->ProcessInputEvents() ) { - mImpl->mAlignmentOffset.y = size.height - actualSize.height; - break; + updateTextType = static_cast( updateTextType | DECORATOR_UPDATED ); } } + + // Clear the update info. This info will be set the next time the text is updated. + mImpl->mTextUpdateInfo.Clear(); + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout\n" ); + + return updateTextType; } -LayoutEngine& Controller::GetLayoutEngine() +void Controller::RequestRelayout() { - return mImpl->mLayoutEngine; + mImpl->RequestRelayout(); } -View& Controller::GetView() +// public : Input style change signals. + +bool Controller::IsInputStyleChangedSignalsQueueEmpty() { - return mImpl->mView; + return ( NULL == mImpl->mEventData ) || ( 0u == mImpl->mEventData->mInputStyleChangedQueue.Count() ); +} + +void Controller::ProcessInputStyleChangedSignals() +{ + if( NULL == mImpl->mEventData ) + { + // Nothing to do. + return; + } + + for( Vector::ConstIterator it = mImpl->mEventData->mInputStyleChangedQueue.Begin(), + endIt = mImpl->mEventData->mInputStyleChangedQueue.End(); + it != endIt; + ++it ) + { + const InputStyle::Mask mask = *it; + + if( NULL != mImpl->mEditableControlInterface ) + { + // Emit the input style changed signal. + mImpl->mEditableControlInterface->InputStyleChanged( mask ); + } + } + + mImpl->mEventData->mInputStyleChangedQueue.Clear(); } +// public : Text-input Event Queuing. + void Controller::KeyboardFocusGainEvent() { DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusGainEvent" ); - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { if( ( EventData::INACTIVE == mImpl->mEventData->mState ) || ( EventData::INTERRUPTED == mImpl->mEventData->mState ) ) { mImpl->ChangeState( EventData::EDITING ); mImpl->mEventData->mUpdateCursorPosition = true; //If editing started without tap event, cursor update must be triggered. + mImpl->mEventData->mUpdateInputStyle = true; } - + mImpl->NotifyImfMultiLineStatus(); if( mImpl->IsShowingPlaceholderText() ) { // Show alternative placeholder-text when editing @@ -1356,9 +1816,9 @@ void Controller::KeyboardFocusLostEvent() { DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusLostEvent" ); - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { - if ( EventData::INTERRUPTED != mImpl->mEventData->mState ) + if( EventData::INTERRUPTED != mImpl->mEventData->mState ) { mImpl->ChangeState( EventData::INACTIVE ); @@ -1376,44 +1836,84 @@ bool Controller::KeyEvent( const Dali::KeyEvent& keyEvent ) { DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyEvent" ); - bool textChanged( false ); + bool textChanged = false; + bool relayoutNeeded = false; - if( mImpl->mEventData && - keyEvent.state == KeyEvent::Down ) + if( ( NULL != mImpl->mEventData ) && + ( keyEvent.state == KeyEvent::Down ) ) { int keyCode = keyEvent.keyCode; const std::string& keyString = keyEvent.keyPressed; + const bool isNullKey = ( 0 == keyCode ) && ( keyString.empty() ); + // Pre-process to separate modifying events from non-modifying input events. - if( Dali::DALI_KEY_ESCAPE == keyCode ) + if( isNullKey ) + { + // In some platforms arrive key events with no key code. + // Do nothing. + } + else if( Dali::DALI_KEY_ESCAPE == keyCode ) { // Escape key is a special case which causes focus loss KeyboardFocusLostEvent(); + + // Will request for relayout. + relayoutNeeded = true; } - else if( Dali::DALI_KEY_CURSOR_LEFT == keyCode || - Dali::DALI_KEY_CURSOR_RIGHT == keyCode || - Dali::DALI_KEY_CURSOR_UP == keyCode || - Dali::DALI_KEY_CURSOR_DOWN == keyCode ) + else if( ( Dali::DALI_KEY_CURSOR_LEFT == keyCode ) || + ( Dali::DALI_KEY_CURSOR_RIGHT == keyCode ) || + ( Dali::DALI_KEY_CURSOR_UP == keyCode ) || + ( Dali::DALI_KEY_CURSOR_DOWN == keyCode ) ) { + // If don't have any text, do nothing. + if( !mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters ) + { + return false; + } + + uint32_t cursorPosition = mImpl->mEventData->mPrimaryCursorPosition; + uint32_t numberOfCharacters = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters; + uint32_t cursorLine = mImpl->mModel->mVisualModel->GetLineOfCharacter( cursorPosition ); + uint32_t numberOfLines = mImpl->mModel->GetNumberOfLines(); + + // Logic to determine whether this text control will lose focus or not. + if( ( Dali::DALI_KEY_CURSOR_LEFT == keyCode && 0 == cursorPosition ) || + ( Dali::DALI_KEY_CURSOR_RIGHT == keyCode && numberOfCharacters == cursorPosition) || + ( Dali::DALI_KEY_CURSOR_DOWN == keyCode && cursorLine == numberOfLines -1 ) || + ( Dali::DALI_KEY_CURSOR_DOWN == keyCode && numberOfCharacters == cursorPosition && cursorLine -1 == numberOfLines -1 ) || + ( Dali::DALI_KEY_CURSOR_UP == keyCode && cursorLine == 0 ) || + ( Dali::DALI_KEY_CURSOR_UP == keyCode && numberOfCharacters == cursorPosition && cursorLine == 1 ) ) + { + return false; + } + + mImpl->mEventData->mCheckScrollAmount = true; Event event( Event::CURSOR_KEY_EVENT ); event.p1.mInt = keyCode; mImpl->mEventData->mEventQueue.push_back( event ); + + // Will request for relayout. + relayoutNeeded = true; } else if( Dali::DALI_KEY_BACKSPACE == keyCode ) { textChanged = BackspaceKeyEvent(); + + // Will request for relayout. + relayoutNeeded = true; } - else if ( IsKey( keyEvent, Dali::DALI_KEY_POWER ) ) - { - mImpl->ChangeState( EventData::INTERRUPTED ); // State is not INACTIVE as expect to return to edit mode. - // Avoids calling the InsertText() method which can delete selected text - } - else if ( IsKey( keyEvent, Dali::DALI_KEY_MENU ) || - IsKey( keyEvent, Dali::DALI_KEY_HOME ) ) + else if( IsKey( keyEvent, Dali::DALI_KEY_POWER ) || + IsKey( keyEvent, Dali::DALI_KEY_MENU ) || + IsKey( keyEvent, Dali::DALI_KEY_HOME ) ) { + // Power key/Menu/Home key behaviour does not allow edit mode to resume. mImpl->ChangeState( EventData::INACTIVE ); - // Menu/Home key behaviour does not allow edit mode to resume like Power key - // Avoids calling the InsertText() method which can delete selected text + + // Will request for relayout. + relayoutNeeded = true; + + // This branch avoids calling the InsertText() method of the 'else' branch which can delete selected text. } else if( Dali::DALI_KEY_SHIFT_LEFT == keyCode ) { @@ -1422,6 +1922,11 @@ bool Controller::KeyEvent( const Dali::KeyEvent& keyEvent ) // Do nothing. } + else if( ( Dali::DALI_KEY_VOLUME_UP == keyCode ) || ( Dali::DALI_KEY_VOLUME_DOWN == keyCode ) ) + { + // This branch avoids calling the InsertText() method of the 'else' branch which can delete selected text. + // Do nothing. + } else { DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p keyString %s\n", this, keyString.c_str() ); @@ -1431,283 +1936,114 @@ bool Controller::KeyEvent( const Dali::KeyEvent& keyEvent ) InsertText( keyString, COMMIT ); textChanged = true; + + // Will request for relayout. + relayoutNeeded = true; } if ( ( mImpl->mEventData->mState != EventData::INTERRUPTED ) && - ( mImpl->mEventData->mState != EventData::INACTIVE ) ) - { + ( mImpl->mEventData->mState != EventData::INACTIVE ) && + ( !isNullKey ) && + ( Dali::DALI_KEY_SHIFT_LEFT != keyCode ) && + ( Dali::DALI_KEY_VOLUME_UP != keyCode ) && + ( Dali::DALI_KEY_VOLUME_DOWN != keyCode ) ) + { + // Should not change the state if the key is the shift send by the imf manager. + // Otherwise, when the state is SELECTING the text controller can't send the right + // surrounding info to the imf. mImpl->ChangeState( EventData::EDITING ); + + // Will request for relayout. + relayoutNeeded = true; } - mImpl->RequestRelayout(); + if( relayoutNeeded ) + { + mImpl->RequestRelayout(); + } } - if( textChanged ) + if( textChanged && + ( NULL != mImpl->mEditableControlInterface ) ) { // Do this last since it provides callbacks into application code - mImpl->mControlInterface.TextChanged(); + mImpl->mEditableControlInterface->TextChanged(); } - return false; + return true; } -void Controller::InsertText( const std::string& text, Controller::InsertType type ) +void Controller::TapEvent( unsigned int tapCount, float x, float y ) { - bool removedPrevious( false ); - bool maxLengthReached( false ); + DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected TapEvent" ); - DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected InsertText" ) - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::InsertText %p %s (%s) mPrimaryCursorPosition %d mPreEditFlag %d mPreEditStartPosition %d mPreEditLength %d\n", - this, text.c_str(), (COMMIT == type ? "COMMIT" : "PRE_EDIT"), - mImpl->mEventData->mPrimaryCursorPosition, mImpl->mEventData->mPreEditFlag, mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength ); - - // TODO: At the moment the underline runs are only for pre-edit. - mImpl->mVisualModel->mUnderlineRuns.Clear(); - - Vector utf32Characters; - Length characterCount( 0u ); - - // Remove the previous IMF pre-edit (predicitive text) - if( mImpl->mEventData && - mImpl->mEventData->mPreEditFlag && - 0 != mImpl->mEventData->mPreEditLength ) - { - CharacterIndex offset = mImpl->mEventData->mPrimaryCursorPosition - mImpl->mEventData->mPreEditStartPosition; - - removedPrevious = RemoveText( -static_cast(offset), mImpl->mEventData->mPreEditLength ); - - mImpl->mEventData->mPrimaryCursorPosition = mImpl->mEventData->mPreEditStartPosition; - mImpl->mEventData->mPreEditLength = 0; - } - else - { - // Remove the previous Selection - removedPrevious = RemoveSelectedText(); - } - - if( !text.empty() ) - { - // Convert text into UTF-32 - utf32Characters.Resize( text.size() ); - - // This is a bit horrible but std::string returns a (signed) char* - const uint8_t* utf8 = reinterpret_cast( text.c_str() ); - - // Transform a text array encoded in utf8 into an array encoded in utf32. - // It returns the actual number of characters. - characterCount = Utf8ToUtf32( utf8, text.size(), utf32Characters.Begin() ); - utf32Characters.Resize( characterCount ); - - DALI_ASSERT_DEBUG( text.size() >= utf32Characters.Count() && "Invalid UTF32 conversion length" ); - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "UTF8 size %d, UTF32 size %d\n", text.size(), utf32Characters.Count() ); - } - - if( 0u != utf32Characters.Count() ) // Check if Utf8ToUtf32 conversion succeeded + if( NULL != mImpl->mEventData ) { - // The placeholder text is no longer needed - if( mImpl->IsShowingPlaceholderText() ) - { - ResetText(); - } - - mImpl->ChangeState( EventData::EDITING ); - - // Handle the IMF (predicitive text) state changes - if( mImpl->mEventData ) - { - if( COMMIT == type ) - { - // IMF manager is no longer handling key-events - mImpl->ClearPreEditFlag(); - } - else // PRE_EDIT - { - if( !mImpl->mEventData->mPreEditFlag ) - { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Entered PreEdit state" ); - - // Record the start of the pre-edit text - mImpl->mEventData->mPreEditStartPosition = mImpl->mEventData->mPrimaryCursorPosition; - } - - mImpl->mEventData->mPreEditLength = utf32Characters.Count(); - mImpl->mEventData->mPreEditFlag = true; - - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "mPreEditStartPosition %d mPreEditLength %d\n", mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength ); - } - } - - const Length numberOfCharactersInModel = mImpl->mLogicalModel->mText.Count(); - - // Restrict new text to fit within Maximum characters setting - Length maxSizeOfNewText = std::min ( ( mImpl->mMaximumNumberOfCharacters - numberOfCharactersInModel ), characterCount ); - maxLengthReached = ( characterCount > maxSizeOfNewText ); - - // The cursor position. - CharacterIndex& cursorIndex = mImpl->mEventData->mPrimaryCursorPosition; + DALI_LOG_INFO( gLogFilter, Debug::Concise, "TapEvent state:%d \n", mImpl->mEventData->mState ); + EventData::State state( mImpl->mEventData->mState ); + bool relayoutNeeded( false ); // to avoid unnecessary relayouts when tapping an empty text-field - // Update the text's style. - if( mImpl->mEventData ) + if( mImpl->IsClipboardVisible() ) { - // Updates the text style runs. - mImpl->mLogicalModel->UpdateTextStyleRuns( cursorIndex, maxSizeOfNewText ); - - // Get the character index from the cursor index. - const CharacterIndex styleIndex = ( cursorIndex > 0u ) ? cursorIndex - 1u : 0u; - - // Retrieve the text's style for the given index. - InputStyle style; - mImpl->mLogicalModel->RetrieveStyle( styleIndex, style ); - - // Whether to add a new text color run. - const bool addColorRun = style.textColor != mImpl->mEventData->mInputStyle.textColor; - - // Add style runs. - if( addColorRun ) + if( EventData::INACTIVE == state || EventData::EDITING == state) { - const VectorBase::SizeType numberOfRuns = mImpl->mLogicalModel->mColorRuns.Count(); - mImpl->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u ); - - ColorRun& colorRun = *( mImpl->mLogicalModel->mColorRuns.Begin() + numberOfRuns ); - colorRun.color = mImpl->mEventData->mInputStyle.textColor; - colorRun.characterRun.characterIndex = cursorIndex; - colorRun.characterRun.numberOfCharacters = maxSizeOfNewText; + mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE ); } + relayoutNeeded = true; } - - // Insert at current cursor position. - Vector& modifyText = mImpl->mLogicalModel->mText; - - if( cursorIndex < numberOfCharactersInModel ) - { - modifyText.Insert( modifyText.Begin() + cursorIndex, utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText ); - } - else - { - modifyText.Insert( modifyText.End(), utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText ); - } - - cursorIndex += maxSizeOfNewText; - - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Inserted %d characters, new size %d new cursor %d\n", maxSizeOfNewText, mImpl->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition ); - } - - if( 0u == mImpl->mLogicalModel->mText.Count() && - mImpl->IsPlaceholderAvailable() ) - { - // Show place-holder if empty after removing the pre-edit text - ShowPlaceholderText(); - mImpl->mEventData->mUpdateCursorPosition = true; - mImpl->ClearPreEditFlag(); - } - else if( removedPrevious || - 0 != utf32Characters.Count() ) - { - // Queue an inserted event - mImpl->QueueModifyEvent( ModifyEvent::TEXT_INSERTED ); - } - - if( maxLengthReached ) - { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "MaxLengthReached (%d)\n", mImpl->mLogicalModel->mText.Count() ); - - mImpl->ResetImfManager(); - - // Do this last since it provides callbacks into application code - mImpl->mControlInterface.MaxLengthReached(); - } -} - -bool Controller::RemoveSelectedText() -{ - bool textRemoved( false ); - - if( EventData::SELECTING == mImpl->mEventData->mState ) - { - std::string removedString; - mImpl->RetrieveSelection( removedString, true ); - - if( !removedString.empty() ) - { - textRemoved = true; - mImpl->ChangeState( EventData::EDITING ); - } - } - - return textRemoved; -} - -void Controller::TapEvent( unsigned int tapCount, float x, float y ) -{ - DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected TapEvent" ); - - if( NULL != mImpl->mEventData ) - { - DALI_LOG_INFO( gLogFilter, Debug::Concise, "TapEvent state:%d \n", mImpl->mEventData->mState ); - - if( 1u == tapCount ) + else if( 1u == tapCount ) { - // This is to avoid unnecessary relayouts when tapping an empty text-field - bool relayoutNeeded( false ); - - if ( EventData::EDITING_WITH_PASTE_POPUP == mImpl->mEventData->mState || EventData::EDITING_WITH_PASTE_POPUP == mImpl->mEventData->mState ) + if( EventData::EDITING_WITH_POPUP == state || EventData::EDITING_WITH_PASTE_POPUP == state ) { - mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE); // If Popup shown hide it here so can be shown again if required. + mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE ); // If Popup shown hide it here so can be shown again if required. } - if( mImpl->IsShowingRealText() && ( EventData::INACTIVE != mImpl->mEventData->mState ) ) + if( mImpl->IsShowingRealText() && ( EventData::INACTIVE != state ) ) { - // Already in an active state so show a popup - if ( !mImpl->IsClipboardEmpty() ) - { - // Shows Paste popup but could show full popup with Selection options. ( EDITING_WITH_POPUP ) - mImpl->ChangeState( EventData::EDITING_WITH_PASTE_POPUP ); - } - else - { - mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE ); - } + mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE ); relayoutNeeded = true; } else { - if( mImpl->IsShowingPlaceholderText() && !mImpl->IsFocusedPlaceholderAvailable() ) + if( mImpl->IsShowingPlaceholderText() && !mImpl->IsFocusedPlaceholderAvailable() ) { // Hide placeholder text ResetText(); } - if ( EventData::INACTIVE == mImpl->mEventData->mState ) + if( EventData::INACTIVE == state ) { mImpl->ChangeState( EventData::EDITING ); } - else if ( !mImpl->IsClipboardEmpty() ) + else if( !mImpl->IsClipboardEmpty() ) { mImpl->ChangeState( EventData::EDITING_WITH_POPUP ); } relayoutNeeded = true; } - - // Handles & cursors must be repositioned after Relayout() i.e. after the Model has been updated - if( relayoutNeeded ) - { - Event event( Event::TAP_EVENT ); - event.p1.mUint = tapCount; - event.p2.mFloat = x; - event.p3.mFloat = y; - mImpl->mEventData->mEventQueue.push_back( event ); - - mImpl->RequestRelayout(); - } } else if( 2u == tapCount ) { if( mImpl->mEventData->mSelectionEnabled && mImpl->IsShowingRealText() ) { - SelectEvent( x, y, false ); + relayoutNeeded = true; + mImpl->mEventData->mIsLeftHandleSelected = true; + mImpl->mEventData->mIsRightHandleSelected = true; } } + + // Handles & cursors must be repositioned after Relayout() i.e. after the Model has been updated + if( relayoutNeeded ) + { + Event event( Event::TAP_EVENT ); + event.p1.mUint = tapCount; + event.p2.mFloat = x; + event.p3.mFloat = y; + mImpl->mEventData->mEventQueue.push_back( event ); + + mImpl->RequestRelayout(); + } } // Reset keyboard as tap event has occurred. @@ -1715,11 +2051,10 @@ void Controller::TapEvent( unsigned int tapCount, float x, float y ) } void Controller::PanEvent( Gesture::State state, const Vector2& displacement ) - // Show cursor and grabhandle on first tap, this matches the behaviour of tapping when already editing { DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected PanEvent" ); - if( mImpl->mEventData ) + if( NULL != mImpl->mEventData ) { Event event( Event::PAN_EVENT ); event.p1.mInt = state; @@ -1735,90 +2070,207 @@ void Controller::LongPressEvent( Gesture::State state, float x, float y ) { DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected LongPressEvent" ); - if( state == Gesture::Started && - mImpl->mEventData ) + if( ( state == Gesture::Started ) && + ( NULL != mImpl->mEventData ) ) { - if( ! mImpl->IsShowingRealText() ) + // The 1st long-press on inactive text-field is treated as tap + if( EventData::INACTIVE == mImpl->mEventData->mState ) + { + mImpl->ChangeState( EventData::EDITING ); + + Event event( Event::TAP_EVENT ); + event.p1.mUint = 1; + event.p2.mFloat = x; + event.p3.mFloat = y; + mImpl->mEventData->mEventQueue.push_back( event ); + + mImpl->RequestRelayout(); + } + else if( !mImpl->IsShowingRealText() ) { Event event( Event::LONG_PRESS_EVENT ); event.p1.mInt = state; + event.p2.mFloat = x; + event.p3.mFloat = y; mImpl->mEventData->mEventQueue.push_back( event ); mImpl->RequestRelayout(); } - else + else if( !mImpl->IsClipboardVisible() ) { - // The 1st long-press on inactive text-field is treated as tap - if( EventData::INACTIVE == mImpl->mEventData->mState ) - { - mImpl->ChangeState( EventData::EDITING ); - - Event event( Event::TAP_EVENT ); - event.p1.mUint = 1; - event.p2.mFloat = x; - event.p3.mFloat = y; - mImpl->mEventData->mEventQueue.push_back( event ); + // Reset the imf manager to commit the pre-edit before selecting the text. + mImpl->ResetImfManager(); - mImpl->RequestRelayout(); - } - else - { - // Reset the imf manger to commit the pre-edit before selecting the text. - mImpl->ResetImfManager(); + Event event( Event::LONG_PRESS_EVENT ); + event.p1.mInt = state; + event.p2.mFloat = x; + event.p3.mFloat = y; + mImpl->mEventData->mEventQueue.push_back( event ); + mImpl->RequestRelayout(); - SelectEvent( x, y, false ); - } + mImpl->mEventData->mIsLeftHandleSelected = true; + mImpl->mEventData->mIsRightHandleSelected = true; } } } -void Controller::SelectEvent( float x, float y, bool selectAll ) +ImfManager::ImfCallbackData Controller::OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent ) { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SelectEvent\n" ); + // Whether the text needs to be relaid-out. + bool requestRelayout = false; - if( mImpl->mEventData ) + // Whether to retrieve the text and cursor position to be sent to the IMF manager. + bool retrieveText = false; + bool retrieveCursor = false; + + switch( imfEvent.eventName ) { - mImpl->ChangeState( EventData::SELECTING ); + case ImfManager::COMMIT: + { + InsertText( imfEvent.predictiveString, Text::Controller::COMMIT ); + requestRelayout = true; + retrieveCursor = true; + break; + } + case ImfManager::PREEDIT: + { + InsertText( imfEvent.predictiveString, Text::Controller::PRE_EDIT ); + requestRelayout = true; + retrieveCursor = true; + break; + } + case ImfManager::DELETESURROUNDING: + { + const bool textDeleted = RemoveText( imfEvent.cursorOffset, + imfEvent.numberOfChars, + DONT_UPDATE_INPUT_STYLE ); - if( selectAll ) + if( textDeleted ) + { + if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) || + !mImpl->IsPlaceholderAvailable() ) + { + mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED ); + } + else + { + ShowPlaceholderText(); + } + mImpl->mEventData->mUpdateCursorPosition = true; + mImpl->mEventData->mScrollAfterDelete = true; + + requestRelayout = true; + } + break; + } + case ImfManager::GETSURROUNDING: { - Event event( Event::SELECT_ALL ); - mImpl->mEventData->mEventQueue.push_back( event ); + retrieveText = true; + retrieveCursor = true; + break; } - else + case ImfManager::PRIVATECOMMAND: { - Event event( Event::SELECT ); - event.p2.mFloat = x; - event.p3.mFloat = y; - mImpl->mEventData->mEventQueue.push_back( event ); + // PRIVATECOMMAND event is just for getting the private command message + retrieveText = true; + retrieveCursor = true; + break; + } + case ImfManager::VOID: + { + // do nothing + break; } + } // end switch + if( requestRelayout ) + { + mImpl->mOperationsPending = ALL_OPERATIONS; mImpl->RequestRelayout(); } -} -void Controller::GetTargetSize( Vector2& targetSize ) -{ - targetSize = mImpl->mVisualModel->mControlSize; -} + std::string text; + CharacterIndex cursorPosition = 0u; + Length numberOfWhiteSpaces = 0u; -void Controller::AddDecoration( Actor& actor, bool needsClipping ) -{ - mImpl->mControlInterface.AddDecoration( actor, needsClipping ); -} + if( retrieveCursor ) + { + numberOfWhiteSpaces = mImpl->GetNumberOfWhiteSpaces( 0u ); -void Controller::DecorationEvent( HandleType handleType, HandleState state, float x, float y ) -{ - DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected DecorationEvent" ); + cursorPosition = mImpl->GetLogicalCursorPosition(); - if( mImpl->mEventData ) - { - switch( handleType ) + if( cursorPosition < numberOfWhiteSpaces ) { - case GRAB_HANDLE: - { - Event event( Event::GRAB_HANDLE_EVENT ); - event.p1.mUint = state; - event.p2.mFloat = x; + cursorPosition = 0u; + } + else + { + cursorPosition -= numberOfWhiteSpaces; + } + } + + if( retrieveText ) + { + mImpl->GetText( numberOfWhiteSpaces, text ); + } + + ImfManager::ImfCallbackData callbackData( ( retrieveText || retrieveCursor ), cursorPosition, text, false ); + + if( requestRelayout && + ( NULL != mImpl->mEditableControlInterface ) ) + { + // Do this last since it provides callbacks into application code + mImpl->mEditableControlInterface->TextChanged(); + } + + return callbackData; +} + +void Controller::PasteClipboardItemEvent() +{ + // Retrieve the clipboard contents first + ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() ); + std::string stringToPaste( notifier.GetContent() ); + + // Commit the current pre-edit text; the contents of the clipboard should be appended + mImpl->ResetImfManager(); + + // Temporary disable hiding clipboard + mImpl->SetClipboardHideEnable( false ); + + // Paste + PasteText( stringToPaste ); + + mImpl->SetClipboardHideEnable( true ); +} + +// protected : Inherit from Text::Decorator::ControllerInterface. + +void Controller::GetTargetSize( Vector2& targetSize ) +{ + targetSize = mImpl->mModel->mVisualModel->mControlSize; +} + +void Controller::AddDecoration( Actor& actor, bool needsClipping ) +{ + if( NULL != mImpl->mEditableControlInterface ) + { + mImpl->mEditableControlInterface->AddDecoration( actor, needsClipping ); + } +} + +void Controller::DecorationEvent( HandleType handleType, HandleState state, float x, float y ) +{ + DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected DecorationEvent" ); + + if( NULL != mImpl->mEventData ) + { + switch( handleType ) + { + case GRAB_HANDLE: + { + Event event( Event::GRAB_HANDLE_EVENT ); + event.p1.mUint = state; + event.p2.mFloat = x; event.p3.mFloat = y; mImpl->mEventData->mEventQueue.push_back( event ); @@ -1860,200 +2312,804 @@ void Controller::DecorationEvent( HandleType handleType, HandleState state, floa } } +// protected : Inherit from TextSelectionPopup::TextPopupButtonCallbackInterface. + +void Controller::TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::Buttons button ) +{ + if( NULL == mImpl->mEventData ) + { + return; + } + + switch( button ) + { + case Toolkit::TextSelectionPopup::CUT: + { + mImpl->SendSelectionToClipboard( true ); // Synchronous call to modify text + mImpl->mOperationsPending = ALL_OPERATIONS; + + if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) || + !mImpl->IsPlaceholderAvailable() ) + { + mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED ); + } + else + { + ShowPlaceholderText(); + } + + mImpl->mEventData->mUpdateCursorPosition = true; + mImpl->mEventData->mScrollAfterDelete = true; + + mImpl->RequestRelayout(); + + if( NULL != mImpl->mEditableControlInterface ) + { + mImpl->mEditableControlInterface->TextChanged(); + } + break; + } + case Toolkit::TextSelectionPopup::COPY: + { + mImpl->SendSelectionToClipboard( false ); // Text not modified + + mImpl->mEventData->mUpdateCursorPosition = true; + + mImpl->RequestRelayout(); // Cursor, Handles, Selection Highlight, Popup + break; + } + case Toolkit::TextSelectionPopup::PASTE: + { + mImpl->RequestGetTextFromClipboard(); // Request clipboard service to retrieve an item + break; + } + case Toolkit::TextSelectionPopup::SELECT: + { + const Vector2& currentCursorPosition = mImpl->mEventData->mDecorator->GetPosition( PRIMARY_CURSOR ); + + if( mImpl->mEventData->mSelectionEnabled ) + { + // Creates a SELECT event. + SelectEvent( currentCursorPosition.x, currentCursorPosition.y, false ); + } + break; + } + case Toolkit::TextSelectionPopup::SELECT_ALL: + { + // Creates a SELECT_ALL event + SelectEvent( 0.f, 0.f, true ); + break; + } + case Toolkit::TextSelectionPopup::CLIPBOARD: + { + mImpl->ShowClipboard(); + break; + } + case Toolkit::TextSelectionPopup::NONE: + { + // Nothing to do. + break; + } + } +} + +void Controller::DisplayTimeExpired() +{ + mImpl->mEventData->mUpdateCursorPosition = true; + // Apply modifications to the model + mImpl->mOperationsPending = ALL_OPERATIONS; + + mImpl->RequestRelayout(); +} + +// private : Update. + +void Controller::InsertText( const std::string& text, Controller::InsertType type ) +{ + bool removedPrevious = false; + bool removedSelected = false; + bool maxLengthReached = false; + + DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected InsertText" ) + + if( NULL == mImpl->mEventData ) + { + return; + } + + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::InsertText %p %s (%s) mPrimaryCursorPosition %d mPreEditFlag %d mPreEditStartPosition %d mPreEditLength %d\n", + this, text.c_str(), (COMMIT == type ? "COMMIT" : "PRE_EDIT"), + mImpl->mEventData->mPrimaryCursorPosition, mImpl->mEventData->mPreEditFlag, mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength ); + + // TODO: At the moment the underline runs are only for pre-edit. + mImpl->mModel->mVisualModel->mUnderlineRuns.Clear(); + + // Remove the previous IMF pre-edit. + if( mImpl->mEventData->mPreEditFlag && ( 0u != mImpl->mEventData->mPreEditLength ) ) + { + removedPrevious = RemoveText( -static_cast( mImpl->mEventData->mPrimaryCursorPosition - mImpl->mEventData->mPreEditStartPosition ), + mImpl->mEventData->mPreEditLength, + DONT_UPDATE_INPUT_STYLE ); + + mImpl->mEventData->mPrimaryCursorPosition = mImpl->mEventData->mPreEditStartPosition; + mImpl->mEventData->mPreEditLength = 0u; + } + else + { + // Remove the previous Selection. + removedSelected = RemoveSelectedText(); + + } + + Vector utf32Characters; + Length characterCount = 0u; + + if( !text.empty() ) + { + // Convert text into UTF-32 + utf32Characters.Resize( text.size() ); + + // This is a bit horrible but std::string returns a (signed) char* + const uint8_t* utf8 = reinterpret_cast( text.c_str() ); + + // Transform a text array encoded in utf8 into an array encoded in utf32. + // It returns the actual number of characters. + characterCount = Utf8ToUtf32( utf8, text.size(), utf32Characters.Begin() ); + utf32Characters.Resize( characterCount ); + + DALI_ASSERT_DEBUG( text.size() >= utf32Characters.Count() && "Invalid UTF32 conversion length" ); + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "UTF8 size %d, UTF32 size %d\n", text.size(), utf32Characters.Count() ); + } + + if( 0u != utf32Characters.Count() ) // Check if Utf8ToUtf32 conversion succeeded + { + // The placeholder text is no longer needed + if( mImpl->IsShowingPlaceholderText() ) + { + ResetText(); + } + + mImpl->ChangeState( EventData::EDITING ); + + // Handle the IMF (predicitive text) state changes + if( COMMIT == type ) + { + // IMF manager is no longer handling key-events + mImpl->ClearPreEditFlag(); + } + else // PRE_EDIT + { + if( !mImpl->mEventData->mPreEditFlag ) + { + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Entered PreEdit state\n" ); + + // Record the start of the pre-edit text + mImpl->mEventData->mPreEditStartPosition = mImpl->mEventData->mPrimaryCursorPosition; + } + + mImpl->mEventData->mPreEditLength = utf32Characters.Count(); + mImpl->mEventData->mPreEditFlag = true; + + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "mPreEditStartPosition %d mPreEditLength %d\n", mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength ); + } + + const Length numberOfCharactersInModel = mImpl->mModel->mLogicalModel->mText.Count(); + + // Restrict new text to fit within Maximum characters setting. + Length maxSizeOfNewText = std::min( ( mImpl->mMaximumNumberOfCharacters - numberOfCharactersInModel ), characterCount ); + maxLengthReached = ( characterCount > maxSizeOfNewText ); + + // The cursor position. + CharacterIndex& cursorIndex = mImpl->mEventData->mPrimaryCursorPosition; + + // Update the text's style. + + // Updates the text style runs by adding characters. + mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, maxSizeOfNewText ); + + // Get the character index from the cursor index. + const CharacterIndex styleIndex = ( cursorIndex > 0u ) ? cursorIndex - 1u : 0u; + + // Retrieve the text's style for the given index. + InputStyle style; + mImpl->RetrieveDefaultInputStyle( style ); + mImpl->mModel->mLogicalModel->RetrieveStyle( styleIndex, style ); + + // Whether to add a new text color run. + const bool addColorRun = ( style.textColor != mImpl->mEventData->mInputStyle.textColor ); + + // Whether to add a new font run. + const bool addFontNameRun = style.familyName != mImpl->mEventData->mInputStyle.familyName; + const bool addFontWeightRun = style.weight != mImpl->mEventData->mInputStyle.weight; + const bool addFontWidthRun = style.width != mImpl->mEventData->mInputStyle.width; + const bool addFontSlantRun = style.slant != mImpl->mEventData->mInputStyle.slant; + const bool addFontSizeRun = style.size != mImpl->mEventData->mInputStyle.size; + + // Add style runs. + if( addColorRun ) + { + const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mColorRuns.Count(); + mImpl->mModel->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u ); + + ColorRun& colorRun = *( mImpl->mModel->mLogicalModel->mColorRuns.Begin() + numberOfRuns ); + colorRun.color = mImpl->mEventData->mInputStyle.textColor; + colorRun.characterRun.characterIndex = cursorIndex; + colorRun.characterRun.numberOfCharacters = maxSizeOfNewText; + } + + if( addFontNameRun || + addFontWeightRun || + addFontWidthRun || + addFontSlantRun || + addFontSizeRun ) + { + const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Count(); + mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Resize( numberOfRuns + 1u ); + + FontDescriptionRun& fontDescriptionRun = *( mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Begin() + numberOfRuns ); + + if( addFontNameRun ) + { + fontDescriptionRun.familyLength = mImpl->mEventData->mInputStyle.familyName.size(); + fontDescriptionRun.familyName = new char[fontDescriptionRun.familyLength]; + memcpy( fontDescriptionRun.familyName, mImpl->mEventData->mInputStyle.familyName.c_str(), fontDescriptionRun.familyLength ); + fontDescriptionRun.familyDefined = true; + + // The memory allocated for the font family name is freed when the font description is removed from the logical model. + } + + if( addFontWeightRun ) + { + fontDescriptionRun.weight = mImpl->mEventData->mInputStyle.weight; + fontDescriptionRun.weightDefined = true; + } + + if( addFontWidthRun ) + { + fontDescriptionRun.width = mImpl->mEventData->mInputStyle.width; + fontDescriptionRun.widthDefined = true; + } + + if( addFontSlantRun ) + { + fontDescriptionRun.slant = mImpl->mEventData->mInputStyle.slant; + fontDescriptionRun.slantDefined = true; + } + + if( addFontSizeRun ) + { + fontDescriptionRun.size = static_cast( mImpl->mEventData->mInputStyle.size * 64.f ); + fontDescriptionRun.sizeDefined = true; + } + + fontDescriptionRun.characterRun.characterIndex = cursorIndex; + fontDescriptionRun.characterRun.numberOfCharacters = maxSizeOfNewText; + } + + // Insert at current cursor position. + Vector& modifyText = mImpl->mModel->mLogicalModel->mText; + + if( cursorIndex < numberOfCharactersInModel ) + { + modifyText.Insert( modifyText.Begin() + cursorIndex, utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText ); + } + else + { + modifyText.Insert( modifyText.End(), utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText ); + } + + // Mark the first paragraph to be updated. + mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex ); + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd += maxSizeOfNewText; + + // Update the cursor index. + cursorIndex += maxSizeOfNewText; + + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Inserted %d characters, new size %d new cursor %d\n", maxSizeOfNewText, mImpl->mModel->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition ); + } + + if( ( 0u == mImpl->mModel->mLogicalModel->mText.Count() ) && + mImpl->IsPlaceholderAvailable() ) + { + // Show place-holder if empty after removing the pre-edit text + ShowPlaceholderText(); + mImpl->mEventData->mUpdateCursorPosition = true; + mImpl->ClearPreEditFlag(); + } + else if( removedPrevious || + removedSelected || + ( 0 != utf32Characters.Count() ) ) + { + // Queue an inserted event + mImpl->QueueModifyEvent( ModifyEvent::TEXT_INSERTED ); + + mImpl->mEventData->mUpdateCursorPosition = true; + if( removedSelected ) + { + mImpl->mEventData->mScrollAfterDelete = true; + } + else + { + mImpl->mEventData->mScrollAfterUpdatePosition = true; + } + } + + if( maxLengthReached ) + { + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "MaxLengthReached (%d)\n", mImpl->mModel->mLogicalModel->mText.Count() ); + + mImpl->ResetImfManager(); + + if( NULL != mImpl->mEditableControlInterface ) + { + // Do this last since it provides callbacks into application code + mImpl->mEditableControlInterface->MaxLengthReached(); + } + } +} + void Controller::PasteText( const std::string& stringToPaste ) { InsertText( stringToPaste, Text::Controller::COMMIT ); mImpl->ChangeState( EventData::EDITING ); mImpl->RequestRelayout(); - // Do this last since it provides callbacks into application code - mImpl->mControlInterface.TextChanged(); + if( NULL != mImpl->mEditableControlInterface ) + { + // Do this last since it provides callbacks into application code + mImpl->mEditableControlInterface->TextChanged(); + } } -void Controller::PasteClipboardItemEvent() +bool Controller::RemoveText( int cursorOffset, + int numberOfCharacters, + UpdateInputStyleType type ) { - // Retrieve the clipboard contents first - ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() ); - std::string stringToPaste( notifier.GetContent() ); + bool removed = false; - // Commit the current pre-edit text; the contents of the clipboard should be appended - mImpl->ResetImfManager(); + if( NULL == mImpl->mEventData ) + { + return removed; + } - // Paste - PasteText( stringToPaste ); + DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p mText.Count() %d cursor %d cursorOffset %d numberOfCharacters %d\n", + this, mImpl->mModel->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition, cursorOffset, numberOfCharacters ); + + if( !mImpl->IsShowingPlaceholderText() ) + { + // Delete at current cursor position + Vector& currentText = mImpl->mModel->mLogicalModel->mText; + CharacterIndex& oldCursorIndex = mImpl->mEventData->mPrimaryCursorPosition; + + CharacterIndex cursorIndex = 0; + + // Validate the cursor position & number of characters + if( ( static_cast< int >( mImpl->mEventData->mPrimaryCursorPosition ) + cursorOffset ) >= 0 ) + { + cursorIndex = mImpl->mEventData->mPrimaryCursorPosition + cursorOffset; + } + + if( ( cursorIndex + numberOfCharacters ) > currentText.Count() ) + { + numberOfCharacters = currentText.Count() - cursorIndex; + } + + if( mImpl->mEventData->mPreEditFlag || // If the preedit flag is enabled, it means two (or more) of them came together i.e. when two keys have been pressed at the same time. + ( ( cursorIndex + numberOfCharacters ) <= mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters ) ) + { + // Mark the paragraphs to be updated. + mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex ); + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove += numberOfCharacters; + + // Update the input style and remove the text's style before removing the text. + + if( UPDATE_INPUT_STYLE == type ) + { + // Keep a copy of the current input style. + InputStyle currentInputStyle; + currentInputStyle.Copy( mImpl->mEventData->mInputStyle ); + + // Set first the default input style. + mImpl->RetrieveDefaultInputStyle( mImpl->mEventData->mInputStyle ); + + // Update the input style. + mImpl->mModel->mLogicalModel->RetrieveStyle( cursorIndex, mImpl->mEventData->mInputStyle ); + + // Compare if the input style has changed. + const bool hasInputStyleChanged = !currentInputStyle.Equal( mImpl->mEventData->mInputStyle ); + + if( hasInputStyleChanged ) + { + const InputStyle::Mask styleChangedMask = currentInputStyle.GetInputStyleChangeMask( mImpl->mEventData->mInputStyle ); + // Queue the input style changed signal. + mImpl->mEventData->mInputStyleChangedQueue.PushBack( styleChangedMask ); + } + } + + // Updates the text style runs by removing characters. Runs with no characters are removed. + mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, -numberOfCharacters ); + + // Remove the characters. + Vector::Iterator first = currentText.Begin() + cursorIndex; + Vector::Iterator last = first + numberOfCharacters; + + currentText.Erase( first, last ); + + // Cursor position retreat + oldCursorIndex = cursorIndex; + + mImpl->mEventData->mScrollAfterDelete = true; + + DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p removed %d\n", this, numberOfCharacters ); + removed = true; + } + } + + return removed; } -void Controller::TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::Buttons button ) +bool Controller::RemoveSelectedText() { - if( NULL == mImpl->mEventData ) + bool textRemoved( false ); + + if( EventData::SELECTING == mImpl->mEventData->mState ) + { + std::string removedString; + mImpl->RetrieveSelection( removedString, true ); + + if( !removedString.empty() ) + { + textRemoved = true; + mImpl->ChangeState( EventData::EDITING ); + } + } + + return textRemoved; +} + +// private : Relayout. + +bool Controller::DoRelayout( const Size& size, + OperationsMask operationsRequired, + Size& layoutSize ) +{ + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout %p size %f,%f\n", this, size.width, size.height ); + bool viewUpdated( false ); + + // Calculate the operations to be done. + const OperationsMask operations = static_cast( mImpl->mOperationsPending & operationsRequired ); + + const CharacterIndex startIndex = mImpl->mTextUpdateInfo.mParagraphCharacterIndex; + const Length requestedNumberOfCharacters = mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters; + + // Get the current layout size. + layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize(); + + if( NO_OPERATION != ( LAYOUT & operations ) ) + { + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout LAYOUT & operations\n"); + + // Some vectors with data needed to layout and reorder may be void + // after the first time the text has been laid out. + // Fill the vectors again. + + // Calculate the number of glyphs to layout. + const Vector& charactersToGlyph = mImpl->mModel->mVisualModel->mCharactersToGlyph; + const Vector& glyphsPerCharacter = mImpl->mModel->mVisualModel->mGlyphsPerCharacter; + const GlyphIndex* const charactersToGlyphBuffer = charactersToGlyph.Begin(); + const Length* const glyphsPerCharacterBuffer = glyphsPerCharacter.Begin(); + + const CharacterIndex lastIndex = startIndex + ( ( requestedNumberOfCharacters > 0u ) ? requestedNumberOfCharacters - 1u : 0u ); + const GlyphIndex startGlyphIndex = mImpl->mTextUpdateInfo.mStartGlyphIndex; + const Length numberOfGlyphs = ( requestedNumberOfCharacters > 0u ) ? *( charactersToGlyphBuffer + lastIndex ) + *( glyphsPerCharacterBuffer + lastIndex ) - startGlyphIndex : 0u; + const Length totalNumberOfGlyphs = mImpl->mModel->mVisualModel->mGlyphs.Count(); + + if( 0u == totalNumberOfGlyphs ) + { + if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) ) + { + mImpl->mModel->mVisualModel->SetLayoutSize( Size::ZERO ); + } + + // Nothing else to do if there is no glyphs. + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout no glyphs, view updated true\n" ); + return true; + } + + const Vector& lineBreakInfo = mImpl->mModel->mLogicalModel->mLineBreakInfo; + const Vector& wordBreakInfo = mImpl->mModel->mLogicalModel->mWordBreakInfo; + const Vector& characterDirection = mImpl->mModel->mLogicalModel->mCharacterDirections; + const Vector& glyphs = mImpl->mModel->mVisualModel->mGlyphs; + const Vector& glyphsToCharactersMap = mImpl->mModel->mVisualModel->mGlyphsToCharacters; + const Vector& charactersPerGlyph = mImpl->mModel->mVisualModel->mCharactersPerGlyph; + const Character* const textBuffer = mImpl->mModel->mLogicalModel->mText.Begin(); + + // Set the layout parameters. + Layout::Parameters layoutParameters( size, + textBuffer, + lineBreakInfo.Begin(), + wordBreakInfo.Begin(), + ( 0u != characterDirection.Count() ) ? characterDirection.Begin() : NULL, + glyphs.Begin(), + glyphsToCharactersMap.Begin(), + charactersPerGlyph.Begin(), + charactersToGlyphBuffer, + glyphsPerCharacterBuffer, + totalNumberOfGlyphs, + mImpl->mModel->mHorizontalAlignment ); + + // Resize the vector of positions to have the same size than the vector of glyphs. + Vector& glyphPositions = mImpl->mModel->mVisualModel->mGlyphPositions; + glyphPositions.Resize( totalNumberOfGlyphs ); + + // Whether the last character is a new paragraph character. + mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph = TextAbstraction::IsNewParagraph( *( textBuffer + ( mImpl->mModel->mLogicalModel->mText.Count() - 1u ) ) ); + layoutParameters.isLastNewParagraph = mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph; + + // The initial glyph and the number of glyphs to layout. + layoutParameters.startGlyphIndex = startGlyphIndex; + layoutParameters.numberOfGlyphs = numberOfGlyphs; + layoutParameters.startLineIndex = mImpl->mTextUpdateInfo.mStartLineIndex; + layoutParameters.estimatedNumberOfLines = mImpl->mTextUpdateInfo.mEstimatedNumberOfLines; + + // Update the visual model. + Size newLayoutSize; + viewUpdated = mImpl->mLayoutEngine.LayoutText( layoutParameters, + glyphPositions, + mImpl->mModel->mVisualModel->mLines, + newLayoutSize, + mImpl->mModel->mElideEnabled ); + + viewUpdated = viewUpdated || ( newLayoutSize != layoutSize ); + + if( viewUpdated ) + { + layoutSize = newLayoutSize; + + if( NO_OPERATION != ( UPDATE_DIRECTION & operations ) ) + { + mImpl->mAutoScrollDirectionRTL = false; + } + + // Reorder the lines + if( NO_OPERATION != ( REORDER & operations ) ) + { + Vector& bidirectionalInfo = mImpl->mModel->mLogicalModel->mBidirectionalParagraphInfo; + Vector& bidirectionalLineInfo = mImpl->mModel->mLogicalModel->mBidirectionalLineInfo; + + // Check first if there are paragraphs with bidirectional info. + if( 0u != bidirectionalInfo.Count() ) + { + // Get the lines + const Length numberOfLines = mImpl->mModel->mVisualModel->mLines.Count(); + + // Reorder the lines. + bidirectionalLineInfo.Reserve( numberOfLines ); // Reserve because is not known yet how many lines have right to left characters. + ReorderLines( bidirectionalInfo, + startIndex, + requestedNumberOfCharacters, + mImpl->mModel->mVisualModel->mLines, + bidirectionalLineInfo ); + + // Set the bidirectional info per line into the layout parameters. + layoutParameters.lineBidirectionalInfoRunsBuffer = bidirectionalLineInfo.Begin(); + layoutParameters.numberOfBidirectionalInfoRuns = bidirectionalLineInfo.Count(); + + // Re-layout the text. Reorder those lines with right to left characters. + mImpl->mLayoutEngine.ReLayoutRightToLeftLines( layoutParameters, + startIndex, + requestedNumberOfCharacters, + glyphPositions ); + + if ( ( NO_OPERATION != ( UPDATE_DIRECTION & operations ) ) && ( numberOfLines > 0 ) ) + { + const LineRun* const firstline = mImpl->mModel->mVisualModel->mLines.Begin(); + if ( firstline ) + { + mImpl->mAutoScrollDirectionRTL = firstline->direction; + } + } + } + } // REORDER + + // Sets the layout size. + if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) ) + { + mImpl->mModel->mVisualModel->SetLayoutSize( layoutSize ); + } + } // view updated + } + + if( NO_OPERATION != ( ALIGN & operations ) ) + { + // The laid-out lines. + Vector& lines = mImpl->mModel->mVisualModel->mLines; + + // Need to align with the control's size as the text may contain lines + // starting either with left to right text or right to left. + mImpl->mLayoutEngine.Align( size, + startIndex, + requestedNumberOfCharacters, + mImpl->mModel->mHorizontalAlignment, + lines, + mImpl->mModel->mAlignmentOffset ); + + viewUpdated = true; + } +#if defined(DEBUG_ENABLED) + std::string currentText; + GetText( currentText ); + DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::DoRelayout [%p] mImpl->mAutoScrollDirectionRTL[%s] [%s]\n", this, (mImpl->mAutoScrollDirectionRTL)?"true":"false", currentText.c_str() ); +#endif + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout, view updated %s\n", ( viewUpdated ? "true" : "false" ) ); + return viewUpdated; +} + +void Controller::CalculateVerticalOffset( const Size& controlSize ) +{ + Size layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize(); + + if( fabsf( layoutSize.height ) < Math::MACHINE_EPSILON_1000 ) { - return; + // Get the line height of the default font. + layoutSize.height = mImpl->GetDefaultFontLineHeight(); } - switch( button ) + switch( mImpl->mModel->mVerticalAlignment ) { - case Toolkit::TextSelectionPopup::CUT: - { - mImpl->SendSelectionToClipboard( true ); // Synchronous call to modify text - mImpl->mOperationsPending = ALL_OPERATIONS; - - // This is to reset the virtual keyboard to Upper-case - if( 0u == mImpl->mLogicalModel->mText.Count() ) - { - NotifyImfManager(); - } - - if( 0u != mImpl->mLogicalModel->mText.Count() || - !mImpl->IsPlaceholderAvailable() ) - { - mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED ); - } - else - { - ShowPlaceholderText(); - mImpl->mEventData->mUpdateCursorPosition = true; - } - mImpl->RequestRelayout(); - mImpl->mControlInterface.TextChanged(); - break; - } - case Toolkit::TextSelectionPopup::COPY: - { - mImpl->SendSelectionToClipboard( false ); // Text not modified - mImpl->RequestRelayout(); // Handles, Selection Highlight, Popup - break; - } - case Toolkit::TextSelectionPopup::PASTE: - { - std::string stringToPaste(""); - mImpl->GetTextFromClipboard( 0, stringToPaste ); // Paste latest item from system clipboard - PasteText( stringToPaste ); - break; - } - case Toolkit::TextSelectionPopup::SELECT: - { - const Vector2& currentCursorPosition = mImpl->mEventData->mDecorator->GetPosition( PRIMARY_CURSOR ); - - if( mImpl->mEventData->mSelectionEnabled ) - { - // Creates a SELECT event. - SelectEvent( currentCursorPosition.x, currentCursorPosition.y, false ); - } - break; - } - case Toolkit::TextSelectionPopup::SELECT_ALL: + case Layout::VERTICAL_ALIGN_TOP: { - // Creates a SELECT_ALL event - SelectEvent( 0.f, 0.f, true ); + mImpl->mModel->mScrollPosition.y = 0.f; break; } - case Toolkit::TextSelectionPopup::CLIPBOARD: + case Layout::VERTICAL_ALIGN_CENTER: { - mImpl->ShowClipboard(); + mImpl->mModel->mScrollPosition.y = floorf( 0.5f * ( controlSize.height - layoutSize.height ) ); // try to avoid pixel alignment. break; } - case Toolkit::TextSelectionPopup::NONE: + case Layout::VERTICAL_ALIGN_BOTTOM: { - // Nothing to do. + mImpl->mModel->mScrollPosition.y = controlSize.height - layoutSize.height; break; } } } -ImfManager::ImfCallbackData Controller::OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent ) +// private : Events. + +void Controller::ProcessModifyEvents() { - bool update = false; - bool requestRelayout = false; + Vector& events = mImpl->mModifyEvents; - std::string text; - unsigned int cursorPosition( 0 ); + if( 0u == events.Count() ) + { + // Nothing to do. + return; + } - switch ( imfEvent.eventName ) + for( Vector::ConstIterator it = events.Begin(), + endIt = events.End(); + it != endIt; + ++it ) { - case ImfManager::COMMIT: + const ModifyEvent& event = *it; + + if( ModifyEvent::TEXT_REPLACED == event.type ) { - InsertText( imfEvent.predictiveString, Text::Controller::COMMIT ); - update=true; - requestRelayout = true; - break; + // A (single) replace event should come first, otherwise we wasted time processing NOOP events + DALI_ASSERT_DEBUG( it == events.Begin() && "Unexpected TEXT_REPLACED event" ); + + TextReplacedEvent(); } - case ImfManager::PREEDIT: + else if( ModifyEvent::TEXT_INSERTED == event.type ) { - InsertText( imfEvent.predictiveString, Text::Controller::PRE_EDIT ); - update = true; - requestRelayout = true; - break; + TextInsertedEvent(); } - case ImfManager::DELETESURROUNDING: + else if( ModifyEvent::TEXT_DELETED == event.type ) { - update = RemoveText( imfEvent.cursorOffset, imfEvent.numberOfChars ); - - if( update ) + // Placeholder-text cannot be deleted + if( !mImpl->IsShowingPlaceholderText() ) { - if( 0u != mImpl->mLogicalModel->mText.Count() || - !mImpl->IsPlaceholderAvailable() ) - { - mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED ); - } - else - { - ShowPlaceholderText(); - mImpl->mEventData->mUpdateCursorPosition = true; - } + TextDeletedEvent(); } - requestRelayout = true; - break; - } - case ImfManager::GETSURROUNDING: - { - GetText( text ); - cursorPosition = GetLogicalCursorPosition(); - - imfManager.SetSurroundingText( text ); - imfManager.SetCursorPosition( cursorPosition ); - break; - } - case ImfManager::VOID: - { - // do nothing - break; } - } // end switch + } - if( ImfManager::GETSURROUNDING != imfEvent.eventName ) + if( NULL != mImpl->mEventData ) { - GetText( text ); - cursorPosition = GetLogicalCursorPosition(); + // When the text is being modified, delay cursor blinking + mImpl->mEventData->mDecorator->DelayCursorBlink(); } - if( requestRelayout ) + // Discard temporary text + events.Clear(); +} + +void Controller::TextReplacedEvent() +{ + // The natural size needs to be re-calculated. + mImpl->mRecalculateNaturalSize = true; + + // Apply modifications to the model + mImpl->mOperationsPending = ALL_OPERATIONS; +} + +void Controller::TextInsertedEvent() +{ + DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextInsertedEvent" ); + + if( NULL == mImpl->mEventData ) { - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->RequestRelayout(); + return; + } - // Do this last since it provides callbacks into application code - mImpl->mControlInterface.TextChanged(); + mImpl->mEventData->mCheckScrollAmount = true; + + // The natural size needs to be re-calculated. + mImpl->mRecalculateNaturalSize = true; + + // Apply modifications to the model; TODO - Optimize this + mImpl->mOperationsPending = ALL_OPERATIONS; +} + +void Controller::TextDeletedEvent() +{ + DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextDeletedEvent" ); + + if( NULL == mImpl->mEventData ) + { + return; } - ImfManager::ImfCallbackData callbackData( update, cursorPosition, text, false ); + mImpl->mEventData->mCheckScrollAmount = true; - return callbackData; + // The natural size needs to be re-calculated. + mImpl->mRecalculateNaturalSize = true; + + // Apply modifications to the model; TODO - Optimize this + mImpl->mOperationsPending = ALL_OPERATIONS; } -Controller::~Controller() +void Controller::SelectEvent( float x, float y, bool selectAll ) { - delete mImpl; + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SelectEvent\n" ); + + if( NULL != mImpl->mEventData ) + { + if( selectAll ) + { + Event event( Event::SELECT_ALL ); + mImpl->mEventData->mEventQueue.push_back( event ); + } + else + { + Event event( Event::SELECT ); + event.p2.mFloat = x; + event.p3.mFloat = y; + mImpl->mEventData->mEventQueue.push_back( event ); + } + + mImpl->mEventData->mCheckScrollAmount = true; + mImpl->mEventData->mIsLeftHandleSelected = true; + mImpl->mEventData->mIsRightHandleSelected = true; + mImpl->RequestRelayout(); + } } bool Controller::BackspaceKeyEvent() { DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p DALI_KEY_BACKSPACE\n", this ); + bool removed = false; + + if( NULL == mImpl->mEventData ) + { + return removed; + } + // IMF manager is no longer handling key-events mImpl->ClearPreEditFlag(); - bool removed( false ); - if( EventData::SELECTING == mImpl->mEventData->mState ) { removed = RemoveSelectedText(); @@ -2061,17 +3117,14 @@ bool Controller::BackspaceKeyEvent() else if( mImpl->mEventData->mPrimaryCursorPosition > 0 ) { // Remove the character before the current cursor position - removed = RemoveText( -1, 1 ); + removed = RemoveText( -1, + 1, + UPDATE_INPUT_STYLE ); } if( removed ) { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p DALI_KEY_BACKSPACE RemovedText\n", this ); - // Notifiy the IMF manager after text changed - // Automatic Upper-case and restarting prediction on an existing word require this. - NotifyImfManager(); - - if( 0u != mImpl->mLogicalModel->mText.Count() || + if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) || !mImpl->IsPlaceholderAvailable() ) { mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED ); @@ -2079,28 +3132,36 @@ bool Controller::BackspaceKeyEvent() else { ShowPlaceholderText(); - mImpl->mEventData->mUpdateCursorPosition = true; } + mImpl->mEventData->mUpdateCursorPosition = true; + mImpl->mEventData->mScrollAfterDelete = true; } return removed; } -void Controller::NotifyImfManager() +// private : Helpers. + +void Controller::ResetText() { - if( mImpl->mEventData ) - { - if( mImpl->mEventData->mImfManager ) - { - // Notifying IMF of a cursor change triggers a surrounding text request so updating it now. - std::string text; - GetText( text ); - mImpl->mEventData->mImfManager.SetSurroundingText( text ); + // Reset buffers. + mImpl->mModel->mLogicalModel->mText.Clear(); - mImpl->mEventData->mImfManager.SetCursorPosition( GetLogicalCursorPosition() ); - mImpl->mEventData->mImfManager.NotifyCursorPosition(); - } - } + // We have cleared everything including the placeholder-text + mImpl->PlaceholderCleared(); + + mImpl->mTextUpdateInfo.mCharacterIndex = 0u; + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters; + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = 0u; + + // Clear any previous text. + mImpl->mTextUpdateInfo.mClearAll = true; + + // The natural size needs to be re-calculated. + mImpl->mRecalculateNaturalSize = true; + + // Apply modifications to the model + mImpl->mOperationsPending = ALL_OPERATIONS; } void Controller::ShowPlaceholderText() @@ -2109,6 +3170,11 @@ void Controller::ShowPlaceholderText() { DALI_ASSERT_DEBUG( mImpl->mEventData && "No placeholder text available" ); + if( NULL == mImpl->mEventData ) + { + return; + } + mImpl->mEventData->mIsShowingPlaceholderText = true; // Disable handles when showing place-holder text @@ -2120,8 +3186,8 @@ void Controller::ShowPlaceholderText() size_t size( 0 ); // TODO - Switch placeholder text styles when changing state - if( EventData::INACTIVE != mImpl->mEventData->mState && - 0u != mImpl->mEventData->mPlaceholderTextActive.c_str() ) + if( ( EventData::INACTIVE != mImpl->mEventData->mState ) && + ( 0u != mImpl->mEventData->mPlaceholderTextActive.c_str() ) ) { text = mImpl->mEventData->mPlaceholderTextActive.c_str(); size = mImpl->mEventData->mPlaceholderTextActive.size(); @@ -2132,13 +3198,15 @@ void Controller::ShowPlaceholderText() size = mImpl->mEventData->mPlaceholderTextInactive.size(); } + mImpl->mTextUpdateInfo.mCharacterIndex = 0u; + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters; + // Reset model for showing placeholder. - mImpl->mLogicalModel->mText.Clear(); - ClearModelData(); - mImpl->mVisualModel->SetTextColor( mImpl->mEventData->mPlaceholderTextColor ); + mImpl->mModel->mLogicalModel->mText.Clear(); + mImpl->mModel->mVisualModel->SetTextColor( mImpl->mEventData->mPlaceholderTextColor ); // Convert text into UTF-32 - Vector& utf32Characters = mImpl->mLogicalModel->mText; + Vector& utf32Characters = mImpl->mModel->mLogicalModel->mText; utf32Characters.Resize( size ); // This is a bit horrible but std::string returns a (signed) char* @@ -2146,9 +3214,12 @@ void Controller::ShowPlaceholderText() // Transform a text array encoded in utf8 into an array encoded in utf32. // It returns the actual number of characters. - Length characterCount = Utf8ToUtf32( utf8, size, utf32Characters.Begin() ); + const Length characterCount = Utf8ToUtf32( utf8, size, utf32Characters.Begin() ); utf32Characters.Resize( characterCount ); + // The characters to be added. + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = characterCount; + // Reset the cursor position mImpl->mEventData->mPrimaryCursorPosition = 0; @@ -2163,52 +3234,90 @@ void Controller::ShowPlaceholderText() } } -void Controller::ClearModelData() +void Controller::ClearFontData() { - // n.b. This does not Clear the mText from mLogicalModel - mImpl->mLogicalModel->mScriptRuns.Clear(); - mImpl->mLogicalModel->mFontRuns.Clear(); - mImpl->mLogicalModel->mLineBreakInfo.Clear(); - mImpl->mLogicalModel->mWordBreakInfo.Clear(); - mImpl->mLogicalModel->mBidirectionalParagraphInfo.Clear(); - mImpl->mLogicalModel->mCharacterDirections.Clear(); - mImpl->mLogicalModel->mBidirectionalLineInfo.Clear(); - mImpl->mLogicalModel->mLogicalToVisualMap.Clear(); - mImpl->mLogicalModel->mVisualToLogicalMap.Clear(); - mImpl->mVisualModel->mGlyphs.Clear(); - mImpl->mVisualModel->mGlyphsToCharacters.Clear(); - mImpl->mVisualModel->mCharactersToGlyph.Clear(); - mImpl->mVisualModel->mCharactersPerGlyph.Clear(); - mImpl->mVisualModel->mGlyphsPerCharacter.Clear(); - mImpl->mVisualModel->mGlyphPositions.Clear(); - mImpl->mVisualModel->mLines.Clear(); - mImpl->mVisualModel->mColorRuns.Clear(); - mImpl->mVisualModel->ClearCaches(); + if( mImpl->mFontDefaults ) + { + mImpl->mFontDefaults->mFontId = 0u; // Remove old font ID + } + + // Set flags to update the model. + mImpl->mTextUpdateInfo.mCharacterIndex = 0u; + mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters; + mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count(); + + mImpl->mTextUpdateInfo.mClearAll = true; + mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true; + mImpl->mRecalculateNaturalSize = true; + + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | + VALIDATE_FONTS | + SHAPE_TEXT | + GET_GLYPH_METRICS | + LAYOUT | + UPDATE_LAYOUT_SIZE | + REORDER | + ALIGN ); } -void Controller::ClearFontData() +void Controller::ClearStyleData() { - mImpl->mFontDefaults->mFontId = 0u; // Remove old font ID - mImpl->mLogicalModel->mFontRuns.Clear(); - mImpl->mVisualModel->mGlyphs.Clear(); - mImpl->mVisualModel->mGlyphsToCharacters.Clear(); - mImpl->mVisualModel->mCharactersToGlyph.Clear(); - mImpl->mVisualModel->mCharactersPerGlyph.Clear(); - mImpl->mVisualModel->mGlyphsPerCharacter.Clear(); - mImpl->mVisualModel->mGlyphPositions.Clear(); - mImpl->mVisualModel->mLines.Clear(); - mImpl->mVisualModel->ClearCaches(); + mImpl->mModel->mLogicalModel->mColorRuns.Clear(); + mImpl->mModel->mLogicalModel->ClearFontDescriptionRuns(); } -void Controller::ClearStyleData() +void Controller::ResetCursorPosition( CharacterIndex cursorIndex ) +{ + // Reset the cursor position + if( NULL != mImpl->mEventData ) + { + mImpl->mEventData->mPrimaryCursorPosition = cursorIndex; + + // Update the cursor if it's in editing mode. + if( EventData::IsEditingState( mImpl->mEventData->mState ) ) + { + mImpl->mEventData->mUpdateCursorPosition = true; + } + } +} + +void Controller::ResetScrollPosition() { - mImpl->mLogicalModel->mColorRuns.Clear(); + if( NULL != mImpl->mEventData ) + { + // Reset the scroll position. + mImpl->mModel->mScrollPosition = Vector2::ZERO; + mImpl->mEventData->mScrollAfterUpdatePosition = true; + } } -Controller::Controller( ControlInterface& controlInterface ) +// private : Private contructors & copy operator. + +Controller::Controller() : mImpl( NULL ) { - mImpl = new Controller::Impl( controlInterface ); + mImpl = new Controller::Impl( NULL, NULL ); +} + +Controller::Controller( ControlInterface* controlInterface ) +{ + mImpl = new Controller::Impl( controlInterface, NULL ); +} + +Controller::Controller( ControlInterface* controlInterface, + EditableControlInterface* editableControlInterface ) +{ + mImpl = new Controller::Impl( controlInterface, + editableControlInterface ); +} + +// The copy constructor and operator are left unimplemented. + +// protected : Destructor. + +Controller::~Controller() +{ + delete mImpl; } } // namespace Text