videoplayback/hbvideoplaybackview/tsrc/testprogressbar/stub/inc/hblabel.h
changeset 36 8aed59de29f9
parent 35 3738fe97f027
child 37 4eb2df7f7cbe
equal deleted inserted replaced
35:3738fe97f027 36:8aed59de29f9
     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:  Stub Implementation of HbLabel
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version:  1 %
       
    19 
       
    20 
       
    21 
       
    22 #ifndef HBLABEL_H_
       
    23 #define HBLABEL_H_
       
    24 
       
    25 #include <hbwidget.h>
       
    26 
       
    27 
       
    28 class HbLabel : public HbWidget
       
    29 {
       
    30     Q_OBJECT
       
    31 
       
    32     public:
       
    33         HbLabel();
       
    34         virtual ~HbLabel();
       
    35 
       
    36     public:
       
    37         void setVisible( bool visible );
       
    38        
       
    39         bool isVisible();
       
    40         
       
    41         void setPlainText(const QString &text);
       
    42 
       
    43     public:
       
    44         bool mVisible;
       
    45         bool mTextSet;
       
    46         QString mLabelText;
       
    47 };
       
    48 
       
    49 #endif /*HBPUSHBUTTON_H*/
       
    50