videoplayback/videoplaybackview/tsrc/teststatuspanecontrol/stub/src/hblabel.cpp
changeset 52 e3cecb93e76a
equal deleted inserted replaced
47:45e72b57a2fd 52:e3cecb93e76a
       
     1 /*
       
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Implementation of HbLabel
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version:  2 %
       
    19 
       
    20 
       
    21 #include "hblabel.h"
       
    22 
       
    23 // -------------------------------------------------------------------------------------------------
       
    24 // HbLabel::HbLabel
       
    25 // -------------------------------------------------------------------------------------------------
       
    26 //
       
    27 HbLabel::HbLabel()
       
    28 {
       
    29 }
       
    30 
       
    31 // -------------------------------------------------------------------------------------------------
       
    32 // HbLabel::~HbLabel
       
    33 // -------------------------------------------------------------------------------------------------
       
    34 //
       
    35 HbLabel::~HbLabel()
       
    36 {
       
    37 }
       
    38 
       
    39 // -------------------------------------------------------------------------------------------------
       
    40 // HbLabel::setVisible
       
    41 // -------------------------------------------------------------------------------------------------
       
    42 //
       
    43 void HbLabel::setVisible( bool visible )
       
    44 {
       
    45     mVisible = visible;
       
    46 }
       
    47 
       
    48 // -------------------------------------------------------------------------------------------------
       
    49 // HbLabel::isVisible
       
    50 // -------------------------------------------------------------------------------------------------
       
    51 //
       
    52 bool HbLabel::isVisible()
       
    53 {
       
    54     return mVisible;
       
    55 }
       
    56 
       
    57 // -------------------------------------------------------------------------------------------------
       
    58 // HbLabel::setPlainText
       
    59 // -------------------------------------------------------------------------------------------------
       
    60 //
       
    61 void HbLabel::setPlainText( QString string )
       
    62 {
       
    63     mString = string;
       
    64 }
       
    65 
       
    66 // End of file