systemsettings/GSAccessoryPlugin/src/gsaccwirelesscarkitcontainer.cpp
changeset 0 2e3d3ce01487
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/systemsettings/GSAccessoryPlugin/src/gsaccwirelesscarkitcontainer.cpp	Tue Feb 02 10:12:00 2010 +0200
@@ -0,0 +1,162 @@
+/*
+* Copyright (c) 2005-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:  Implementation of CGSAccWirelessCarkitContainer class
+*
+*/
+
+
+#include <e32cmn.h> // For accessoriescrkeys.h
+#include <accessoriescrkeys.h>
+#include <gsaccessoryplugin.rsg>
+#include <gsfwviewuids.h> // for KUidGS
+#include <gslistbox.h>
+#include <csxhelp/cp.hlp.hrh>
+
+#include "gsaccessoryplugin.hrh"
+#include "gsaccessorypluginmodel.h"
+#include "gsaccprofilelist.h"
+#include "gsaccwirelesscarkitcontainer.h"
+#include "trace.h"
+
+// ========================= MEMBER FUNCTIONS ================================
+
+// ---------------------------------------------------------------------------
+// CGSAccWirelessCarkitContainer::CGSAccWirelessCarkitContainer()
+// ---------------------------------------------------------------------------
+//
+CGSAccWirelessCarkitContainer::CGSAccWirelessCarkitContainer(
+    CGSAccessoryPluginModel& aModel )
+  : CGSAccBaseContainer( aModel )
+    {
+    FUNC_LOG;
+    }
+
+
+// ---------------------------------------------------------------------------
+// CGSAccWirelessCarkitContainer::~CGSAccWirelessCarkitContainer()
+// ---------------------------------------------------------------------------
+//
+CGSAccWirelessCarkitContainer::~CGSAccWirelessCarkitContainer()
+    {
+    FUNC_LOG;
+
+    delete iAutoAnswerItems;
+    }
+
+
+// ---------------------------------------------------------------------------
+// CGSAccWirelessCarkitContainer::UpdateListBoxL()
+// ---------------------------------------------------------------------------
+//
+void CGSAccWirelessCarkitContainer::UpdateListBoxL( TInt aFeatureId )
+    {
+    FUNC_LOG;
+
+    switch ( aFeatureId )
+        {
+        case KGSSettIdWCKDP:
+            RefreshDefaultProfileL();
+            break;
+        case KGSSettIdWCKAA:
+            RefreshAutoAnswerL();
+            break;
+        default:
+            break;
+        }
+
+    iListBox->HandleItemAdditionL();
+    }
+
+
+// ---------------------------------------------------------------------------
+// CGSAccWirelessCarkitContainer::ConstructL()
+// ---------------------------------------------------------------------------
+//
+void CGSAccWirelessCarkitContainer::ConstructL( const TRect& aRect )
+    {
+    FUNC_LOG;
+
+    CreateListBoxL();
+    BaseConstructL(
+        aRect, R_ACC_WIRELESS_CARKIT_TITLE, R_ACC_WIRELESS_CARKIT_LBX ); // Needs the listbox
+    }
+
+
+// ---------------------------------------------------------------------------
+// CGSAccWirelessCarkitContainer::ConstructListBoxL()
+// ---------------------------------------------------------------------------
+//
+void CGSAccWirelessCarkitContainer::ConstructListBoxL( TInt aResLbxId )
+    {
+    FUNC_LOG;
+
+    CGSAccBaseContainer::ConstructListBoxL( aResLbxId );
+
+    iAutoAnswerItems =
+        iCoeEnv->ReadDesC16ArrayResourceL( R_ACC_AUTO_ANSWER_SETTING_PAGE_LBX );
+
+    RefreshDefaultProfileL();
+    MakeItemVisibleL( KGSSettIdWCKDP );
+
+    RefreshAutoAnswerL();
+    MakeItemVisibleL( KGSSettIdWCKAA );
+    }
+
+
+// ---------------------------------------------------------------------------
+// CGSAccWirelessCarkitContainer::GetHelpContext() const
+// ---------------------------------------------------------------------------
+//
+void CGSAccWirelessCarkitContainer::GetHelpContext(
+    TCoeHelpContext& aContext ) const
+    {
+    FUNC_LOG;
+
+    aContext.iMajor = KUidGS;
+    aContext.iContext = KSET_HLP_ACCESS_WIRELESS_CK;
+    }
+
+
+// ---------------------------------------------------------------------------
+// CGSAccWirelessCarkitContainer::RefreshDefaultProfileL()
+// ---------------------------------------------------------------------------
+//
+void CGSAccWirelessCarkitContainer::RefreshDefaultProfileL()
+    {
+    FUNC_LOG;
+
+    TInt profile =
+        iModel.DefaultProfileByKey( KSettingsWirelessCarkitDefaultProfile );
+    // Set default profile item text.
+    SetItemTextL(
+        KGSSettIdWCKDP,
+        iModel.ProfileList().NameByIdL( profile, iCoeEnv ) );
+    }
+
+
+// ---------------------------------------------------------------------------
+// CGSAccWirelessCarkitContainer::RefreshAutoAnswerL()
+// ---------------------------------------------------------------------------
+//
+void CGSAccWirelessCarkitContainer::RefreshAutoAnswerL()
+    {
+    FUNC_LOG;
+
+    TInt mode =
+        iModel.AutoAnswerModeByKey( KSettingsWirelessCarkitAutomaticAnswer );
+    if ( iAutoAnswerItems && mode >= 0 && mode < iAutoAnswerItems->Count() )
+        {
+        SetItemTextL( KGSSettIdWCKAA, ( *iAutoAnswerItems )[ mode ] );
+        }
+    }