videoplayback/hbvideoplaybackview/tsrc/teststatuspanecontrol/stub/inc/hbgroupbox.h
changeset 52 e3cecb93e76a
parent 47 45e72b57a2fd
child 59 a76e86df7ccd
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:  Stub Implementation of HbGroupBox
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version:   1 %
       
    19 
       
    20 
       
    21 
       
    22 #ifndef HBGROUPBOX_H_
       
    23 #define HBGROUPBOX_H_
       
    24 
       
    25 #include <hbwidget.h>
       
    26 
       
    27 
       
    28 class HbGroupBox : public HbWidget
       
    29 {
       
    30     Q_OBJECT
       
    31 
       
    32     public:
       
    33         HbGroupBox();
       
    34         virtual ~HbGroupBox();
       
    35 
       
    36     public:
       
    37         void setVisible( bool visible );       
       
    38         bool isVisible();
       
    39         void setHeading( QString string );
       
    40 
       
    41     public:
       
    42         bool mVisible;
       
    43         QString mString;
       
    44 };
       
    45 
       
    46 #endif /*HBGROUPBOX_H_*/
       
    47