00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __ABOUT_CONTAINER_H__
00020 #define __ABOUT_CONTAINER_H__
00021
00022
00023 #include "BrowserContainer.h"
00024
00025
00026 class CWikiDb;
00027 class CAboutView;
00028
00029
00030
00036 class CAboutContainer : public CBrowserContainer
00037 {
00038 public:
00039
00047 static CAboutContainer* NewL( const TRect& aRect, CAboutView& aView );
00048
00056 static CAboutContainer* NewLC( const TRect& aRect, CAboutView& aView );
00057
00063 void ConstructL( const TRect& aRect );
00064
00065 private:
00066
00071 CAboutContainer( CAboutView& aView );
00072
00073 public:
00074
00083 TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent,
00084 TEventCode aType );
00085 };
00086
00087 #endif
00088
00089