screensaver/snsrutils/src/snsrlabel.cpp
author hgs
Wed, 06 Oct 2010 16:06:24 +0300
changeset 97 66b5fe3c07fd
parent 86 e4f038c420f7
permissions -rw-r--r--
201039_01

/*
* Copyright (c) 2009 - 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
* 
* Description:  Screensaver label.
*
*/

#include "snsrlabel.h"
#include "snsrcolors.h"

#include <hbevent.h>
#include <hbcolorscheme.h>


/*!
    \class SnsrLabel
    \ingroup group_snsrutils
    \brief Screensaver label.
 */

/*!
    Constructs a new SnsrLabel.
    \param parent Graphics parent item.
 */
SnsrLabel::SnsrLabel(QGraphicsItem *parent)
    : HbLabel(parent), mTextColorType(ThemedColorForActiveMode)
{
    setThemedTextColor();
}

/*!
    Constructs a new SnsrLabel.
    \param displayText Text the label should display.
    \param parent Graphics parent item.
 */
SnsrLabel::SnsrLabel(const QString &displayText, QGraphicsItem *parent)
    : HbLabel(displayText, parent), 
      mTextColorType(ThemedColorForActiveMode)
{
    setThemedTextColor();
}

/*!
    Destructs the class.
 */
SnsrLabel::~SnsrLabel()
{
}

/*!
    Set the coloring scheme to be used: fixed color for power save mode (white) or 
    themed color for active mode.
 */
void SnsrLabel::setTextColorType(const TextColorType &colorType)
{
    mTextColorType = colorType;
    if (mTextColorType==FixedColorForPowerSaveMode) {
        setTextColor(SnsrColors::PowerSaveModeWidgetColor);
    }
    else {
        setThemedTextColor();
    }   
}

/*!
    \reimp
 */
void SnsrLabel::changeEvent(QEvent * event)
{
    if (event->type() == HbEvent::ThemeChanged &&
        mTextColorType == ThemedColorForActiveMode) {
        setThemedTextColor();
    }
    return HbLabel::changeEvent(event);
}

/*!
    Sets the label's color to follow the theme.
 */
void SnsrLabel::setThemedTextColor()
{
    QColor textColor(HbColorScheme::color(SnsrColors::WidgetColorRole.latin1()));
    if (textColor.isValid()) {
        setTextColor(textColor);
    } else {
        // fallback mechanism when color definition is missing in default theme
        setTextColor(Qt::white);
    }
}