homescreenapp/hsapplication/tsrc/t_hsapplication/t_hsapplicationexe/src/hsspinnerdialog_mock.cpp
changeset 96 458d8c8d9580
equal deleted inserted replaced
92:6727c5d0afc7 96:458d8c8d9580
       
     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:
       
    15 *    Spinner dialog shown when setting new background image
       
    16 *
       
    17 */
       
    18 
       
    19 #include "hsspinnerdialog.h"
       
    20 
       
    21 /*!
       
    22     \internal
       
    23     \class HsSpinnerDialog
       
    24     \ingroup group_hsutils
       
    25     \brief Spinner dialog, used when background image is changed. By default dialog is created with Qt::WA_DeleteOnClose attribute so dialog
       
    26     is automatically deleted when closed.
       
    27 
       
    28 */
       
    29 
       
    30 /*!
       
    31     \internal
       
    32     Constructor.
       
    33 
       
    34     \a parent Owner.
       
    35 */
       
    36 HsSpinnerDialog::HsSpinnerDialog(QGraphicsItem *parent)
       
    37 : HbDialog(parent)
       
    38 {
       
    39 }
       
    40 
       
    41 /*!
       
    42     \internal
       
    43 */
       
    44 HsSpinnerDialog::~HsSpinnerDialog()
       
    45 {
       
    46 }
       
    47 
       
    48 /*!
       
    49     \internal
       
    50 */
       
    51 void HsSpinnerDialog::start()
       
    52 {
       
    53 }
       
    54 
       
    55 /*!
       
    56     \internal
       
    57 */
       
    58 void HsSpinnerDialog::stop()
       
    59 {
       
    60 }
       
    61