X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-controller.cpp;h=91f8673e3d0b7881aec2196170742616deb9f5a8;hp=4c0316fd90bc5e399ac5aac8d8241377c41de890;hb=42d2c0d276f9821adf75b66b190d6dcfb65238f3;hpb=9ca43010ae274e019743c95a3bed73fd2e151bcd diff --git a/dali-toolkit/internal/text/text-controller.cpp b/dali-toolkit/internal/text/text-controller.cpp index 4c0316f..91f8673 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) 2016 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. @@ -31,6 +31,7 @@ #include #include #include +#include namespace { @@ -98,11 +99,27 @@ FontDescriptionRun& UpdateSelectionFontStyleRun( EventData* eventData, return fontDescriptionRun; } -ControllerPtr Controller::New( ControlInterface& controlInterface ) +// 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( NULL == mImpl->mEventData ) @@ -257,6 +274,107 @@ bool Controller::IsSmoothHandlePanEnabled() const 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 LayoutEngine::Layout layout = enable ? LayoutEngine::MULTI_LINE_BOX : LayoutEngine::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 LayoutEngine::MULTI_LINE_BOX == mImpl->mLayoutEngine.GetLayout(); +} + +void Controller::SetHorizontalAlignment( LayoutEngine::HorizontalAlignment alignment ) +{ + 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 ); + + mImpl->RequestRelayout(); + } +} + +LayoutEngine::HorizontalAlignment Controller::GetHorizontalAlignment() const +{ + return mImpl->mLayoutEngine.GetHorizontalAlignment(); +} + +void Controller::SetVerticalAlignment( LayoutEngine::VerticalAlignment alignment ) +{ + if( alignment != mImpl->mLayoutEngine.GetVerticalAlignment() ) + { + // Set the alignment. + mImpl->mLayoutEngine.SetVerticalAlignment( alignment ); + + mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | ALIGN ); + + mImpl->RequestRelayout(); + } +} + +LayoutEngine::VerticalAlignment Controller::GetVerticalAlignment() const +{ + return mImpl->mLayoutEngine.GetVerticalAlignment(); +} + +// public : Update + void Controller::SetText( const std::string& text ) { DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SetText\n" ); @@ -355,8 +473,11 @@ void Controller::SetText( const std::string& text ) mImpl->mEventData->mEventQueue.clear(); } - // 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 @@ -409,16 +530,23 @@ void Controller::GetPlaceholderText( PlaceholderType type, std::string& text ) c } } -void Controller::SetMaximumNumberOfCharacters( Length maxCharacters ) +void Controller::UpdateAfterFontChange( const std::string& newDefaultFont ) { - mImpl->mMaximumNumberOfCharacters = maxCharacters; -} + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::UpdateAfterFontChange\n"); -int Controller::GetMaximumNumberOfCharacters() -{ - return mImpl->mMaximumNumberOfCharacters; + if( !mImpl->mFontDefaults->familyDefined ) // 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() ); + mImpl->mFontDefaults->mFontDescription.family = newDefaultFont; + + ClearFontData(); + + mImpl->RequestRelayout(); + } } +// public : Default style & Input style + void Controller::SetDefaultFontFamily( const std::string& defaultFontFamily ) { if( NULL == mImpl->mFontDefaults ) @@ -428,7 +556,7 @@ void Controller::SetDefaultFontFamily( const std::string& defaultFontFamily ) mImpl->mFontDefaults->mFontDescription.family = defaultFontFamily; DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetDefaultFontFamily %s\n", defaultFontFamily.c_str()); - mImpl->mFontDefaults->familyDefined = true; + mImpl->mFontDefaults->familyDefined = !defaultFontFamily.empty(); // Clear the font-specific data ClearFontData(); @@ -446,26 +574,6 @@ const std::string& Controller::GetDefaultFontFamily() const return EMPTY_STRING; } -void Controller::SetDefaultFontStyle( const std::string& style ) -{ - if( NULL == mImpl->mFontDefaults ) - { - mImpl->mFontDefaults = new FontDefaults(); - } - - mImpl->mFontDefaults->mFontStyle = style; -} - -const std::string& Controller::GetDefaultFontStyle() const -{ - if( NULL != mImpl->mFontDefaults ) - { - return mImpl->mFontDefaults->mFontStyle; - } - - return EMPTY_STRING; -} - void Controller::SetDefaultFontWeight( FontWeight weight ) { if( NULL == mImpl->mFontDefaults ) @@ -482,6 +590,11 @@ void Controller::SetDefaultFontWeight( FontWeight weight ) mImpl->RequestRelayout(); } +bool Controller::IsDefaultFontWeightDefined() const +{ + return mImpl->mFontDefaults->weightDefined; +} + FontWeight Controller::GetDefaultFontWeight() const { if( NULL != mImpl->mFontDefaults ) @@ -508,6 +621,11 @@ void Controller::SetDefaultFontWidth( FontWidth width ) mImpl->RequestRelayout(); } +bool Controller::IsDefaultFontWidthDefined() const +{ + return mImpl->mFontDefaults->widthDefined; +} + FontWidth Controller::GetDefaultFontWidth() const { if( NULL != mImpl->mFontDefaults ) @@ -534,6 +652,11 @@ void Controller::SetDefaultFontSlant( FontSlant slant ) mImpl->RequestRelayout(); } +bool Controller::IsDefaultFontSlantDefined() const +{ + return mImpl->mFontDefaults->slantDefined; +} + FontSlant Controller::GetDefaultFontSlant() const { if( NULL != mImpl->mFontDefaults ) @@ -570,21 +693,6 @@ float Controller::GetDefaultPointSize() const return 0.0f; } -void Controller::UpdateAfterFontChange( const std::string& newDefaultFont ) -{ - 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 - { - DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::UpdateAfterFontChange newDefaultFont(%s)\n", newDefaultFont.c_str() ); - mImpl->mFontDefaults->mFontDescription.family = newDefaultFont; - - ClearFontData(); - - mImpl->RequestRelayout(); - } -} - void Controller::SetTextColor( const Vector4& textColor ) { mImpl->mTextColor = textColor; @@ -602,78 +710,6 @@ const Vector4& Controller::GetTextColor() const return mImpl->mTextColor; } -bool Controller::RemoveText( int cursorOffset, - int numberOfCharacters, - UpdateInputStyleType type ) -{ - bool removed = false; - - if( NULL == mImpl->mEventData ) - { - return removed; - } - - DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p mText.Count() %d cursor %d cursorOffset %d numberOfCharacters %d\n", - this, mImpl->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition, cursorOffset, numberOfCharacters ); - - 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 + numberOfCharacters ) > currentText.Count() ) - { - numberOfCharacters = currentText.Count() - cursorIndex; - } - - if( ( 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 ) - { - // Set first the default input style. - mImpl->RetrieveDefaultInputStyle( mImpl->mEventData->mInputStyle ); - - // Update the input style. - mImpl->mLogicalModel->RetrieveStyle( cursorIndex, mImpl->mEventData->mInputStyle ); - } - - // Updates the text style runs by removing characters. Runs with no characters are removed. - mImpl->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::SetPlaceholderTextColor( const Vector4& textColor ) { if( NULL != mImpl->mEventData ) @@ -901,7 +937,7 @@ void Controller::SetInputFontFamily( const std::string& fontFamily ) if( NULL != mImpl->mEventData ) { mImpl->mEventData->mInputStyle.familyName = fontFamily; - mImpl->mEventData->mInputStyle.familyDefined = true; + mImpl->mEventData->mInputStyle.isFamilyDefined = true; if( EventData::SELECTING == mImpl->mEventData->mState ) { @@ -955,31 +991,12 @@ const std::string& Controller::GetInputFontFamily() const return GetDefaultFontFamily(); } -void Controller::SetInputFontStyle( const std::string& fontStyle ) -{ - if( NULL != mImpl->mEventData ) - { - mImpl->mEventData->mInputStyle.fontStyle = fontStyle; - } -} - -const std::string& Controller::GetInputFontStyle() const -{ - if( NULL != mImpl->mEventData ) - { - return mImpl->mEventData->mInputStyle.fontStyle; - } - - // Return the default font's style if there is no EventData. - return GetDefaultFontStyle(); -} - void Controller::SetInputFontWeight( FontWeight weight ) { if( NULL != mImpl->mEventData ) { mImpl->mEventData->mInputStyle.weight = weight; - mImpl->mEventData->mInputStyle.weightDefined = true; + mImpl->mEventData->mInputStyle.isWeightDefined = true; if( EventData::SELECTING == mImpl->mEventData->mState ) { @@ -1018,11 +1035,23 @@ void Controller::SetInputFontWeight( FontWeight weight ) } } -FontWeight Controller::GetInputFontWeight() const +bool Controller::IsInputFontWeightDefined() const { + bool defined = false; + if( NULL != mImpl->mEventData ) { - return mImpl->mEventData->mInputStyle.weight; + defined = mImpl->mEventData->mInputStyle.isWeightDefined; + } + + return defined; +} + +FontWeight Controller::GetInputFontWeight() const +{ + if( NULL != mImpl->mEventData ) + { + return mImpl->mEventData->mInputStyle.weight; } return GetDefaultFontWeight(); @@ -1033,7 +1062,7 @@ void Controller::SetInputFontWidth( FontWidth width ) if( NULL != mImpl->mEventData ) { mImpl->mEventData->mInputStyle.width = width; - mImpl->mEventData->mInputStyle.widthDefined = true; + mImpl->mEventData->mInputStyle.isWidthDefined = true; if( EventData::SELECTING == mImpl->mEventData->mState ) { @@ -1072,6 +1101,18 @@ void Controller::SetInputFontWidth( FontWidth width ) } } +bool Controller::IsInputFontWidthDefined() const +{ + bool defined = false; + + if( NULL != mImpl->mEventData ) + { + defined = mImpl->mEventData->mInputStyle.isWidthDefined; + } + + return defined; +} + FontWidth Controller::GetInputFontWidth() const { if( NULL != mImpl->mEventData ) @@ -1087,7 +1128,7 @@ void Controller::SetInputFontSlant( FontSlant slant ) if( NULL != mImpl->mEventData ) { mImpl->mEventData->mInputStyle.slant = slant; - mImpl->mEventData->mInputStyle.slantDefined = true; + mImpl->mEventData->mInputStyle.isSlantDefined = true; if( EventData::SELECTING == mImpl->mEventData->mState ) { @@ -1126,6 +1167,18 @@ void Controller::SetInputFontSlant( FontSlant slant ) } } +bool Controller::IsInputFontSlantDefined() const +{ + bool defined = false; + + if( NULL != mImpl->mEventData ) + { + defined = mImpl->mEventData->mInputStyle.isSlantDefined; + } + + return defined; +} + FontSlant Controller::GetInputFontSlant() const { if( NULL != mImpl->mEventData ) @@ -1141,6 +1194,7 @@ void Controller::SetInputFontPointSize( float size ) if( NULL != mImpl->mEventData ) { mImpl->mEventData->mInputStyle.size = size; + mImpl->mEventData->mInputStyle.isSizeDefined = true; if( EventData::SELECTING == mImpl->mEventData->mState ) { @@ -1195,6 +1249,7 @@ void Controller::SetInputLineSpacing( float lineSpacing ) if( NULL != mImpl->mEventData ) { mImpl->mEventData->mInputStyle.lineSpacing = lineSpacing; + mImpl->mEventData->mInputStyle.isLineSpacingDefined = true; } } @@ -1280,30 +1335,16 @@ const std::string& Controller::GetInputOutlineProperties() const return GetDefaultOutlineProperties(); } -void Controller::SetEnableCursorBlink( bool enable ) -{ - DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "TextInput disabled" ); - - if( NULL != mImpl->mEventData ) - { - mImpl->mEventData->mCursorBlinkEnabled = enable; +// public : Queries & retrieves. - if( !enable && - mImpl->mEventData->mDecorator ) - { - mImpl->mEventData->mDecorator->StopCursorBlink(); - } - } +LayoutEngine& Controller::GetLayoutEngine() +{ + return mImpl->mLayoutEngine; } -bool Controller::GetEnableCursorBlink() const +View& Controller::GetView() { - if( NULL != mImpl->mEventData ) - { - return mImpl->mEventData->mCursorBlinkEnabled; - } - - return false; + return mImpl->mView; } const Vector2& Controller::GetScrollPosition() const @@ -1448,6 +1489,8 @@ float Controller::GetHeightForWidth( float width ) return layoutSize.height; } +// public : Relayout. + Controller::UpdateTextType Controller::Relayout( const Size& size ) { DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::Relayout %p size %f,%f, autoScroll[%s]\n", this, size.width, size.height, (mImpl->mAutoScrollEnabled)?"true":"false" ); @@ -1556,591 +1599,619 @@ Controller::UpdateTextType Controller::Relayout( const Size& size ) return updateTextType; } -void Controller::ProcessModifyEvents() +// public : Input style change signals. + +bool Controller::IsInputStyleChangedSignalsQueueEmpty() { - Vector& events = mImpl->mModifyEvents; + return ( NULL == mImpl->mEventData ) || ( 0u == mImpl->mEventData->mInputStyleChangedQueue.Count() ); +} - if( 0u == events.Count() ) +void Controller::ProcessInputStyleChangedSignals() +{ + if( NULL == mImpl->mEventData ) { // Nothing to do. return; } - for( Vector::ConstIterator it = events.Begin(), - endIt = events.End(); + for( Vector::ConstIterator it = mImpl->mEventData->mInputStyleChangedQueue.Begin(), + endIt = mImpl->mEventData->mInputStyleChangedQueue.End(); it != endIt; ++it ) { - const ModifyEvent& event = *it; - - 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" ); + const InputStyle::Mask mask = *it; - TextReplacedEvent(); - } - else if( ModifyEvent::TEXT_INSERTED == event.type ) - { - TextInsertedEvent(); - } - else if( ModifyEvent::TEXT_DELETED == event.type ) + if( NULL != mImpl->mEditableControlInterface ) { - // Placeholder-text cannot be deleted - if( !mImpl->IsShowingPlaceholderText() ) - { - TextDeletedEvent(); - } + // Emit the input style changed signal. + mImpl->mEditableControlInterface->InputStyleChanged( mask ); } } - if( NULL != mImpl->mEventData ) - { - // When the text is being modified, delay cursor blinking - mImpl->mEventData->mDecorator->DelayCursorBlink(); - } - - // Discard temporary text - events.Clear(); + mImpl->mEventData->mInputStyleChangedQueue.Clear(); } -void Controller::ResetText() -{ - // Reset buffers. - mImpl->mLogicalModel->mText.Clear(); - - // 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; -} +// public : Text-input Event Queuing. -void Controller::ResetCursorPosition( CharacterIndex cursorIndex ) +void Controller::KeyboardFocusGainEvent() { - // Reset the cursor position + DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusGainEvent" ); + if( NULL != mImpl->mEventData ) { - mImpl->mEventData->mPrimaryCursorPosition = cursorIndex; - - // Update the cursor if it's in editing mode. - if( EventData::IsEditingState( mImpl->mEventData->mState ) ) + if( ( EventData::INACTIVE == mImpl->mEventData->mState ) || + ( EventData::INTERRUPTED == mImpl->mEventData->mState ) ) { - mImpl->mEventData->mUpdateCursorPosition = true; + mImpl->ChangeState( EventData::EDITING ); + mImpl->mEventData->mUpdateCursorPosition = true; //If editing started without tap event, cursor update must be triggered. + } + mImpl->NotifyImfMultiLineStatus(); + if( mImpl->IsShowingPlaceholderText() ) + { + // Show alternative placeholder-text when editing + ShowPlaceholderText(); } + + mImpl->RequestRelayout(); } } -void Controller::ResetScrollPosition() +void Controller::KeyboardFocusLostEvent() { + DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusLostEvent" ); + if( NULL != mImpl->mEventData ) { - // Reset the scroll position. - mImpl->mScrollPosition = Vector2::ZERO; - mImpl->mEventData->mScrollAfterUpdatePosition = true; + if( EventData::INTERRUPTED != mImpl->mEventData->mState ) + { + mImpl->ChangeState( EventData::INACTIVE ); + + if( !mImpl->IsShowingRealText() ) + { + // Revert to regular placeholder-text when not editing + ShowPlaceholderText(); + } + } } + mImpl->RequestRelayout(); } -void Controller::TextReplacedEvent() +bool Controller::KeyEvent( const Dali::KeyEvent& keyEvent ) { - // The natural size needs to be re-calculated. - mImpl->mRecalculateNaturalSize = true; - - // Apply modifications to the model - mImpl->mOperationsPending = ALL_OPERATIONS; -} + DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyEvent" ); -void Controller::TextInsertedEvent() -{ - DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextInsertedEvent" ); + bool textChanged( false ); - if( NULL == mImpl->mEventData ) + if( ( NULL != mImpl->mEventData ) && + ( keyEvent.state == KeyEvent::Down ) ) { - return; - } + int keyCode = keyEvent.keyCode; + const std::string& keyString = keyEvent.keyPressed; - // The natural size needs to be re-calculated. - mImpl->mRecalculateNaturalSize = true; + // Pre-process to separate modifying events from non-modifying input events. + if( Dali::DALI_KEY_ESCAPE == keyCode ) + { + // Escape key is a special case which causes focus loss + KeyboardFocusLostEvent(); + } + 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 ) ) + { + Event event( Event::CURSOR_KEY_EVENT ); + event.p1.mInt = keyCode; + mImpl->mEventData->mEventQueue.push_back( event ); + } + else if( Dali::DALI_KEY_BACKSPACE == keyCode ) + { + textChanged = BackspaceKeyEvent(); + } + 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 ) ) + { + 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 + } + else if( Dali::DALI_KEY_SHIFT_LEFT == keyCode ) + { + // DALI_KEY_SHIFT_LEFT is the key code for the Left Shift. It's sent (by the imf?) when the predictive text is enabled + // and a character is typed after the type of a upper case latin character. - // Apply modifications to the model; TODO - Optimize this - mImpl->mOperationsPending = ALL_OPERATIONS; -} + // Do nothing. + } + else + { + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p keyString %s\n", this, keyString.c_str() ); -void Controller::TextDeletedEvent() -{ - DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextDeletedEvent" ); + // IMF manager is no longer handling key-events + mImpl->ClearPreEditFlag(); - if( NULL == mImpl->mEventData ) - { - return; + InsertText( keyString, COMMIT ); + textChanged = true; + } + + if ( ( mImpl->mEventData->mState != EventData::INTERRUPTED ) && + ( mImpl->mEventData->mState != EventData::INACTIVE ) && + ( Dali::DALI_KEY_SHIFT_LEFT != 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 ); + } + + mImpl->RequestRelayout(); } - // The natural size needs to be re-calculated. - mImpl->mRecalculateNaturalSize = true; + if( textChanged && + ( NULL != mImpl->mEditableControlInterface ) ) + { + // Do this last since it provides callbacks into application code + mImpl->mEditableControlInterface->TextChanged(); + } - // Apply modifications to the model; TODO - Optimize this - mImpl->mOperationsPending = ALL_OPERATIONS; + return true; } -bool Controller::DoRelayout( const Size& size, - OperationsMask operationsRequired, - Size& layoutSize ) +void Controller::TapEvent( unsigned int tapCount, float x, float y ) { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout %p size %f,%f\n", this, size.width, size.height ); - bool viewUpdated( false ); + DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected TapEvent" ); - // Calculate the operations to be done. - const OperationsMask operations = static_cast( mImpl->mOperationsPending & operationsRequired ); + if( NULL != mImpl->mEventData ) + { + 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 - const CharacterIndex startIndex = mImpl->mTextUpdateInfo.mParagraphCharacterIndex; - const Length requestedNumberOfCharacters = mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters; - - // Get the current layout size. - layoutSize = mImpl->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->mVisualModel->mCharactersToGlyph; - const Vector& glyphsPerCharacter = mImpl->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->mVisualModel->mGlyphs.Count(); - - if( 0u == totalNumberOfGlyphs ) + if( mImpl->IsClipboardVisible() ) { - if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) ) + if( EventData::INACTIVE == state || EventData::EDITING == state) { - mImpl->mVisualModel->SetLayoutSize( Size::ZERO ); + mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE ); } - - // 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; + relayoutNeeded = true; } - - 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(); - - // Set the layout parameters. - LayoutParameters layoutParameters( size, - textBuffer, - lineBreakInfo.Begin(), - wordBreakInfo.Begin(), - ( 0u != characterDirection.Count() ) ? characterDirection.Begin() : NULL, - glyphs.Begin(), - glyphsToCharactersMap.Begin(), - charactersPerGlyph.Begin(), - charactersToGlyphBuffer, - glyphsPerCharacterBuffer, - totalNumberOfGlyphs ); - - // Resize the vector of positions to have the same size than the vector of glyphs. - Vector& glyphPositions = mImpl->mVisualModel->mGlyphPositions; - glyphPositions.Resize( totalNumberOfGlyphs ); - - // Whether the last character is a new paragraph character. - mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph = TextAbstraction::IsNewParagraph( *( textBuffer + ( mImpl->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->mVisualModel->mLines, - newLayoutSize ); - - viewUpdated = viewUpdated || ( newLayoutSize != layoutSize ); - - if( viewUpdated ) + else if( 1u == tapCount ) { - layoutSize = newLayoutSize; - - if ( NO_OPERATION != ( UPDATE_DIRECTION & operations ) ) + if( EventData::EDITING_WITH_POPUP == state || EventData::EDITING_WITH_PASTE_POPUP == state ) { - mImpl->mAutoScrollDirectionRTL = false; + mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE ); // If Popup shown hide it here so can be shown again if required. } - // Reorder the lines - if( NO_OPERATION != ( REORDER & operations ) ) + if( mImpl->IsShowingRealText() && ( EventData::INACTIVE != state ) ) { - Vector& bidirectionalInfo = mImpl->mLogicalModel->mBidirectionalParagraphInfo; - Vector& bidirectionalLineInfo = mImpl->mLogicalModel->mBidirectionalLineInfo; - - // Check first if there are paragraphs with bidirectional info. - if( 0u != bidirectionalInfo.Count() ) + mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE ); + relayoutNeeded = true; + } + else + { + if( mImpl->IsShowingPlaceholderText() && !mImpl->IsFocusedPlaceholderAvailable() ) { - // Get the lines - const Length numberOfLines = mImpl->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->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->mVisualModel->mLines.Begin(); - if ( firstline ) - { - mImpl->mAutoScrollDirectionRTL = firstline->direction; - } - } + // Hide placeholder text + ResetText(); } - } // REORDER - // Sets the layout size. - if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) ) + if( EventData::INACTIVE == state ) + { + mImpl->ChangeState( EventData::EDITING ); + } + else if( !mImpl->IsClipboardEmpty() ) + { + mImpl->ChangeState( EventData::EDITING_WITH_POPUP ); + } + relayoutNeeded = true; + } + } + else if( 2u == tapCount ) + { + if( mImpl->mEventData->mSelectionEnabled && + mImpl->IsShowingRealText() ) { - mImpl->mVisualModel->SetLayoutSize( layoutSize ); + SelectEvent( x, y, false ); } - } // view updated + } + // 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 ); - // Store the size used to layout the text. - mImpl->mVisualModel->mControlSize = size; + mImpl->RequestRelayout(); + } } - if( NO_OPERATION != ( ALIGN & operations ) ) - { - // The laid-out lines. - Vector& lines = mImpl->mVisualModel->mLines; - - mImpl->mLayoutEngine.Align( size, - startIndex, - requestedNumberOfCharacters, - lines ); - - 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; + // Reset keyboard as tap event has occurred. + mImpl->ResetImfManager(); } -void Controller::SetMultiLineEnabled( bool enable ) +void Controller::PanEvent( Gesture::State state, const Vector2& displacement ) { - const LayoutEngine::Layout layout = enable ? LayoutEngine::MULTI_LINE_BOX : LayoutEngine::SINGLE_LINE_BOX; + DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected PanEvent" ); - if( layout != mImpl->mLayoutEngine.GetLayout() ) + if( NULL != mImpl->mEventData ) { - // 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 ); + Event event( Event::PAN_EVENT ); + event.p1.mInt = state; + event.p2.mFloat = displacement.x; + event.p3.mFloat = displacement.y; + mImpl->mEventData->mEventQueue.push_back( event ); mImpl->RequestRelayout(); } } -bool Controller::IsMultiLineEnabled() const +void Controller::LongPressEvent( Gesture::State state, float x, float y ) { - return LayoutEngine::MULTI_LINE_BOX == mImpl->mLayoutEngine.GetLayout(); -} + DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected LongPressEvent" ); -void Controller::SetHorizontalAlignment( LayoutEngine::HorizontalAlignment alignment ) -{ - if( alignment != mImpl->mLayoutEngine.GetHorizontalAlignment() ) + if( ( state == Gesture::Started ) && + ( NULL != mImpl->mEventData ) ) { - // Set the alignment. - mImpl->mLayoutEngine.SetHorizontalAlignment( alignment ); + if( !mImpl->IsShowingRealText() ) + { + Event event( Event::LONG_PRESS_EVENT ); + event.p1.mInt = state; + mImpl->mEventData->mEventQueue.push_back( event ); + mImpl->RequestRelayout(); + } + else + { + // The 1st long-press on inactive text-field is treated as tap + if( EventData::INACTIVE == mImpl->mEventData->mState ) + { + mImpl->ChangeState( EventData::EDITING ); - // Set the flag to redo the alignment operation. - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | ALIGN ); + 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(); - } -} + mImpl->RequestRelayout(); + } + else if( !mImpl->IsClipboardVisible() ) + { + // Reset the imf manger to commit the pre-edit before selecting the text. + mImpl->ResetImfManager(); -LayoutEngine::HorizontalAlignment Controller::GetHorizontalAlignment() const -{ - return mImpl->mLayoutEngine.GetHorizontalAlignment(); + SelectEvent( x, y, false ); + } + } + } } -void Controller::SetVerticalAlignment( LayoutEngine::VerticalAlignment alignment ) +ImfManager::ImfCallbackData Controller::OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent ) { - if( alignment != mImpl->mLayoutEngine.GetVerticalAlignment() ) - { - // Set the alignment. - mImpl->mLayoutEngine.SetVerticalAlignment( alignment ); + // Whether the text needs to be relaid-out. + bool requestRelayout = false; - mImpl->mOperationsPending = static_cast( mImpl->mOperationsPending | ALIGN ); + // Whether to retrieve the text and cursor position to be sent to the IMF manager. + bool retrieveText = false; + bool retrieveCursor = false; - mImpl->RequestRelayout(); - } -} - -LayoutEngine::VerticalAlignment Controller::GetVerticalAlignment() const -{ - return mImpl->mLayoutEngine.GetVerticalAlignment(); -} - -void Controller::CalculateVerticalOffset( const Size& controlSize ) -{ - Size layoutSize = mImpl->mVisualModel->GetLayoutSize(); - - if( fabsf( layoutSize.height ) < Math::MACHINE_EPSILON_1000 ) - { - // Get the line height of the default font. - layoutSize.height = mImpl->GetDefaultFontLineHeight(); - } - - switch( mImpl->mLayoutEngine.GetVerticalAlignment() ) + switch( imfEvent.eventName ) { - case LayoutEngine::VERTICAL_ALIGN_TOP: + case ImfManager::COMMIT: { - mImpl->mScrollPosition.y = 0.f; + InsertText( imfEvent.predictiveString, Text::Controller::COMMIT ); + requestRelayout = true; + retrieveCursor = true; break; } - case LayoutEngine::VERTICAL_ALIGN_CENTER: + case ImfManager::PREEDIT: { - mImpl->mScrollPosition.y = floorf( 0.5f * ( controlSize.height - layoutSize.height ) ); // try to avoid pixel alignment. + InsertText( imfEvent.predictiveString, Text::Controller::PRE_EDIT ); + requestRelayout = true; + retrieveCursor = true; break; } - case LayoutEngine::VERTICAL_ALIGN_BOTTOM: + case ImfManager::DELETESURROUNDING: { - mImpl->mScrollPosition.y = controlSize.height - layoutSize.height; - break; - } - } -} - -LayoutEngine& Controller::GetLayoutEngine() -{ - return mImpl->mLayoutEngine; -} - -View& Controller::GetView() -{ - return mImpl->mView; -} + const bool textDeleted = RemoveText( imfEvent.cursorOffset, + imfEvent.numberOfChars, + DONT_UPDATE_INPUT_STYLE ); -void Controller::KeyboardFocusGainEvent() -{ - DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusGainEvent" ); + if( textDeleted ) + { + if( ( 0u != mImpl->mLogicalModel->mText.Count() ) || + !mImpl->IsPlaceholderAvailable() ) + { + mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED ); + } + else + { + ShowPlaceholderText(); + } + mImpl->mEventData->mUpdateCursorPosition = true; + mImpl->mEventData->mScrollAfterDelete = true; - if( NULL != mImpl->mEventData ) - { - if( ( EventData::INACTIVE == mImpl->mEventData->mState ) || - ( EventData::INTERRUPTED == mImpl->mEventData->mState ) ) + requestRelayout = true; + } + break; + } + case ImfManager::GETSURROUNDING: { - mImpl->ChangeState( EventData::EDITING ); - mImpl->mEventData->mUpdateCursorPosition = true; //If editing started without tap event, cursor update must be triggered. + retrieveText = true; + retrieveCursor = true; + break; } - - if( mImpl->IsShowingPlaceholderText() ) + case ImfManager::VOID: { - // Show alternative placeholder-text when editing - ShowPlaceholderText(); + // do nothing + break; } + } // end switch + if( requestRelayout ) + { + mImpl->mOperationsPending = ALL_OPERATIONS; mImpl->RequestRelayout(); } -} -void Controller::KeyboardFocusLostEvent() -{ - DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusLostEvent" ); + std::string text; + CharacterIndex cursorPosition = 0u; + Length numberOfWhiteSpaces = 0u; - if( NULL != mImpl->mEventData ) + if( retrieveCursor ) { - if( EventData::INTERRUPTED != mImpl->mEventData->mState ) - { - mImpl->ChangeState( EventData::INACTIVE ); - - if( !mImpl->IsShowingRealText() ) - { - // Revert to regular placeholder-text when not editing - ShowPlaceholderText(); - } - } - } - mImpl->RequestRelayout(); -} - -bool Controller::KeyEvent( const Dali::KeyEvent& keyEvent ) -{ - DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyEvent" ); - - bool textChanged( false ); + numberOfWhiteSpaces = mImpl->GetNumberOfWhiteSpaces( 0u ); - if( ( NULL != mImpl->mEventData ) && - ( keyEvent.state == KeyEvent::Down ) ) - { - int keyCode = keyEvent.keyCode; - const std::string& keyString = keyEvent.keyPressed; + cursorPosition = mImpl->GetLogicalCursorPosition(); - // Pre-process to separate modifying events from non-modifying input events. - if( Dali::DALI_KEY_ESCAPE == keyCode ) - { - // Escape key is a special case which causes focus loss - KeyboardFocusLostEvent(); - } - 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 ) ) - { - Event event( Event::CURSOR_KEY_EVENT ); - event.p1.mInt = keyCode; - mImpl->mEventData->mEventQueue.push_back( event ); - } - else if( Dali::DALI_KEY_BACKSPACE == keyCode ) - { - textChanged = BackspaceKeyEvent(); - } - 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 ) ) - { - 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 - } - else if( Dali::DALI_KEY_SHIFT_LEFT == keyCode ) + if( cursorPosition < numberOfWhiteSpaces ) { - // DALI_KEY_SHIFT_LEFT is the key code for the Left Shift. It's sent (by the imf?) when the predictive text is enabled - // and a character is typed after the type of a upper case latin character. - - // Do nothing. + cursorPosition = 0u; } else { - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p keyString %s\n", this, keyString.c_str() ); - - // IMF manager is no longer handling key-events - mImpl->ClearPreEditFlag(); - - InsertText( keyString, COMMIT ); - textChanged = true; - } - - if ( ( mImpl->mEventData->mState != EventData::INTERRUPTED ) && - ( mImpl->mEventData->mState != EventData::INACTIVE ) && - ( Dali::DALI_KEY_SHIFT_LEFT != 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 ); + cursorPosition -= numberOfWhiteSpaces; } + } - mImpl->RequestRelayout(); + if( retrieveText ) + { + mImpl->GetText( numberOfWhiteSpaces, text ); } - if( textChanged ) + ImfManager::ImfCallbackData callbackData( ( retrieveText || retrieveCursor ), cursorPosition, text, false ); + + if( requestRelayout && + ( NULL != mImpl->mEditableControlInterface ) ) { // Do this last since it provides callbacks into application code - mImpl->mControlInterface.TextChanged(); + mImpl->mEditableControlInterface->TextChanged(); } - return true; + return callbackData; } -void Controller::InsertText( const std::string& text, Controller::InsertType type ) +void Controller::PasteClipboardItemEvent() { - bool removedPrevious( false ); - bool maxLengthReached( false ); + // Retrieve the clipboard contents first + ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() ); + std::string stringToPaste( notifier.GetContent() ); - DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected InsertText" ) + // Commit the current pre-edit text; the contents of the clipboard should be appended + mImpl->ResetImfManager(); - if( NULL == mImpl->mEventData ) - { - return; - } + // Temporary disable hiding clipboard + mImpl->SetClipboardHideEnable( false ); - 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 ); + // Paste + PasteText( stringToPaste ); - // TODO: At the moment the underline runs are only for pre-edit. - mImpl->mVisualModel->mUnderlineRuns.Clear(); + mImpl->SetClipboardHideEnable( true ); +} - // Keep the current number of characters. - const Length currentNumberOfCharacters = mImpl->IsShowingRealText() ? mImpl->mLogicalModel->mText.Count() : 0u; +// protected : Inherit from Text::Decorator::ControllerInterface. - // 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 ); +void Controller::GetTargetSize( Vector2& targetSize ) +{ + targetSize = mImpl->mVisualModel->mControlSize; +} - mImpl->mEventData->mPrimaryCursorPosition = mImpl->mEventData->mPreEditStartPosition; - mImpl->mEventData->mPreEditLength = 0u; - } - else +void Controller::AddDecoration( Actor& actor, bool needsClipping ) +{ + if( NULL != mImpl->mEditableControlInterface ) { - // Remove the previous Selection. - removedPrevious = RemoveSelectedText(); + mImpl->mEditableControlInterface->AddDecoration( actor, needsClipping ); } +} - Vector utf32Characters; - Length characterCount = 0u; +void Controller::DecorationEvent( HandleType handleType, HandleState state, float x, float y ) +{ + DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected DecorationEvent" ); - if( !text.empty() ) + if( NULL != mImpl->mEventData ) { - // Convert text into UTF-32 - utf32Characters.Resize( text.size() ); + switch( handleType ) + { + case GRAB_HANDLE: + { + Event event( Event::GRAB_HANDLE_EVENT ); + event.p1.mUint = state; + event.p2.mFloat = x; + event.p3.mFloat = y; - // This is a bit horrible but std::string returns a (signed) char* + mImpl->mEventData->mEventQueue.push_back( event ); + break; + } + case LEFT_SELECTION_HANDLE: + { + Event event( Event::LEFT_SELECTION_HANDLE_EVENT ); + event.p1.mUint = state; + event.p2.mFloat = x; + event.p3.mFloat = y; + + mImpl->mEventData->mEventQueue.push_back( event ); + break; + } + case RIGHT_SELECTION_HANDLE: + { + Event event( Event::RIGHT_SELECTION_HANDLE_EVENT ); + event.p1.mUint = state; + event.p2.mFloat = x; + event.p3.mFloat = y; + + mImpl->mEventData->mEventQueue.push_back( event ); + break; + } + case LEFT_SELECTION_HANDLE_MARKER: + case RIGHT_SELECTION_HANDLE_MARKER: + { + // Markers do not move the handles. + break; + } + case HANDLE_TYPE_COUNT: + { + DALI_ASSERT_DEBUG( !"Controller::HandleEvent. Unexpected handle type" ); + } + } + + mImpl->RequestRelayout(); + } +} + +// 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->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; + } + } +} + +// private : Update. + +void Controller::InsertText( const std::string& text, Controller::InsertType type ) +{ + bool removedPrevious( 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->mVisualModel->mUnderlineRuns.Clear(); + + // Keep the current number of characters. + const Length currentNumberOfCharacters = mImpl->IsShowingRealText() ? mImpl->mLogicalModel->mText.Count() : 0u; + + // 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. + removedPrevious = 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. @@ -2332,9 +2403,111 @@ void Controller::InsertText( const std::string& text, Controller::InsertType typ 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(); + + if( NULL != mImpl->mEditableControlInterface ) + { // Do this last since it provides callbacks into application code - mImpl->mControlInterface.MaxLengthReached(); + mImpl->mEditableControlInterface->TextChanged(); + } +} + +bool Controller::RemoveText( int cursorOffset, + int numberOfCharacters, + UpdateInputStyleType type ) +{ + bool removed = false; + + if( NULL == mImpl->mEventData ) + { + return removed; + } + + DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p mText.Count() %d cursor %d cursorOffset %d numberOfCharacters %d\n", + this, mImpl->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition, cursorOffset, numberOfCharacters ); + + 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 + numberOfCharacters ) > currentText.Count() ) + { + numberOfCharacters = currentText.Count() - cursorIndex; + } + + if( ( 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->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->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; } bool Controller::RemoveSelectedText() @@ -2356,437 +2529,323 @@ bool Controller::RemoveSelectedText() return textRemoved; } -void Controller::TapEvent( unsigned int tapCount, float x, float y ) -{ - DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected TapEvent" ); +// private : Relayout. - if( NULL != mImpl->mEventData ) - { - DALI_LOG_INFO( gLogFilter, Debug::Concise, "TapEvent state:%d \n", mImpl->mEventData->mState ); - - if( 1u == tapCount ) - { - // This is to avoid unnecessary relayouts when tapping an empty text-field - bool relayoutNeeded( false ); - - if( ( EventData::EDITING_WITH_POPUP == mImpl->mEventData->mState ) || - ( EventData::EDITING_WITH_PASTE_POPUP == mImpl->mEventData->mState ) ) - { - 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 ) ) - { - // 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 - { - // Show cursor and grabhandle on first tap, this matches the behaviour of tapping when already editing - mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE ); - } - relayoutNeeded = true; - } - else - { - if( mImpl->IsShowingPlaceholderText() && !mImpl->IsFocusedPlaceholderAvailable() ) - { - // Hide placeholder text - ResetText(); - } - - if( EventData::INACTIVE == mImpl->mEventData->mState ) - { - mImpl->ChangeState( EventData::EDITING ); - } - 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 ); +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 ); - mImpl->RequestRelayout(); - } - } - else if( 2u == tapCount ) - { - if( mImpl->mEventData->mSelectionEnabled && - mImpl->IsShowingRealText() ) - { - SelectEvent( x, y, false ); - } - } - } + // Calculate the operations to be done. + const OperationsMask operations = static_cast( mImpl->mOperationsPending & operationsRequired ); - // Reset keyboard as tap event has occurred. - mImpl->ResetImfManager(); -} + const CharacterIndex startIndex = mImpl->mTextUpdateInfo.mParagraphCharacterIndex; + const Length requestedNumberOfCharacters = mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters; -void Controller::PanEvent( Gesture::State state, const Vector2& displacement ) -{ - DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected PanEvent" ); + // Get the current layout size. + layoutSize = mImpl->mVisualModel->GetLayoutSize(); - if( NULL != mImpl->mEventData ) + if( NO_OPERATION != ( LAYOUT & operations ) ) { - Event event( Event::PAN_EVENT ); - event.p1.mInt = state; - event.p2.mFloat = displacement.x; - event.p3.mFloat = displacement.y; - mImpl->mEventData->mEventQueue.push_back( event ); + DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout LAYOUT & operations\n"); - mImpl->RequestRelayout(); - } -} + // 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. -void Controller::LongPressEvent( Gesture::State state, float x, float y ) -{ - DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected LongPressEvent" ); + // Calculate the number of glyphs to layout. + const Vector& charactersToGlyph = mImpl->mVisualModel->mCharactersToGlyph; + const Vector& glyphsPerCharacter = mImpl->mVisualModel->mGlyphsPerCharacter; + const GlyphIndex* const charactersToGlyphBuffer = charactersToGlyph.Begin(); + const Length* const glyphsPerCharacterBuffer = glyphsPerCharacter.Begin(); - if( ( state == Gesture::Started ) && - ( NULL != mImpl->mEventData ) ) - { - if( !mImpl->IsShowingRealText() ) - { - Event event( Event::LONG_PRESS_EVENT ); - event.p1.mInt = state; - mImpl->mEventData->mEventQueue.push_back( event ); - mImpl->RequestRelayout(); - } - else + 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->mVisualModel->mGlyphs.Count(); + + if( 0u == totalNumberOfGlyphs ) { - // The 1st long-press on inactive text-field is treated as tap - if( EventData::INACTIVE == mImpl->mEventData->mState ) + if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) ) { - 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(); + mImpl->mVisualModel->SetLayoutSize( Size::ZERO ); } - else - { - // Reset the imf manger to commit the pre-edit before selecting the text. - mImpl->ResetImfManager(); - SelectEvent( x, y, false ); - } + // 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; } - } -} -void Controller::SelectEvent( float x, float y, bool selectAll ) -{ - DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SelectEvent\n" ); + 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(); - 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 ); - } + // Set the layout parameters. + LayoutParameters layoutParameters( size, + textBuffer, + lineBreakInfo.Begin(), + wordBreakInfo.Begin(), + ( 0u != characterDirection.Count() ) ? characterDirection.Begin() : NULL, + glyphs.Begin(), + glyphsToCharactersMap.Begin(), + charactersPerGlyph.Begin(), + charactersToGlyphBuffer, + glyphsPerCharacterBuffer, + totalNumberOfGlyphs ); - mImpl->RequestRelayout(); - } -} + // Resize the vector of positions to have the same size than the vector of glyphs. + Vector& glyphPositions = mImpl->mVisualModel->mGlyphPositions; + glyphPositions.Resize( totalNumberOfGlyphs ); -void Controller::GetTargetSize( Vector2& targetSize ) -{ - targetSize = mImpl->mVisualModel->mControlSize; -} + // Whether the last character is a new paragraph character. + mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph = TextAbstraction::IsNewParagraph( *( textBuffer + ( mImpl->mLogicalModel->mText.Count() - 1u ) ) ); + layoutParameters.isLastNewParagraph = mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph; -void Controller::AddDecoration( Actor& actor, bool needsClipping ) -{ - mImpl->mControlInterface.AddDecoration( actor, needsClipping ); -} + // 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; -void Controller::DecorationEvent( HandleType handleType, HandleState state, float x, float y ) -{ - DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected DecorationEvent" ); + // Update the visual model. + Size newLayoutSize; + viewUpdated = mImpl->mLayoutEngine.LayoutText( layoutParameters, + glyphPositions, + mImpl->mVisualModel->mLines, + newLayoutSize ); - if( NULL != mImpl->mEventData ) - { - switch( handleType ) + viewUpdated = viewUpdated || ( newLayoutSize != layoutSize ); + + if( viewUpdated ) { - case GRAB_HANDLE: - { - Event event( Event::GRAB_HANDLE_EVENT ); - event.p1.mUint = state; - event.p2.mFloat = x; - event.p3.mFloat = y; + layoutSize = newLayoutSize; - mImpl->mEventData->mEventQueue.push_back( event ); - break; - } - case LEFT_SELECTION_HANDLE: + if ( NO_OPERATION != ( UPDATE_DIRECTION & operations ) ) { - Event event( Event::LEFT_SELECTION_HANDLE_EVENT ); - event.p1.mUint = state; - event.p2.mFloat = x; - event.p3.mFloat = y; - - mImpl->mEventData->mEventQueue.push_back( event ); - break; + mImpl->mAutoScrollDirectionRTL = false; } - case RIGHT_SELECTION_HANDLE: - { - Event event( Event::RIGHT_SELECTION_HANDLE_EVENT ); - event.p1.mUint = state; - event.p2.mFloat = x; - event.p3.mFloat = y; - mImpl->mEventData->mEventQueue.push_back( event ); - break; - } - case LEFT_SELECTION_HANDLE_MARKER: - case RIGHT_SELECTION_HANDLE_MARKER: - { - // Markers do not move the handles. - break; - } - case HANDLE_TYPE_COUNT: + // Reorder the lines + if( NO_OPERATION != ( REORDER & operations ) ) { - DALI_ASSERT_DEBUG( !"Controller::HandleEvent. Unexpected handle type" ); - } - } - - mImpl->RequestRelayout(); - } -} - -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(); -} - -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(); + Vector& bidirectionalInfo = mImpl->mLogicalModel->mBidirectionalParagraphInfo; + Vector& bidirectionalLineInfo = mImpl->mLogicalModel->mBidirectionalLineInfo; - // Temporary disable hiding clipboard - mImpl->SetClipboardHideEnable( false ); + // Check first if there are paragraphs with bidirectional info. + if( 0u != bidirectionalInfo.Count() ) + { + // Get the lines + const Length numberOfLines = mImpl->mVisualModel->mLines.Count(); - // Paste - PasteText( stringToPaste ); + // 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->mVisualModel->mLines, + bidirectionalLineInfo ); - mImpl->SetClipboardHideEnable( true ); -} + // Set the bidirectional info per line into the layout parameters. + layoutParameters.lineBidirectionalInfoRunsBuffer = bidirectionalLineInfo.Begin(); + layoutParameters.numberOfBidirectionalInfoRuns = bidirectionalLineInfo.Count(); -void Controller::TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::Buttons button ) -{ - if( NULL == mImpl->mEventData ) - { - return; - } + // Re-layout the text. Reorder those lines with right to left characters. + mImpl->mLayoutEngine.ReLayoutRightToLeftLines( layoutParameters, + startIndex, + requestedNumberOfCharacters, + glyphPositions ); - switch( button ) - { - case Toolkit::TextSelectionPopup::CUT: - { - mImpl->SendSelectionToClipboard( true ); // Synchronous call to modify text - mImpl->mOperationsPending = ALL_OPERATIONS; + if ( ( NO_OPERATION != ( UPDATE_DIRECTION & operations ) ) && ( numberOfLines > 0 ) ) + { + const LineRun* const firstline = mImpl->mVisualModel->mLines.Begin(); + if ( firstline ) + { + mImpl->mAutoScrollDirectionRTL = firstline->direction; + } + } + } + } // REORDER - if( ( 0u != mImpl->mLogicalModel->mText.Count() ) || - !mImpl->IsPlaceholderAvailable() ) - { - mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED ); - } - else + // Sets the layout size. + if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) ) { - ShowPlaceholderText(); + mImpl->mVisualModel->SetLayoutSize( layoutSize ); } + } // view updated - mImpl->mEventData->mUpdateCursorPosition = true; - mImpl->mEventData->mScrollAfterDelete = true; + // Store the size used to layout the text. + mImpl->mVisualModel->mControlSize = size; + } - mImpl->RequestRelayout(); - mImpl->mControlInterface.TextChanged(); - break; - } - case Toolkit::TextSelectionPopup::COPY: - { - mImpl->SendSelectionToClipboard( false ); // Text not modified + if( NO_OPERATION != ( ALIGN & operations ) ) + { + // The laid-out lines. + Vector& lines = mImpl->mVisualModel->mLines; - mImpl->mEventData->mUpdateCursorPosition = true; + mImpl->mLayoutEngine.Align( size, + startIndex, + requestedNumberOfCharacters, + lines ); - mImpl->RequestRelayout(); // Cursor, 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 ); + 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; +} - if( mImpl->mEventData->mSelectionEnabled ) - { - // Creates a SELECT event. - SelectEvent( currentCursorPosition.x, currentCursorPosition.y, false ); - } - break; - } - case Toolkit::TextSelectionPopup::SELECT_ALL: +void Controller::CalculateVerticalOffset( const Size& controlSize ) +{ + Size layoutSize = mImpl->mVisualModel->GetLayoutSize(); + + if( fabsf( layoutSize.height ) < Math::MACHINE_EPSILON_1000 ) + { + // Get the line height of the default font. + layoutSize.height = mImpl->GetDefaultFontLineHeight(); + } + + switch( mImpl->mLayoutEngine.GetVerticalAlignment() ) + { + case LayoutEngine::VERTICAL_ALIGN_TOP: { - // Creates a SELECT_ALL event - SelectEvent( 0.f, 0.f, true ); + mImpl->mScrollPosition.y = 0.f; break; } - case Toolkit::TextSelectionPopup::CLIPBOARD: + case LayoutEngine::VERTICAL_ALIGN_CENTER: { - mImpl->ShowClipboard(); + mImpl->mScrollPosition.y = floorf( 0.5f * ( controlSize.height - layoutSize.height ) ); // try to avoid pixel alignment. break; } - case Toolkit::TextSelectionPopup::NONE: + case LayoutEngine::VERTICAL_ALIGN_BOTTOM: { - // Nothing to do. + mImpl->mScrollPosition.y = controlSize.height - layoutSize.height; break; } } } -ImfManager::ImfCallbackData Controller::OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent ) +// private : Events. + +void Controller::ProcessModifyEvents() { - // Whether the text needs to be relaid-out. - bool requestRelayout = false; + Vector& events = mImpl->mModifyEvents; - // Whether to retrieve the text and cursor position to be sent to the IMF manager. - bool retrieveText = false; - bool retrieveCursor = false; + 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 ); - requestRelayout = true; - retrieveCursor = 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 ); - requestRelayout = true; - retrieveCursor = true; - break; + TextInsertedEvent(); } - case ImfManager::DELETESURROUNDING: + else if( ModifyEvent::TEXT_DELETED == event.type ) { - const bool textDeleted = RemoveText( imfEvent.cursorOffset, - imfEvent.numberOfChars, - DONT_UPDATE_INPUT_STYLE ); - - if( textDeleted ) + // 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; - mImpl->mEventData->mScrollAfterDelete = true; - - requestRelayout = true; + TextDeletedEvent(); } - break; - } - case ImfManager::GETSURROUNDING: - { - retrieveText = true; - retrieveCursor = true; - break; } - case ImfManager::VOID: - { - // do nothing - break; - } - } // end switch + } - if( requestRelayout ) + if( NULL != mImpl->mEventData ) { - mImpl->mOperationsPending = ALL_OPERATIONS; - mImpl->RequestRelayout(); - - // Do this last since it provides callbacks into application code - mImpl->mControlInterface.TextChanged(); + // When the text is being modified, delay cursor blinking + mImpl->mEventData->mDecorator->DelayCursorBlink(); } - std::string text; - CharacterIndex cursorPosition = 0u; - Length numberOfWhiteSpaces = 0u; + // Discard temporary text + events.Clear(); +} - if( retrieveCursor ) - { - numberOfWhiteSpaces = mImpl->GetNumberOfWhiteSpaces( 0u ); +void Controller::TextReplacedEvent() +{ + // The natural size needs to be re-calculated. + mImpl->mRecalculateNaturalSize = true; - cursorPosition = mImpl->GetLogicalCursorPosition(); + // Apply modifications to the model + mImpl->mOperationsPending = ALL_OPERATIONS; +} - if( cursorPosition < numberOfWhiteSpaces ) - { - cursorPosition = 0u; - } - else - { - cursorPosition -= numberOfWhiteSpaces; - } +void Controller::TextInsertedEvent() +{ + DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextInsertedEvent" ); + + if( NULL == mImpl->mEventData ) + { + return; } - if( retrieveText ) + // 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 ) { - mImpl->GetText( numberOfWhiteSpaces, text ); + return; } - ImfManager::ImfCallbackData callbackData( ( retrieveText || retrieveCursor ), cursorPosition, text, false ); + // The natural size needs to be re-calculated. + mImpl->mRecalculateNaturalSize = true; - return callbackData; + // 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->RequestRelayout(); + } } bool Controller::BackspaceKeyEvent() @@ -2833,6 +2892,30 @@ bool Controller::BackspaceKeyEvent() return removed; } +// private : Helpers. + +void Controller::ResetText() +{ + // Reset buffers. + mImpl->mLogicalModel->mText.Clear(); + + // 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() { if( mImpl->IsPlaceholderAvailable() ) @@ -2935,10 +3018,58 @@ void Controller::ClearStyleData() mImpl->mLogicalModel->ClearFontDescriptionRuns(); } -Controller::Controller( ControlInterface& controlInterface ) +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() +{ + if( NULL != mImpl->mEventData ) + { + // Reset the scroll position. + mImpl->mScrollPosition = Vector2::ZERO; + mImpl->mEventData->mScrollAfterUpdatePosition = true; + } +} + +// 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