Files
neutrino/src/gui/timeosd.cpp
2017-02-05 20:04:33 +01:00

187 lines
4.2 KiB
C++

/*
Neutrino-GUI - DBoxII-Project
TimeOSD by Zwen
Copyright (C) 2013, Thilo Graf 'dbt'
Copyright (C) 2013, Michael Liebmann 'micha-bbg'
Copyright (C) 2013, martii
License: GPL
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public
License along with this program; if not, write to the
Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <global.h>
#include <neutrino.h>
#include <gui/volumebar.h>
#include <gui/infoclock.h>
#include <gui/timeosd.h>
#include "screensaver.h"
CTimeOSD::CTimeOSD():CComponentsFrmClock( 1, 1, NULL, "%H:%M:%S", NULL, false, 1, NULL, CC_SHADOW_ON)
{
m_mode = MODE_HIDE;
tmp_mode = MODE_HIDE;
m_restore = false;
mp_time_forced = false;
Init();
}
void CTimeOSD::Init()
{
paint_bg = g_settings.infoClockBackground;
m_time_show = time(0);
//use current theme colors
setColorAll(COL_FRAME_PLUS_0, COL_MENUCONTENT_PLUS_0, COL_SHADOW_PLUS_0);
//set text color
if (paint_bg){
cl_col_text = COL_MENUCONTENT_TEXT;
setColorBody(COL_MENUCONTENT_PLUS_0);
}else{
cl_col_text = COL_INFOCLOCK_TEXT;
setColorBody(COL_BACKGROUND_PLUS_0);
}
setClockFont(CInfoClock::getInstance()->getClockFont());
// set corner radius depending on clock height
corner_rad = (g_settings.rounded_corners) ? std::max(height/10, CORNER_RADIUS_SMALL) : 0;
CComponentsFrmClock::initCCLockItems();
CVolumeHelper::getInstance()->refresh(cl_font);
CVolumeHelper::getInstance()->getTimeDimensions(&x, &y, &width, &height);
timescale.setType(CProgressBar::PB_TIMESCALE);
}
#if 0 //if hide() or kill() required, it's recommended to use it separately
CTimeOSD::~CTimeOSD()
{
CComponents::kill();
clear();
}
#endif
CTimeOSD* CTimeOSD::getInstance()
{
static CTimeOSD* timeOSD = NULL;
if(!timeOSD)
timeOSD = new CTimeOSD();
return timeOSD;
}
void CTimeOSD::initTimeString()
{
struct tm t;
toggleFormat();
if (m_mode == MODE_DESC)
cl_format = "-" + cl_format;
strftime((char*) &cl_timestr, sizeof(cl_timestr), cl_format.c_str(), gmtime_r(&m_time_show, &t));
}
void CTimeOSD::show(time_t time_show, bool force)
{
time_show /= 1000;
if (!force && (m_mode == MODE_HIDE || m_time_show == time_show || CScreenSaver::getInstance()->IsRun()))
return;
m_time_show = time_show;
setColorAll(COL_FRAME_PLUS_0, COL_MENUCONTENT_PLUS_0, COL_SHADOW_PLUS_0); //use current theme colors
paint_bg = true;
if (g_settings.infoClockBackground)
setColorBody(COL_MENUCONTENT_PLUS_0);
else
setColorBody(COL_BACKGROUND_PLUS_0);
enableShadow(g_settings.infoClockBackground);
paint(false);
}
void CTimeOSD::updatePos(int position, int duration)
{
int percent = (duration && duration > 100) ? (position * 100 / duration) : 0;
if(percent > 100)
percent = 100;
else if(percent < 0)
percent = 0;
timescale.setProgress(x, y + height/4, width, height/2, percent, 100);
timescale.paint();
}
void CTimeOSD::update(int position, int duration)
{
switch(m_mode) {
case MODE_ASC:
show(position, false);
break;
case MODE_DESC:
show(duration - position, false);
break;
case MODE_BAR:
updatePos(position, duration);
break;
default:
;
}
}
void CTimeOSD::switchMode(int position, int duration)
{
switch (m_mode) {
case MODE_ASC:
m_mode = MODE_DESC;
CComponents::kill();
break;
case MODE_DESC:
m_mode = MODE_BAR;
CComponents::kill();
break;
case MODE_BAR:
KillAndResetTimescale();
return;
default:
m_mode = MODE_ASC;
}
update(position, duration);
}
void CTimeOSD::kill()
{
if (m_mode != MODE_HIDE) {
KillAndResetTimescale();
CComponents::kill();
frameBuffer->blit();
}
}
void CTimeOSD::KillAndResetTimescale()
{
m_mode = MODE_HIDE;
timescale.kill();
timescale.reset();
}