diff -r f72a12da539e -r 5315654608de idlehomescreen/widgetmanager/inc/wmmaincontainerview.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/idlehomescreen/widgetmanager/inc/wmmaincontainerview.h Thu Jan 07 12:39:41 2010 +0200 @@ -0,0 +1,141 @@ +/* +* Copyright (c) 2009 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: +* Declares main container view for Widget Manager application. +* +*/ + +#ifndef WMMAINCONTAINERVIEW_H +#define WMMAINCONTAINERVIEW_H + +#include + + +class CWmMainContainer; +class CWmPlugin; + +/** + * Avkon view class for WmMainContainerView. It is register with the view server + * by the AppUi. It owns the container control. + * @class CWmMainContainerView WmMainContainerView.h + */ +NONSHARABLE_CLASS( CWmMainContainerView ) : public CAknView + { + +public: // constructors and destructor + /** + * Two-phased constructor. + * + * @param aWmPlugin wm plugin + */ + static CWmMainContainerView* NewL( CWmPlugin& aWmPlugin ); + + /** + * Two-phased constructor. + * + * @param aWmPlugin wm plugin + */ + static CWmMainContainerView* NewLC( CWmPlugin& aWmPlugin ); + + /** Destructor */ + virtual ~CWmMainContainerView(); + + +public: // from base class CAknView + /** + * Returns views id, intended for overriding by sub classes. + * + * @see CAknView::Id + */ + TUid Id() const; + + /** + * Command handling function intended for overriding by sub classes. + * + * @see CAknView::HandleCommandL + */ + void HandleCommandL( TInt aCommand ); + +public: + /** + * Creates CWmMainContainer + */ + CWmMainContainer* CreateContainerL(); + +private: + CWmMainContainerView( CWmPlugin& aWmPlugin ); + void ConstructL(); + +protected: // from base class CAknView + /** + * Avkon view architecture system. + * + * @see CAknView::DoActivateL + */ + void DoActivateL( + const TVwsViewId& aPrevViewId, + TUid aCustomMessageId, + const TDesC8& aCustomMessage ); + + /** + * View deactivation function intended for overriding by sub classes. + * + * @see CAknView::DoActivateL + */ + void DoDeactivate(); + + /** + * Event handler for status pane size changes. + * + * @see CAknView::HandleStatusPaneSizeChange + */ + void HandleStatusPaneSizeChange(); + +protected: // From MEikMenuObserver + /* + * Menu observer interface. + * + * @see MEikMenuObserver::DynInitMenuPaneL + */ + void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane); + +private: + + /** menu commands */ + TBool HandleOpenMenuItemSelectedL(); + TBool HandleAddMenuItemSelectedL(); + TBool HandleLaunchMenuItemSelectedL(); + TBool HandleSearchMenuItemSelectedL(); + TBool HandleSortAlphaMenuItemSelectedL(); + TBool HandleUninstallMenuItemSelectedL(); + TBool HandleHelpMenuItemSelectedL(); + TBool HandleDetailsMenuItemSelectedL(); + TBool HandleDeactivateFindPaneL(); + /** setup status pane */ + void SetupStatusPaneL(); + +private: + /** + * the container + */ + CWmMainContainer* iWmMainContainer; + + /** + * the plugin root (not owned) + */ + CWmPlugin& iWmPlugin; + + }; + +#endif // WMMAINCONTAINERVIEW_H