mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 08:21:07 +02:00
paintButtons: add max txt length option
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1960 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Commit: 2b72b7c57e
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2011-12-08 (Thu, 08 Dec 2011)
This commit is contained in:
@@ -70,7 +70,8 @@ int paintButtons( const int &x,
|
||||
const unsigned char fcolor,
|
||||
const char * alt_buttontext,
|
||||
const uint &buttontext_id,
|
||||
bool show)
|
||||
bool show,
|
||||
const std::vector<neutrino_locale_t>& all_buttontext_id)
|
||||
{
|
||||
CFrameBuffer *frameBuffer = CFrameBuffer::getInstance();
|
||||
Font * font = g_Font[SNeutrinoSettings::FONT_TYPE_INFOBAR_SMALL];
|
||||
@@ -114,7 +115,18 @@ int paintButtons( const int &x,
|
||||
int fwidth = font->getRenderWidth(buttontext, true);
|
||||
w_max_text = std::max(w_max_text, fwidth);
|
||||
}
|
||||
|
||||
if(!all_buttontext_id.empty())
|
||||
{
|
||||
for(vector<neutrino_locale_t>::const_iterator it = all_buttontext_id.begin(); it != all_buttontext_id.end(); ++it)
|
||||
{
|
||||
//text
|
||||
const char * buttontext = *it ? g_Locale->getText( *it ) : "";
|
||||
|
||||
//text width
|
||||
int fwidth = font->getRenderWidth(buttontext, true);
|
||||
w_max_text = std::max(w_max_text, fwidth);
|
||||
}
|
||||
}
|
||||
//calculate button width
|
||||
w_button = buttonwidth == 0 ? (w_max_icon + w_space + w_max_text) : buttonwidth;
|
||||
|
||||
|
Reference in New Issue
Block a user