diff -r 000000000000 -r 164170e6151a pkiutilities/CertmanUi/INC/CertmanuiviewPersonal.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pkiutilities/CertmanUi/INC/CertmanuiviewPersonal.h Tue Jan 26 15:20:08 2010 +0200 @@ -0,0 +1,141 @@ +/* +* Copyright (c) 2003-2007 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: Declaration of the CCertManUIViewPersonal class. +* +*/ + + +#ifndef CERTMANUIVIEWPERSONAL_H +#define CERTMANUIVIEWPERSONAL_H + +// INCLUDES +#include +#include "Certmanuiviewid.h" + +// CLASS DECLARATION +class CCertManUIContainerPersonal; + +/** +* CCertManUIViewPersonal view class. +* +* @lib certmanui.dll +*/ +NONSHARABLE_CLASS( CCertManUIViewPersonal ): public CAknView + { + public: // functions + + /** + * Destructor + */ + ~CCertManUIViewPersonal(); + + /** + * NewL + */ + static class CCertManUIViewPersonal* NewL( const TRect& aRect, CCertManUIKeeper& aKeeper ); + + /** + * NewLC + */ + static class CCertManUIViewPersonal* NewLC( const TRect& aRect, CCertManUIKeeper& aKeeper ); + + /** + * Returns Personal view id + */ + TUid Id() const; + + /** + * Handles ClientRectChange + */ + void HandleClientRectChange(); + + /** + * Returns iContainerPersonal to be used in CertManUIContainerPersonal + */ + CCoeControl* Container(); + + /** + * Handles Softkey and Options list commands + */ + void HandleCommandL( TInt aCommand ); + + /** + * Updates the view when opening it + */ + void DoActivateL( const TVwsViewId& aPrevViewId,TUid aCustomMessageId, + const TDesC8& aCustomMessage ); + + /** + * Updates the menu bar + */ + void UpdateMenuBar(); + + /** + * Updates cba + */ + void UpdateCba(TInt aCbaResourceId); + + public: // data + + /** + * To get hold of CertManUIKeeper + */ + CCertManUIKeeper& iKeeper; + + /** + * Stores top item in the listbox + */ + TInt iTopItem; + + /** + * To store the position of the focus in the Personal view + */ + TInt iCurrentPosition; + + private: // functions + + /** + * Constructor. + */ + CCertManUIViewPersonal( CCertManUIKeeper& aKeeper ); + + /** + * EPOC default constructor. + */ + void ConstructL(); + + /** + * Saves focus position when closing view + */ + void DoDeactivate(); + + /** + * Updates Options list with correct items depending on + * whether the listbox is empty or if it has any marked items + */ + void DynInitMenuPaneL( TInt aResourceId,CEikMenuPane* aMenuPane ); + + + private: // Data + + /** + * To get access to certificate list in Personal view + */ + CCertManUIContainerPersonal* iContainerPersonal; + + }; + +#endif // CERTMANUIVIEWPERSONAL_H + +// End of File