2006-01-28 12:29:22 +01:00
|
|
|
/******************************************************************************\
|
|
|
|
* Copyright (c) 2004-2006
|
|
|
|
*
|
|
|
|
* Author(s):
|
2006-11-25 15:46:57 +01:00
|
|
|
* Volker Fischer
|
2006-01-28 12:29:22 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2006-11-25 15:46:57 +01:00
|
|
|
* Implements a multi-color LED
|
|
|
|
*
|
2006-01-28 12:29:22 +01:00
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
\******************************************************************************/
|
|
|
|
|
|
|
|
#include "multicolorled.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Implementation *************************************************************/
|
|
|
|
CMultiColorLEDbase::CMultiColorLEDbase()
|
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
/* Define size of the bitmaps */
|
|
|
|
const int iXSize = 13;
|
|
|
|
const int iYSize = 13;
|
|
|
|
|
|
|
|
/* Create bitmaps */
|
|
|
|
BitmCubeGreen.resize(iXSize, iYSize);
|
|
|
|
BitmCubeGreen.fill(QColor(0, 255, 0));
|
|
|
|
BitmCubeRed.resize(iXSize, iYSize);
|
|
|
|
BitmCubeRed.fill(QColor(255, 0, 0));
|
|
|
|
BitmCubeGrey.resize(iXSize, iYSize);
|
|
|
|
BitmCubeGrey.fill(QColor(192, 192, 192));
|
|
|
|
BitmCubeYellow.resize(iXSize, iYSize);
|
|
|
|
BitmCubeYellow.fill(QColor(255, 255, 0));
|
|
|
|
|
|
|
|
/* Init color flags */
|
|
|
|
Reset();
|
|
|
|
|
|
|
|
/* Set init-bitmap */
|
|
|
|
SetPixmap(BitmCubeGrey);
|
|
|
|
eColorFlag = RL_GREY;
|
|
|
|
|
|
|
|
/* Init update time */
|
|
|
|
iUpdateTime = DEFAULT_UPDATE_TIME;
|
|
|
|
|
|
|
|
/* Connect timer events to the desired slots */
|
|
|
|
connect(&TimerRedLight, SIGNAL(timeout()),
|
|
|
|
this, SLOT(OnTimerRedLight()));
|
|
|
|
connect(&TimerGreenLight, SIGNAL(timeout()),
|
|
|
|
this, SLOT(OnTimerGreenLight()));
|
|
|
|
connect(&TimerYellowLight, SIGNAL(timeout()),
|
|
|
|
this, SLOT(OnTimerYellowLight()));
|
2006-01-28 12:29:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMultiColorLEDbase::Reset()
|
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
/* Reset color flags */
|
|
|
|
bFlagRedLi = false;
|
|
|
|
bFlagGreenLi = false;
|
|
|
|
bFlagYellowLi = false;
|
2006-01-28 12:29:22 +01:00
|
|
|
|
2006-11-25 15:46:57 +01:00
|
|
|
UpdateColor();
|
2006-01-28 12:29:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMultiColorLEDbase::OnTimerRedLight()
|
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
bFlagRedLi = false;
|
|
|
|
UpdateColor();
|
2006-01-28 12:29:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMultiColorLEDbase::OnTimerGreenLight()
|
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
bFlagGreenLi = false;
|
|
|
|
UpdateColor();
|
2006-01-28 12:29:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMultiColorLEDbase::OnTimerYellowLight()
|
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
bFlagYellowLi = false;
|
|
|
|
UpdateColor();
|
2006-01-28 12:29:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMultiColorLEDbase::UpdateColor()
|
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
/* Red light has highest priority, then comes yellow and at the end, we
|
|
|
|
decide to set green light. Allways check the current color of the
|
|
|
|
control before setting the color to prevent flicking */
|
|
|
|
if (bFlagRedLi)
|
|
|
|
{
|
|
|
|
if (eColorFlag != RL_RED)
|
|
|
|
{
|
|
|
|
SetPixmap(BitmCubeRed);
|
|
|
|
eColorFlag = RL_RED;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bFlagYellowLi)
|
|
|
|
{
|
|
|
|
if (eColorFlag != RL_YELLOW)
|
|
|
|
{
|
|
|
|
SetPixmap(BitmCubeYellow);
|
|
|
|
eColorFlag = RL_YELLOW;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bFlagGreenLi)
|
|
|
|
{
|
|
|
|
if (eColorFlag != RL_GREEN)
|
|
|
|
{
|
|
|
|
SetPixmap(BitmCubeGreen);
|
|
|
|
eColorFlag = RL_GREEN;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If no color is active, set control to grey light */
|
|
|
|
if (eColorFlag != RL_GREY)
|
|
|
|
{
|
|
|
|
SetPixmap(BitmCubeGrey);
|
|
|
|
eColorFlag = RL_GREY;
|
|
|
|
}
|
2006-01-28 12:29:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMultiColorLEDbase::SetLight(int iNewStatus)
|
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
switch (iNewStatus)
|
|
|
|
{
|
|
|
|
case MUL_COL_LED_GREEN:
|
|
|
|
/* Green light */
|
|
|
|
bFlagGreenLi = true;
|
|
|
|
TimerGreenLight.changeInterval(iUpdateTime);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MUL_COL_LED_YELLOW:
|
|
|
|
/* Yellow light */
|
|
|
|
bFlagYellowLi = true;
|
|
|
|
TimerYellowLight.changeInterval(iUpdateTime);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MUL_COL_LED_RED:
|
|
|
|
/* Red light */
|
|
|
|
bFlagRedLi = true;
|
|
|
|
TimerRedLight.changeInterval(iUpdateTime);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
UpdateColor();
|
2006-01-28 12:29:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CMultiColorLEDbase::SetUpdateTime(int iNUTi)
|
|
|
|
{
|
2006-11-25 15:46:57 +01:00
|
|
|
/* Avoid too short intervals */
|
|
|
|
if (iNUTi < MIN_TIME_FOR_RED_LIGHT)
|
|
|
|
iUpdateTime = MIN_TIME_FOR_RED_LIGHT;
|
|
|
|
else
|
|
|
|
iUpdateTime = iNUTi;
|
2006-01-28 12:29:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CMultiColorLED::CMultiColorLED(QWidget* parent, const char* name, WFlags f) :
|
2006-11-25 15:46:57 +01:00
|
|
|
QLabel(parent, name, f)
|
2006-01-28 12:29:22 +01:00
|
|
|
{
|
2006-12-09 16:00:24 +01:00
|
|
|
// set modified style
|
2006-11-25 15:46:57 +01:00
|
|
|
setFrameShape(QFrame::Panel);
|
|
|
|
setFrameShadow(QFrame::Sunken);
|
|
|
|
setIndent(0);
|
2006-01-28 12:29:22 +01:00
|
|
|
}
|