mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 16:01:20 +02:00
Merge branch 'master' into pu/mp
This commit is contained in:
@@ -64,15 +64,15 @@ fb_pixel_t* CColorGradient::gradientColorToTransparent(fb_pixel_t col, fb_pixel_
|
|||||||
{
|
{
|
||||||
if (bSize < 1)
|
if (bSize < 1)
|
||||||
return gradientBuf;
|
return gradientBuf;
|
||||||
|
unsigned long _bSize = (unsigned long) bSize;
|
||||||
if (gradientBuf == NULL) {
|
if (gradientBuf == NULL) {
|
||||||
gradientBuf = (fb_pixel_t*) malloc(bSize * sizeof(fb_pixel_t));
|
gradientBuf = (fb_pixel_t*) malloc(_bSize * sizeof(fb_pixel_t));
|
||||||
if (gradientBuf == NULL) {
|
if (gradientBuf == NULL) {
|
||||||
dprintf(DEBUG_NORMAL, "[%s:%d] malloc error\n", __func__, __LINE__);
|
dprintf(DEBUG_NORMAL, "[%s:%d] malloc error\n", __func__, __LINE__);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
memset((void*)gradientBuf, '\0', bSize * sizeof(fb_pixel_t));
|
memset((void*)gradientBuf, '\0', _bSize * sizeof(fb_pixel_t));
|
||||||
|
|
||||||
int start_box = 0;
|
int start_box = 0;
|
||||||
int end_box = bSize;
|
int end_box = bSize;
|
||||||
@@ -87,7 +87,7 @@ fb_pixel_t* CColorGradient::gradientColorToTransparent(fb_pixel_t col, fb_pixel_
|
|||||||
uint8_t g = (uint8_t)((col & 0x0000FF00) >> 8);
|
uint8_t g = (uint8_t)((col & 0x0000FF00) >> 8);
|
||||||
uint8_t b = (uint8_t) (col & 0x000000FF);
|
uint8_t b = (uint8_t) (col & 0x000000FF);
|
||||||
|
|
||||||
gradientBuf[i] = ((tr << 24) & 0xFF000000) |
|
gradientBuf[i] = ((unsigned int)(tr << 24) & 0xFF000000) |
|
||||||
((r << 16) & 0x00FF0000) |
|
((r << 16) & 0x00FF0000) |
|
||||||
((g << 8) & 0x0000FF00) |
|
((g << 8) & 0x0000FF00) |
|
||||||
( b & 0x000000FF);
|
( b & 0x000000FF);
|
||||||
@@ -99,15 +99,15 @@ fb_pixel_t* CColorGradient::gradientOneColor(fb_pixel_t col, fb_pixel_t *gradien
|
|||||||
{
|
{
|
||||||
if (bSize < 1)
|
if (bSize < 1)
|
||||||
return gradientBuf;
|
return gradientBuf;
|
||||||
|
unsigned long _bSize = (unsigned long) bSize;
|
||||||
if (gradientBuf == NULL) {
|
if (gradientBuf == NULL) {
|
||||||
gradientBuf = (fb_pixel_t*) malloc(bSize * sizeof(fb_pixel_t));
|
gradientBuf = (fb_pixel_t*) malloc(_bSize * sizeof(fb_pixel_t));
|
||||||
if (gradientBuf == NULL) {
|
if (gradientBuf == NULL) {
|
||||||
dprintf(DEBUG_NORMAL, "[%s:%d] malloc error\n", __func__, __LINE__);
|
dprintf(DEBUG_NORMAL, "[%s:%d] malloc error\n", __func__, __LINE__);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
memset((void*)gradientBuf, '\0', bSize * sizeof(fb_pixel_t));
|
memset((void*)gradientBuf, '\0', _bSize * sizeof(fb_pixel_t));
|
||||||
|
|
||||||
HsvColor hsv;
|
HsvColor hsv;
|
||||||
uint8_t min_v=0, max_v=0, col_s=0;
|
uint8_t min_v=0, max_v=0, col_s=0;
|
||||||
@@ -180,26 +180,22 @@ fb_pixel_t* CColorGradient::gradientOneColor(fb_pixel_t col, fb_pixel_t *gradien
|
|||||||
|
|
||||||
fb_pixel_t* CColorGradient::gradientColorToColor(fb_pixel_t start_col,fb_pixel_t end_col, fb_pixel_t *gradientBuf, int bSize, int mode, int /*intensity*/)
|
fb_pixel_t* CColorGradient::gradientColorToColor(fb_pixel_t start_col,fb_pixel_t end_col, fb_pixel_t *gradientBuf, int bSize, int mode, int /*intensity*/)
|
||||||
{
|
{
|
||||||
|
unsigned long _bSize = (unsigned long) bSize;
|
||||||
if (gradientBuf == NULL) {
|
if (gradientBuf == NULL) {
|
||||||
gradientBuf = (fb_pixel_t*) malloc(bSize * sizeof(fb_pixel_t));
|
gradientBuf = (fb_pixel_t*) malloc(_bSize * sizeof(fb_pixel_t));
|
||||||
if (gradientBuf == NULL) {
|
if (gradientBuf == NULL) {
|
||||||
dprintf(DEBUG_NORMAL, "[%s:%d] malloc error\n", __func__, __LINE__);
|
dprintf(DEBUG_NORMAL, "[%s:%d] malloc error\n", __func__, __LINE__);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
memset((void*)gradientBuf, '\0', bSize * sizeof(fb_pixel_t));
|
memset((void*)gradientBuf, '\0', _bSize * sizeof(fb_pixel_t));
|
||||||
|
|
||||||
int start_box = 0;
|
int start_box = 0;
|
||||||
int end_box = bSize;
|
int end_box = bSize;
|
||||||
|
|
||||||
fb_pixel_t temp_col = end_col;
|
std::swap(start_col,end_col);
|
||||||
end_col = start_col;
|
|
||||||
start_col = temp_col;
|
|
||||||
|
|
||||||
if (mode == gradientDark2Light){
|
if (mode == gradientDark2Light){
|
||||||
temp_col = start_col;
|
std::swap(start_col,end_col);
|
||||||
start_col = end_col;
|
|
||||||
end_col = temp_col;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t start_tr = (uint8_t)((start_col & 0xFF000000) >> 24);
|
uint8_t start_tr = (uint8_t)((start_col & 0xFF000000) >> 24);
|
||||||
@@ -226,7 +222,7 @@ fb_pixel_t* CColorGradient::gradientColorToColor(fb_pixel_t start_col,fb_pixel_t
|
|||||||
uint8_t g = limitChar((int)((float)start_g + gStep*(float)i));
|
uint8_t g = limitChar((int)((float)start_g + gStep*(float)i));
|
||||||
uint8_t b = limitChar((int)((float)start_b + bStep*(float)i));
|
uint8_t b = limitChar((int)((float)start_b + bStep*(float)i));
|
||||||
|
|
||||||
gradientBuf[i] = ((tr << 24) & 0xFF000000) |
|
gradientBuf[i] = ((unsigned int)(tr << 24) & 0xFF000000) |
|
||||||
((r << 16) & 0x00FF0000) |
|
((r << 16) & 0x00FF0000) |
|
||||||
((g << 8) & 0x0000FF00) |
|
((g << 8) & 0x0000FF00) |
|
||||||
( b & 0x000000FF);
|
( b & 0x000000FF);
|
||||||
|
@@ -95,7 +95,7 @@ void CBEChannelWidget::paintItem(int pos)
|
|||||||
|
|
||||||
if (i_selected)
|
if (i_selected)
|
||||||
{
|
{
|
||||||
if (current < Channels->size())
|
if (current < Channels->size() || Channels->empty())
|
||||||
paintDetails(pos, current);
|
paintDetails(pos, current);
|
||||||
|
|
||||||
i_radius = RADIUS_LARGE;
|
i_radius = RADIUS_LARGE;
|
||||||
@@ -240,6 +240,9 @@ std::string CBEChannelWidget::getInfoText(int index)
|
|||||||
{
|
{
|
||||||
std::string res = "";
|
std::string res = "";
|
||||||
|
|
||||||
|
if (Channels->empty())
|
||||||
|
return res;
|
||||||
|
|
||||||
std::string satname = CServiceManager::getInstance()->GetSatelliteName((*Channels)[index]->getSatellitePosition());
|
std::string satname = CServiceManager::getInstance()->GetSatelliteName((*Channels)[index]->getSatellitePosition());
|
||||||
if (IS_WEBTV((*Channels)[index]->getChannelID()))
|
if (IS_WEBTV((*Channels)[index]->getChannelID()))
|
||||||
satname = "WebTV";
|
satname = "WebTV";
|
||||||
|
@@ -83,7 +83,7 @@ void CBEChannelSelectWidget::paintItem(int pos)
|
|||||||
|
|
||||||
if (i_selected)
|
if (i_selected)
|
||||||
{
|
{
|
||||||
if (current < Channels.size())
|
if (current < Channels.size() || Channels.empty())
|
||||||
paintDetails(pos, current);
|
paintDetails(pos, current);
|
||||||
|
|
||||||
i_radius = RADIUS_LARGE;
|
i_radius = RADIUS_LARGE;
|
||||||
@@ -246,6 +246,9 @@ std::string CBEChannelSelectWidget::getInfoText(int index)
|
|||||||
{
|
{
|
||||||
std::string res = "";
|
std::string res = "";
|
||||||
|
|
||||||
|
if (Channels.empty())
|
||||||
|
return res;
|
||||||
|
|
||||||
std::string satname = CServiceManager::getInstance()->GetSatelliteName(Channels[index]->getSatellitePosition());
|
std::string satname = CServiceManager::getInstance()->GetSatelliteName(Channels[index]->getSatellitePosition());
|
||||||
if (IS_WEBTV(Channels[index]->getChannelID()))
|
if (IS_WEBTV(Channels[index]->getChannelID()))
|
||||||
satname = "WebTV";
|
satname = "WebTV";
|
||||||
|
Reference in New Issue
Block a user