00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __BROWSER_VIEW_H__
00020 #define __BROWSER_VIEW_H__
00021
00022
00023 #include <aknview.h>
00024
00025
00026 class CBrowserContainer;
00027
00028
00029
00036 class CBrowserView: public CAknView
00037 {
00038 public:
00044 TUid Id() const;
00045
00051 void HandleCommandL( TInt aCommand );
00052
00059 void HandleSizeChange( TInt aType );
00060
00068 void DoActivateL( const TVwsViewId& aPrevViewId,
00069 TUid aCustomMessageId,
00070 const TDesC8& aCustomMessage );
00071
00078 void DoDeactivate();
00079
00080 protected:
00081
00087 virtual void ConstructContainerL() = 0;
00088
00089 private:
00095 void DynInitMenuPaneL( TInt aResourceId, CEikMenuPane *aMenuPane );
00096
00097 protected:
00102 CBrowserContainer* iContainer;
00103
00105 TUid iIdentifier;
00106 };
00107
00108 #endif // __BROWSER_VIEW_H__
00109
00110