mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 09:21:09 +02:00
CTextBox: consider utf8 mode parameter for correct render width, if required
Origin commit data
------------------
Commit: 4e002bdf66
Author: Thilo Graf <dbt@novatux.de>
Date: 2015-07-13 (Mon, 13 Jul 2015)
This commit is contained in:
@@ -397,7 +397,7 @@ void CTextBox::refreshTextLineArray(void)
|
||||
aktWord = m_cText.substr(pos_prev, pos - pos_prev + 1);
|
||||
|
||||
//calculate length of current found word
|
||||
aktWordWidth = m_pcFontText->getRenderWidth(aktWord);
|
||||
aktWordWidth = m_pcFontText->getRenderWidth(aktWord, m_utf8_encoded);
|
||||
|
||||
//set next start pos
|
||||
pos_prev = pos + 1;
|
||||
@@ -640,10 +640,10 @@ void CTextBox::refreshText(void)
|
||||
{
|
||||
//calculate centered xpos
|
||||
if( m_nMode & CENTER ){
|
||||
x_center = ((m_cFrameTextRel.iWidth - m_pcFontText->getRenderWidth(m_cLineArray[i]))>>1) - text_Hborder_width;
|
||||
x_center = ((m_cFrameTextRel.iWidth - m_pcFontText->getRenderWidth(m_cLineArray[i]))>>1, m_utf8_encoded) - text_Hborder_width;
|
||||
}
|
||||
else if ( m_nMode & RIGHT ){
|
||||
x_center = ((m_cFrameTextRel.iWidth - m_pcFontText->getRenderWidth(m_cLineArray[i])) - text_Hborder_width*2);
|
||||
x_center = ((m_cFrameTextRel.iWidth - m_pcFontText->getRenderWidth(m_cLineArray[i]), m_utf8_encoded) - text_Hborder_width*2);
|
||||
if ( m_nMode & SCROLL )
|
||||
x_center -= SCROLL_FRAME_WIDTH;
|
||||
}
|
||||
|
Reference in New Issue
Block a user