neutrino: make blinkenlights runtime configurable

Get rid of "--disable-blinkenlights" configure switch. Colored
progress bars can be disabled with "neutrino -noblink" now.
Unfortunately CProgressBar had to be touched again to avoid
ambiguities in the constructor, but should be done for now.

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@133 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 691811695a
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2010-01-03 (Sun, 03 Jan 2010)



------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2010-01-03 12:06:13 +00:00
parent 93422d7fb4
commit a0c7d1cee5
11 changed files with 63 additions and 74 deletions

View File

@@ -32,6 +32,7 @@
#include <gui/widget/progressbar.h>
static CProgressBar *timescale;
extern bool pb_blink;
#define TIMEOSD_FONT SNeutrinoSettings::FONT_TYPE_INFOBAR_CHANNAME
#define TIMEBARH 38
@@ -43,7 +44,7 @@ CTimeOSD::CTimeOSD()
m_mode=MODE_ASC;
GetDimensions();
if (! timescale)
timescale = new CProgressBar(200, 32, PB_COLORED, 40, 100, 70, true);
timescale = new CProgressBar(pb_blink, 200, 32, 40, 100, 70, true);
}
CTimeOSD::~CTimeOSD()