X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=base%2Fdali-toolkit%2Finternal%2Fcontrols%2Ftext-view%2Ftext-view-word-processor.cpp;h=2e7ff3b227106adbf76af35d6e74a903287ff055;hp=94a2998fda894adf662addd6edb5e10d961878a7;hb=d5e3ed5f5b1c8fdba3ae97ead8729620f54b3836;hpb=30f6ca1e541089b19f2b349a8a12d8a5bcaf2f9e diff --git a/base/dali-toolkit/internal/controls/text-view/text-view-word-processor.cpp b/base/dali-toolkit/internal/controls/text-view/text-view-word-processor.cpp index 94a2998..2e7ff3b 100644 --- a/base/dali-toolkit/internal/controls/text-view/text-view-word-processor.cpp +++ b/base/dali-toolkit/internal/controls/text-view/text-view-word-processor.cpp @@ -1,18 +1,19 @@ -// -// Copyright (c) 2014 Samsung Electronics Co., Ltd. -// -// Licensed under the Flora License, Version 1.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://floralicense.org/license/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an AS IS BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// +/* + * Copyright (c) 2014 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ // FILE HEADER #include "text-view-word-processor.h" @@ -37,6 +38,8 @@ namespace TextViewProcessor namespace { +const std::string EMOJI_FONT_NAME( "SamsungEmoji" ); // Emoticons font family name. + /** * Updates the word size and ascender. * @@ -115,19 +118,26 @@ void CreateWordTextInfo( const MarkupProcessor::StyledTextArray& word, Character character = styledText.mText[index]; styledCharacter.mText.Append( character ); - //Choose the right font for the given character and style. - ChooseFontFamilyName( styledCharacter ); - - const Font font = Font::New( FontParameters( styledCharacter.mStyle.GetFontName(), styledCharacter.mStyle.GetFontStyle(), styledCharacter.mStyle.GetFontPointSize() ) ); - const Font::Metrics metrics = font.GetMetrics( character ); - const float ascender = font.GetAscender(); - // Create layout character info. CharacterLayoutInfo characterLayoutInfo; characterLayoutInfo.mIsColorGlyph = GlyphImage::IsColorGlyph( character ); DALI_LOG_INFO( gTextViewProcessorLogFilter, Debug::General, " Is color glyph: %s\n", ( characterLayoutInfo.mIsColorGlyph ? "True" : "False" ) ); + if( characterLayoutInfo.mIsColorGlyph ) + { + styledCharacter.mStyle.SetFontName( EMOJI_FONT_NAME ); + } + else + { + //Choose the right font for the given character and style. + ChooseFontFamilyName( styledCharacter ); + } + + const Font font = Font::New( FontParameters( styledCharacter.mStyle.GetFontName(), styledCharacter.mStyle.GetFontStyle(), styledCharacter.mStyle.GetFontPointSize() ) ); + const Font::Metrics metrics = font.GetMetrics( character ); + const float ascender = font.GetAscender(); + // Fill Natural size info for current character. characterLayoutInfo.mHeight = font.GetLineHeight(); characterLayoutInfo.mAdvance = metrics.GetAdvance();