diff -r 000000000000 -r 0049171ecffb inc/NPRStoryListBoxView.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/inc/NPRStoryListBoxView.h Fri Jul 24 08:46:02 2009 +0100 @@ -0,0 +1,66 @@ +/* + ========================================================================================== + Name : NPRStoryListBoxView.h + Author : Symsource + + Copyright (c) 2009 Symbian Foundation Ltd + This component and the accompanying materials are made available + under the terms of the License "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: + - Symsource + + Contributors: + - Symsource + + Description : AknView for wrapping the container to show the NPR's story list + ========================================================================================== + */ + +#ifndef __NPR_STORY_LIST_BOX_VIEW_H__ +#define __NPR_STORY_LIST_BOX_VIEW_H__ + +#include + +class CNPRStoryListBox; + +/** + * Avkon view class for NPRStoryListBoxView. It is register with the view server + * by the AppUi. It owns the container control. + * @class CNPRStoryListBoxView NPRStoryListBoxView.h + */ +class CNPRStoryListBoxView : public CAknView + { +public: + static CNPRStoryListBoxView* NewL(); + static CNPRStoryListBoxView* NewLC(); + virtual ~CNPRStoryListBoxView(); + +public: + // from base class CAknView + TUid Id() const; + void HandleCommandL(TInt aCommand); + CNPRStoryListBox* CreateContainerL(); + +protected: + // from base class CAknView + void DoActivateL(const TVwsViewId& aPrevViewId, TUid aCustomMessageId, const TDesC8& aCustomMessage); + void DoDeactivate(); + void HandleStatusPaneSizeChange(); + +private: + void SetupStatusPaneL(); + void CleanupStatusPane(); + +private: + // constructors + CNPRStoryListBoxView(); + void ConstructL(); + +private: + CNPRStoryListBox* iNPRStoryListBox; + }; + +#endif // __NPR_STORY_LIST_BOX_VIEW_H__