diff -r 000000000000 -r 667063e416a2 locationsystemui/locationsysui/locsuplsettingsui/inc/locsuplsessionview.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/locationsystemui/locationsysui/locsuplsettingsui/inc/locsuplsessionview.h Tue Feb 02 01:06:48 2010 +0200 @@ -0,0 +1,185 @@ +/* +* Copyright (c) 2008 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: SUPL session UI view +* +*/ + +#ifndef C_LOCSUPLSESSIONVIEW_H +#define C_LOCSUPLSESSIONVIEW_H + +// System Includes +#include +#include +#include +#include + +// User Includes +#include "locsuplsettingsuid.hrh" +#include "locsuplsettingseventhandler.h" + +// Forward Declarations +class CLocSUPLSessionContainer; +class MLocSUPLSettingsEventHandler; +class CLocSUPLSettingsUiEngine; + +// Constant Declarations +const TUid KLocSUPLSessionUiViewId = { KLOCSUPLSESSIONUIUID3 }; + +// Class Declaration + +/** + * SUPL server UI View. + */ +class CLocSUPLSessionView : public CAknView + { + public: + /** + * Creates new SUPL server UI View. + * + * @param aEngine Reference to the SUPL Settings + * engine + * @param aEventHandler Reference to the Event Handler + * @return CLocSUPLSessionView* Reference to the application view + */ + static CLocSUPLSessionView* NewL( + CLocSUPLSettingsUiEngine& aEngine, + MLocSUPLSettingsEventHandler& aEventHandler ); + + /** + * Creates new SUPL Settings UI View. Leaves the object on the + * Clean up stack + * + * @param aEngine Reference to the SUPL Settings + * engine + * @param aEventHandler Pointer to the Event Handler + * @return CLocSUPLSessionView* Reference to the application view + */ + static CLocSUPLSessionView* NewLC( + CLocSUPLSettingsUiEngine& aEngine, + MLocSUPLSettingsEventHandler& aEventHandler ); + + /** + * Destructor + */ + ~CLocSUPLSessionView (); + + /** + * Handles the Screen Size update + */ + void HandleScreenSizeChange(); + + /** + * Updates the View + */ + void UpdateView(); + + /** + * Returns the Selected element. The list box model defines the + * enumeration that would determine the current element that has been + * selected + * + * @return TInt Index of the item selected + */ + TInt SelectedItemIndex(); + + /** + * From CAknView. + */ + void DoActivateL( const TVwsViewId& aPrevViewId, + TUid aCustomMessageId, + const TDesC8& aCustomMessage); + + /** + * From CAknView. + */ + void DoDeactivate(); + + /** + * From CAknView. Returns the View Id. Should be chosen to reflect + * the Implementation UID of the Plugin + */ + TUid Id() const; + + /** + * From CAknView. + */ + void HandleCommandL( TInt aCommand ); + + /** + * From MEikMenuObserver + */ + void DynInitMenuPaneL( TInt aResourceId, CEikMenuPane* aMenuPane ); + + /** + * Sets MSK Button Group + */ + void ChangeMSKL(); + + private: + /** + * C++ Overloaded Constructor + */ + CLocSUPLSessionView( CLocSUPLSettingsUiEngine& aEngine, + MLocSUPLSettingsEventHandler& aEventHandler ); + + /** + * Second Phase Constructor + */ + void ConstructL(); + + /** + * Shows or dims help option, depending wheather help feature + * is supported or not. + * @param aMenuPane + */ + void HandleHelpFeature( CEikMenuPane& aMenuPane ) const; + + /** + * Confirmation query to delete + */ + TInt DeletionConfirmationQueryL( const TInt aAmount ); + + /** + * Deletes the selected server/s + */ + void DeleteSessionL(); + + + /** + * Gets the ids for selected items + */ + void GetSelectedItemIdsL( + RArray& aSelectedItems, + const CArrayFix& aSelectedIndexes ) const; + + private: + /** + * Reference to the event Handler for handling UI events + */ + MLocSUPLSettingsEventHandler& iEventHandler; + + /** + * Reference to the SUPL Settings engine + */ + CLocSUPLSettingsUiEngine& iEngine; + + /** + * Container Object + * Owns + */ + CLocSUPLSessionContainer* iContainer; + }; + +#endif // C_LOCSUPLSESSIONVIEW_H +