mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 15:16:07 +01:00
Initial import of CVS-v2_8_branch
This commit is contained in:
172
rdairplay/stop_counter.cpp
Normal file
172
rdairplay/stop_counter.cpp
Normal file
@@ -0,0 +1,172 @@
|
||||
// stop_counter.cpp
|
||||
//
|
||||
// The stop counter widget for Rivendell
|
||||
//
|
||||
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: stop_counter.cpp,v 1.21 2011/01/10 19:27:40 cvs Exp $
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
// published by the Free Software Foundation.
|
||||
//
|
||||
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include <qpixmap.h>
|
||||
#include <qpainter.h>
|
||||
|
||||
#include <stop_counter.h>
|
||||
#include <globals.h>
|
||||
|
||||
StopCounter::StopCounter(QWidget *parent,const char *name)
|
||||
: QPushButton(parent,name)
|
||||
{
|
||||
stop_running=false;
|
||||
|
||||
//
|
||||
// Generate Fonts
|
||||
//
|
||||
stop_text_font=QFont("Helvetica",12,QFont::Normal);
|
||||
stop_text_font.setPixelSize(12);
|
||||
stop_time_font=QFont("Helvetica",26,QFont::Normal);
|
||||
stop_time_font.setPixelSize(26);
|
||||
|
||||
time_format = "hh:mm:ss";
|
||||
stop_text=tr("Next Stop [none]");
|
||||
old_stop_running = true;
|
||||
old_msecs = 0;
|
||||
setTime(QTime());
|
||||
setState(false);
|
||||
}
|
||||
|
||||
void StopCounter::setTimeMode(RDAirPlayConf::TimeMode mode)
|
||||
{
|
||||
switch(mode) {
|
||||
case RDAirPlayConf::TwentyFourHour:
|
||||
time_format="hh:mm:ss";
|
||||
break;
|
||||
|
||||
case RDAirPlayConf::TwelveHour:
|
||||
time_format="h:mm:ss ap";
|
||||
break;
|
||||
}
|
||||
old_msecs = 0;
|
||||
if (stop_running) {
|
||||
setTime (stop_time);
|
||||
}
|
||||
UpdateTime();
|
||||
}
|
||||
|
||||
|
||||
QSize StopCounter::sizeHint() const
|
||||
{
|
||||
return QSize(200,60);
|
||||
}
|
||||
|
||||
|
||||
QSizePolicy StopCounter::sizePolicy() const
|
||||
{
|
||||
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
||||
}
|
||||
|
||||
|
||||
void StopCounter::setState(bool state)
|
||||
{
|
||||
QString str;
|
||||
|
||||
if(state) {
|
||||
if(!stop_running) {
|
||||
UpdateTime();
|
||||
stop_running=true;
|
||||
str=QString(tr("Next Stop"));
|
||||
stop_text=
|
||||
QString().sprintf("%s [%s]",(const char *)str,
|
||||
(const char *)stop_time.toString(time_format));
|
||||
}
|
||||
}
|
||||
else {
|
||||
if(stop_running) {
|
||||
stop_text=tr("Next Stop [none]");
|
||||
stop_running=false;
|
||||
UpdateTime();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void StopCounter::setTime(QTime time)
|
||||
{
|
||||
QString str;
|
||||
|
||||
if(!time.isNull()) {
|
||||
stop_time=time;
|
||||
setState(true);
|
||||
str=QString(tr("Next Stop"));
|
||||
stop_text=QString().sprintf("%s [%s]",(const char *)str,
|
||||
(const char *)stop_time.toString(time_format));
|
||||
}
|
||||
else {
|
||||
setState(false);
|
||||
}
|
||||
UpdateTime();
|
||||
}
|
||||
|
||||
|
||||
void StopCounter::tickCounter()
|
||||
{
|
||||
if(stop_running) {
|
||||
UpdateTime();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void StopCounter::UpdateTime()
|
||||
{
|
||||
QString text;
|
||||
int msecs=QTime::currentTime().
|
||||
addMSecs(rdstation_conf->timeOffset()).msecsTo(stop_time);
|
||||
|
||||
if ((old_stop_running != stop_running) || (msecs/1000 != old_msecs/1000)){
|
||||
QPixmap pix(sizeHint().width(),sizeHint().height());
|
||||
QPainter *p=new QPainter(&pix);
|
||||
old_stop_running = stop_running;
|
||||
old_msecs = msecs;
|
||||
|
||||
p->fillRect(0,0,sizeHint().width(),sizeHint().height(),
|
||||
backgroundColor());
|
||||
//p->eraseRect(0,0,sizeHint().width(),sizeHint().height());
|
||||
p->setPen(QColor(color1));
|
||||
p->setFont(stop_text_font);
|
||||
p->drawText((sizeHint().width()-p->fontMetrics().width(stop_text))/2,22,
|
||||
stop_text);
|
||||
p->setFont(stop_time_font);
|
||||
if (msecs < 0){
|
||||
/* HACK HACK HACK TODO */
|
||||
/* msecs is **PROBABLY** in the next day
|
||||
(we have a log crossing midnight - logs
|
||||
longer then 24 hours are NOT supported by this,
|
||||
please fix).... */
|
||||
msecs += 86400000; /* 1 day */
|
||||
}
|
||||
if(stop_running) {
|
||||
text=QTime(0,0,1).addMSecs(msecs).toString("hh:mm:ss");
|
||||
p->drawText((sizeHint().width()-p->fontMetrics().width(text))/2,49,text);
|
||||
}
|
||||
else {
|
||||
p->drawText((sizeHint().width()-p->
|
||||
fontMetrics().width(tr("Stopped")))/2,49,
|
||||
tr("Stopped"));
|
||||
}
|
||||
p->end();
|
||||
delete p;
|
||||
setPixmap(pix);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user