homescreenapp/hsdomainmodel/inc/hsscene_p.h
changeset 36 cdae8c6c3876
parent 35 f9ce957a272c
child 39 4e8ebe173323
equal deleted inserted replaced
35:f9ce957a272c 36:cdae8c6c3876
     1 /*
       
     2 * Copyright (c) 2009 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 *
       
    16 */
       
    17 
       
    18 #ifndef HSSCENE_P_H
       
    19 #define HSSCENE_P_H
       
    20 
       
    21 class HsWallpaper;
       
    22 class HsPage;
       
    23 class HsWidgetHost;
       
    24 #ifndef Q_OS_SYMBIAN
       
    25 class HsIpcConnectionDispatcher;
       
    26 #endif
       
    27 
       
    28 class HsScenePrivate
       
    29 {
       
    30 public:
       
    31     HsScenePrivate();
       
    32     ~HsScenePrivate();
       
    33 
       
    34     int mDatabaseId;
       
    35     bool mIsOnline;
       
    36     HsWallpaper *mWallpaper;
       
    37     QList<HsPage *> mPages;
       
    38     HsPage *mActivePage;
       
    39     HsWidgetHost *mActiveWidget;
       
    40 #ifndef Q_OS_SYMBIAN
       
    41     HsIpcConnectionDispatcher *mIpcConnectionDispatcher;
       
    42 #endif
       
    43     
       
    44 };
       
    45 
       
    46 #endif // HSSCENE_P_H