fep/aknfep/UiPlugins/AknFepUiInterface/AvkonImpl/inc/AknFepUIAvkonCtrlDualLanguageSettingList.h
changeset 40 2cb9bae34d17
parent 31 f1bdd6b078d1
child 49 37f5d84451bd
--- a/fep/aknfep/UiPlugins/AknFepUiInterface/AvkonImpl/inc/AknFepUIAvkonCtrlDualLanguageSettingList.h	Tue Jul 06 14:38:41 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,152 +0,0 @@
-/*
-* 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:          
-*
-*/
-
-
-
-
-
-
-
-
-
-
-#ifndef __AKNFEPDUALLANGUAGESETTINGLIST_H
-#define __AKNFEPDUALLANGUAGESETTINGLIST_H
-
-
-#include <coecntrl.h>
-#include <aknsettingitemlist.h> 
-#include <akncheckboxsettingpage.h>
-#include "AknFepUIAvkonCtrlDualLanguageSettingModel.h"
-#include "AknFepUIAvkonCtrlDualLanguageSettingData.h"
-
-class CAknFepDualLanguageSettingDialog;
-
-class CAknFepDualLanguageSettingItem : public CAknEnumeratedTextPopupSettingItem
-    {
-public:
-    CAknFepDualLanguageSettingItem( TInt aResourceId, TBool aPrimary, CAknFepDualLanguageSettingData* aData );
-    virtual ~CAknFepDualLanguageSettingItem();
-protected:
-    virtual void CompleteConstructionL();
-private:
-    CAknFepDualLanguageSettingData* iData;
-    TBool iPrimary;
-    };
-
-/**
- * Class: CAknFepDualLanguageSettingList
- *
- * Discussion:  A specialised subclass of CAknSettingItemList. This class is
- *              the control used to both display the current values of the
- *              settings and to launch the relevant editor for those items.
- *
- */
-class CAknFepDualLanguageSettingList : public CAknSettingItemList
-    {
-public:
-    /**
-    * Function:     NewL
-    *
-    * Discussion:   Factory function used to create a new instance of
-    *               CAknFepDualLanguageSettingList
-    *
-    * Params:       aData - reference to the data to be displayed and edited.
-    *
-    * Returns:      A newly created instance of CAknFepDualLanguageSettingList
-    */
-    static CAknFepDualLanguageSettingList* NewL(CAknFepDualLanguageSettingData* aData, CAknFepDualLanguageSettingDialog* aDialog);
-
-    /**
-    * Function:     NewLC
-    *
-    * Discussion:   Factory function used to create a new instance of
-    *               CAknFepDualLanguageSettingList and leave a pointer to it on the
-    *               cleanup stack.
-    *
-    * Params:       aData - reference to the data to be displayed and edited.
-    *
-    * Returns:      A newly created instance of CAknFepDualLanguageSettingList
-    */
-    static CAknFepDualLanguageSettingList* NewLC(CAknFepDualLanguageSettingData* aData, CAknFepDualLanguageSettingDialog* aDialog);
-
-    /**
-    * Function:     ~CAknFepDualLanguageSettingList
-    *
-    * Discussion:   Virtual destructor for CAknFepDualLanguageSettingList. Ensures that
-    *               all allocated memory is returned to the heap before
-    *               deletion of object.
-    *
-    */
-    virtual ~CAknFepDualLanguageSettingList();
-
-
-    /**
-    * Function:     SizeChanged
-    *
-    * Discussion:   Inherited from CCoeControl. Calculates size based on
-    *               contained control required sizes.
-    *
-    */
-    void SizeChanged();
-
-    /**
-     * Function:    EditCurrentItemL
-     * Params:      aCalledFromMenu - ETrue if called from menu, EFalse otherwise.
-     *
-     *
-     * Discussion:  Starts the setting page for the currently selected item 
-     *              in the list.
-     */
-    void EditCurrentItemL(TBool aCalledFromMenu);
-    
-    // Toggle whether secondary input item is visible
-    void HideSecondaryInputL(TBool aHidden);
-    
-private:
-    /**
-    * Function:     CAknFepDualLanguageSettingList
-    *
-    * Discussion:   Hidden, first-stage non-leaving constructor.
-    *
-    * Params:       aData - reference to the data to be displayed and edited.
-    *
-    */
-    CAknFepDualLanguageSettingList(CAknFepDualLanguageSettingData* aData, CAknFepDualLanguageSettingDialog* aDialog);
-
-    /**
-    * Function:     CreateSettingItemL
-    *
-    * Discussion:   Factory function for creating CAknSettingItem derived
-    *               SettingItem classes used t display current values
-    *
-    * Params:       aSettingId - the id of the control which should be created
-    *
-    */
-    CAknSettingItem* CreateSettingItemL (TInt aSettingId);
-    
-    void HandleListBoxEventL(CEikListBox* /*aListBox*/, TListBoxEvent aEventType);
-
-private:
-    CAknFepDualLanguageSettingData* iData;
-	CAknFepDualLanguageSettingDialog* iDialog;
-    TInt iPrimaryValue;
-    TInt iSecondaryValue;
-    };
-
-#endif // __AKNFEPDUALLANGUAGESETTINGLIST_H
-