00001 /* 00002 * ============================================================================== 00003 * Name : DownloadsListDlgObserver.h 00004 * Part of : Download Manager / UI Lib 00005 * Interface : UI Lib, Dialog observer M class 00006 * Description : Dialog observer M class 00007 * Version : - 00008 * 00009 * Copyright © 2002-2004 Nokia. All rights reserved. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia. All rights are reserved. Copying, including 00013 * reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia. 00018 * ============================================================================== 00019 */ 00020 00021 00022 #ifndef DOWNLOADSLISTDLGOBSERVER_H 00023 #define DOWNLOADSLISTDLGOBSERVER_H 00024 00025 // INCLUDES 00026 #include <e32def.h> 00027 #include <coedef.h> 00028 #include <w32std.h> 00029 00030 // FORWARD DECLARATIONS 00031 class CDownloadsListDlg; 00032 class CEikMenuPane; 00033 00034 // CLASS DECLARATION 00035 00042 NONSHARABLE_CLASS( MDownloadsListDlgObserver ) 00043 { 00044 public: 00045 00049 virtual void PreLayoutDynInitL( CDownloadsListDlg& aDialog ) = 0; 00050 00054 virtual void ProcessCommandL( CDownloadsListDlg& aDialog, TInt aCommandId ) = 0; 00055 00059 virtual void DynInitMenuPaneL( CDownloadsListDlg& aDialog, TInt aResourceId, CEikMenuPane* aMenuPane ) = 0; 00060 00064 virtual TKeyResponse OfferKeyEventL( CDownloadsListDlg& aDialog, const TKeyEvent& aKeyEvent, TEventCode aType ) = 0; 00065 00066 }; 00067 00068 #endif /* DOWNLOADSLISTDLGOBSERVER_H */ 00069