diff -r 8b0c979bbe8c -r ac5daea24fb0 apengine/apsettingshandlerui/src/ApSelectorListBox.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apengine/apsettingshandlerui/src/ApSelectorListBox.cpp Wed Oct 27 17:43:56 2010 +0300 @@ -0,0 +1,146 @@ +/* +* Copyright (c) 2002 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: Implementation of CApSelectorListbox. +* +*/ + + +// INCLUDE FILES + +#include +#include +//#include +#include +#include +#include +#include + +#include "ApSelectorListbox.h" +#include "ApSelectorListBoxModel.h" +#include "ApListItem.h" + +#include +#include +#include + +#include "ApSettingsHandlerLogger.h" + +// CONSTANTS +// Drive and file name of the MBM file containing icons for Protection +_LIT( KFileIcons, "z:ApSettings.mbm" ); + + +// ================= MEMBER FUNCTIONS ======================= + +// --------------------------------------------------------- +// CApSelectorListbox::NewL +// --------------------------------------------------------- +// +CApSelectorListbox* CApSelectorListbox::NewL +( const CCoeControl* aParent ) + { + return NULL; + } + + +// --------------------------------------------------------- +// CApSelectorListbox::CApSelectorListbox +// --------------------------------------------------------- +// +CApSelectorListbox::CApSelectorListbox() + { + } + + +// --------------------------------------------------------- +// CApSelectorListbox::~CApSelectorListbox +// --------------------------------------------------------- +// +CApSelectorListbox::~CApSelectorListbox() + { + + } + + +// --------------------------------------------------------- +// CApSelectorListbox::OfferKeyEventL +// --------------------------------------------------------- +// +TKeyResponse CApSelectorListbox::OfferKeyEventL +( const TKeyEvent& aKeyEvent, TEventCode aType ) + { + User::Leave( KErrNotSupported ); + } + + + +// --------------------------------------------------------- +// CApSelectorListbox::FocusChanged +// --------------------------------------------------------- +// +void CApSelectorListbox::FocusChanged( TDrawNow aDrawNow ) + { + } + + + +// --------------------------------------------------------- +// CApSelectorListbox::LoadIconsL +// --------------------------------------------------------- +// +void CApSelectorListbox::LoadIconsL() + { + } + + +// --------------------------------------------------------- +// CApSelectorListbox::Uid4Item +// --------------------------------------------------------- +// +TUint32 CApSelectorListbox::Uid4Item( TInt aItem ) const + { + return 0; + } + + +// --------------------------------------------------------- +// CApSelectorListbox::CurrentItemUid +// --------------------------------------------------------- +// +TUint32 CApSelectorListbox::CurrentItemUid() const + { + return 0; + } + + + +// --------------------------------------------------------- +// CApSelectorListbox::CurrentItemNameL +// --------------------------------------------------------- +// +const TDesC& CApSelectorListbox::CurrentItemNameL() + { + User::Leave( KErrNotSupported ); + } + + +// --------------------------------------------------------- +// CApSelectorListbox::HandleResourceChange +// --------------------------------------------------------- +// +void CApSelectorListbox::HandleResourceChange(TInt aType) + { + } + +// End of File