fix clock position & corner

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@403 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
satbaby
2010-02-24 09:32:21 +00:00
parent da9704d766
commit dca2980e30
4 changed files with 17 additions and 16 deletions

View File

@@ -12,12 +12,13 @@
#include <sys/param.h>
#include "infoclock.h"
#define XOFF 10
#define YOFF 0
CInfoClock::CInfoClock()
{
frameBuffer = CFrameBuffer::getInstance();
x = frameBuffer->getScreenWidth();
y = frameBuffer->getScreenY();
time_height = g_Font[SNeutrinoSettings::FONT_TYPE_INFOBAR_CHANNAME]->getHeight();
int t1 = g_Font[SNeutrinoSettings::FONT_TYPE_INFOBAR_CHANNAME]->getRenderWidth(widest_number);
@@ -35,9 +36,6 @@ CInfoClock::~CInfoClock()
void CInfoClock::paintTime( bool show_dot)
{
int x = g_settings.screen_EndX - XOFF;
int y = g_settings.screen_StartY + YOFF;
char timestr[10];
time_t tm;
@@ -46,7 +44,7 @@ void CInfoClock::paintTime( bool show_dot)
strftime((char*) &timestr, 20, "%H:%M:%S", localtime(&tm));
else
strftime((char*) &timestr, 20, "%H.%M:%S", localtime(&tm));
frameBuffer->paintBoxRel(x - time_width - 15, y, time_width, time_height, COL_MENUCONTENT_PLUS_0, 7);
frameBuffer->paintBoxRel(x - time_width - 15, y, time_width, time_height, COL_MENUCONTENT_PLUS_0, RADIUS_SMALL);
g_Font[SNeutrinoSettings::FONT_TYPE_INFOBAR_CHANNAME]->RenderString(x - time_width- 10, y+ time_height, time_width, timestr, COL_MENUCONTENT);
}
@@ -78,8 +76,6 @@ void CInfoClock::StartClock()
void CInfoClock::StopClock()
{
int x = g_settings.screen_EndX - XOFF;
int y = g_settings.screen_StartY + YOFF;
if(thrTimer) {
pthread_cancel(thrTimer);
thrTimer = 0;

View File

@@ -20,7 +20,7 @@ class CInfoClock
int time_width;
int time_height;
void paintTime( bool show_dot);
int y,x;
static void CleanUpProc(void* arg);
static void* TimerProc(void *arg);

View File

@@ -69,9 +69,9 @@ void CTimeOSD::show(time_t time_show)
void CTimeOSD::GetDimensions()
{
m_xstart = g_settings.screen_StartX + 10;
m_xend = g_settings.screen_EndX - 10;
m_xend = frameBuffer->getScreenWidth();
m_height = g_Font[TIMEOSD_FONT]->getHeight();
m_y = g_settings.screen_StartY + 10;
m_y = frameBuffer->getScreenY();
m_width = g_Font[TIMEOSD_FONT]->getRenderWidth("00:00:00");
if(g_settings.mode_clock) {
int x1 = g_Font[SNeutrinoSettings::FONT_TYPE_INFOBAR_CHANNAME]->getRenderWidth(widest_number);
@@ -127,11 +127,11 @@ void CTimeOSD::updatePos(short runningPercent)
void CTimeOSD::hide()
{
GetDimensions();
printf("CTimeOSD::hide: x %d y %d xend %d yend %d\n", m_xstart, m_y , m_xend - (g_settings.mode_clock ? 35 : 0), m_height + 15);
printf("CTimeOSD::hide: x %d y %d xend %d yend %d\n", m_xstart, m_y , m_xend - (g_settings.mode_clock ? m_width-5 : 0), m_height + 15);
if(!visible)
return;
//frameBuffer->paintBackgroundBoxRel(m_xstart-10, m_y - 10 , m_xend - (g_settings.mode_clock ? 35 : 0), m_height + 15);
frameBuffer->paintBackgroundBoxRel(m_xstart-2, m_y , m_xend - (g_settings.mode_clock ? 35 : 0), m_height + 15);
frameBuffer->paintBackgroundBoxRel(m_xstart-2, m_y , m_xend - (g_settings.mode_clock ? m_width-5 : 0), m_height + 15);
visible=false;
timescale->reset();
}