webengine/wrtharvester/inc/wrtusbhandler.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 19 Feb 2010 23:55:03 +0200
branchRCL_3
changeset 32 ea4b2e4f7cac
parent 28 d39add9822e2
child 34 220a17280356
permissions -rw-r--r--
Revision: 201003 Kit: 201007

/*
* ============================================================================
*  Name        : WrtUsbHandler.h
*  Part of     : Widget Registry
*  Description : Acts on MMC card insertion/removal
*  Version     : 3.1
*
*  Copyright © 2008 Nokia Corporation.
*  This material, including documentation and any related
*  computer programs, is protected by copyright controlled by
*  Nokia Corporation. All rights are reserved. Copying,
*  including reproducing, storing, adapting or translating, any
*  or all of this material requires the prior written consent of
*  Nokia Corporation. This material also contains confidential
*  information which may not be disclosed to others without the
*  prior written consent of Nokia Corporation.
* =============================================================================
*/

#ifndef WIDGETMMCHANDLER_H
#define WIDGETMMCHANDLER_H

// INCLUDES
#include <e32std.h>
#include <e32base.h>
#include <f32file.h>
#include "wrtharvester.h"
//hb
#include "wrtharvesterpsnotifier.h"

// FORWARD DECLARATION
class CWrtHarvester;

/*
 * Inherited CActive, performs a asynchronous conversion operation
 *
 * @since 3.1
 */
class CWrtUsbHandler : public CActive
    {
public:

    static CWrtUsbHandler* NewL( CWrtHarvester* aHarvester, RFs& aFs );

    virtual ~CWrtUsbHandler();

    void Start();
    void DoScanAndUpdate();   

protected:

    void RunL();

    TInt RunError( TInt aError );

    void DoCancel();

private:

    // no copy constructor
    CWrtUsbHandler( const CWrtUsbHandler& );
    // no assignment
    CWrtUsbHandler& operator=( const CWrtUsbHandler& );

    CWrtUsbHandler( CWrtHarvester* aHarvester, RFs& aFs );

    void ConstructL();

    TInt ScanDrives( TInt& aDriveFlags );

   // CWidgetRegistry* iRegistry; // not owned
    
    CWrtHarvester* iHarvester;
    RFs iFs;

    TInt iDriveFlags;
    };

#endif // #ifndef WIDGETMMCHANDLER_H