homescreenapp/stateplugins/hshomescreenstateplugin/inc/hsselectbackgroundstate.h
branchGCC_SURGE
changeset 68 4c11ecddf6b2
parent 53 f75922b9e380
parent 61 2b1b11a301d2
--- a/homescreenapp/stateplugins/hshomescreenstateplugin/inc/hsselectbackgroundstate.h	Fri Jun 11 16:23:43 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,97 +0,0 @@
-/*
-* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:
-*
-*/
-
-#ifndef HSSELECTBACKGROUNDSTATESTATE_H
-#define HSSELECTBACKGROUNDSTATESTATE_H
-
-#include <QState>
-#include <QStringList>
-
-#include "hstest_global.h"
-#include "hswallpaperimagereader.h"
-
-HOMESCREEN_TEST_CLASS(HomeScreenStatePluginTest)
-
-class QThread;
-class HbView;
-class HbProgressDialog;
-#ifdef Q_OS_SYMBIAN
-class HsImageFetcherClient;
-#else
-class XQAIWGetImageClient;
-#endif
-class HsImageRender;
-
-class HsSelectBackgroundState : public QState
-{
-    Q_OBJECT
-
-public:
-    HsSelectBackgroundState(QState *parent = 0);
-    ~HsSelectBackgroundState();
-
-private:
-    Q_DISABLE_COPY(HsSelectBackgroundState)
-
-    enum ImageProcessingState {
-        NotRunning,
-        ProcessPortraitAsFirst,
-        ProcessLandscapeAsFirst,
-        ProcessPortraitAsSecond,
-        ProcessLandscapeAsSecond,
-        Error
-    };
-
-signals:
-    void event_waitInput();
-    void handleError();
-
-private slots:
-    void action_selectWallpaper();
-    void action_disconnectImageFetcher();
-   
-    void onFetchComplete(QStringList imageStringList);
-    void onFetchFailed(int error);
-    void onImageProcessed();
-    void onShowAnimation();
-    void onHandleError();
-
-    // for S60 API
-#ifdef Q_OS_SYMBIAN
-    void fetchCompleted(const QString&);
-    void fetchFailed(int, const QString&);    
-#endif
-
-private:
-    
-#ifdef Q_OS_SYMBIAN
-    HsImageFetcherClient *mImageFetcher;
-#else
-    XQAIWGetImageClient *mImageFetcher;
-#endif
-    
-    HbView *mSourceView;
-    QThread *mWallpaperImageReaderThread;
-    HsWallpaperImageReader *mWallpaperImageReader;
-    HbProgressDialog *mProgressDialog;
-    ImageProcessingState mImageProcessingState;
-    bool mShowAnimation;
-
-    HOMESCREEN_TEST_FRIEND_CLASS(HomeScreenStatePluginTest)
-};
-
-#endif