diff -r 000000000000 -r 6a9f87576119 files_plat/memory_scan_popup_ui_api/inc/CMemStatePopup.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/files_plat/memory_scan_popup_ui_api/inc/CMemStatePopup.h Mon Jan 18 20:09:41 2010 +0200 @@ -0,0 +1,69 @@ +/* +* Copyright (c) 2006 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: +* Memory State Popup. +* +* +*/ + + +#ifndef __CMEMORYSTATEPOPUP_H__ +#define __CMEMORYSTATEPOPUP_H__ + +// SYSTEM INCLUDES +#include + +// USER INCLUDES +#include "MSPUtil.h" + +// CONSTANTS +const TText KRightToLeftMark = 0x200F; + +// CLASS DEFINITION +class CMemStatePopup : public CBase + { + public: + // Destructor + virtual ~CMemStatePopup( ); + + private: + // C++ constructors + CMemStatePopup( ); + + public: + /** + * Launches the memory scan popup + * @param aDrive The drive to be scanned + * @param aTitle Title of the popup + */ + IMPORT_C static void RunLD( TDriveNumber aDrive, TDesC& aTitle ); + + /** + * Get an instance of CMSPUtil class, containing the unit text array + * @param aUtil Reference to a CMSPUtil pointer, + * updated to point to the instance created + */ + IMPORT_C static void GetUtilL( CMSPUtil*& aUtil ); + + private: + // Not implemented + CMemStatePopup( const CMemStatePopup& ); + CMemStatePopup& operator=( CMemStatePopup& ); + + private: + }; + +#endif // __CMEMORYSTATEPOPUP_H__ + +// End of File