screensaver/screensaverplugins/snsrbigclockscreensaverplugin/src/snsrblankcontainer.cpp
changeset 69 87476091b3f5
child 86 e4f038c420f7
equal deleted inserted replaced
67:474929a40a0f 69:87476091b3f5
       
     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:  Container for blank screen.
       
    15 *
       
    16 */
       
    17 
       
    18 #include "snsrblankcontainer.h"
       
    19 
       
    20 /*!
       
    21     \class SnsrBlankContainer
       
    22     \ingroup group_snsrbigclockscreensaverplugin
       
    23     \brief Container used for preparing layout for blank screen.
       
    24  */
       
    25 
       
    26 /*!
       
    27     Constructs a new SnsrBlankContainer.
       
    28  */
       
    29 SnsrBlankContainer::SnsrBlankContainer() :
       
    30     SnsrBigClockContainer()
       
    31 {
       
    32 }
       
    33 
       
    34 /*!
       
    35     Destructs the class.
       
    36  */
       
    37 SnsrBlankContainer::~SnsrBlankContainer()
       
    38 {
       
    39 }
       
    40 
       
    41 void SnsrBlankContainer::update()
       
    42 {
       
    43     // nothing to do
       
    44 }
       
    45 
       
    46 int SnsrBlankContainer::updateIntervalInMilliseconds()
       
    47 {
       
    48     // don't start timer
       
    49     return -1;
       
    50 }
       
    51 
       
    52 void SnsrBlankContainer::loadWidgets()
       
    53 {
       
    54     // nothing to do as we have no visual components
       
    55 }
       
    56 
       
    57 // end of file