classicui_pub/common_file_dialogs_api/tsrc/inc/testsdkcfdsettingitemmultidrive.h
branchGCC_SURGE
changeset 44 484cb5040995
parent 32 512f698a535d
parent 40 7165f928e888
equal deleted inserted replaced
32:512f698a535d 44:484cb5040995
     1 /*
       
     2 * Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Test Common File Dialogs
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_TESTSDKCFDSETTINGITEMMULTIDRIVE_H
       
    20 #define C_TESTSDKCFDSETTINGITEMMULTIDRIVE_H
       
    21 
       
    22 #include <caknmemoryselectionsettingitemmultidrive.h>
       
    23 
       
    24 /**
       
    25  * CTestSettingItemMultiDrive derived from CAknMemorySelectionSettingItemMultiDrive
       
    26  *  and test it for getting private member variable
       
    27  */
       
    28 class CTestSettingItemMultiDrive : public CAknMemorySelectionSettingItemMultiDrive
       
    29     {
       
    30 public:
       
    31     
       
    32     /**
       
    33      * Constructor.
       
    34      */
       
    35     CTestSettingItemMultiDrive( TInt aIdentifier, TDriveNumber& aSelectedDrive );
       
    36     
       
    37     /**
       
    38      * Get setting page pointer.
       
    39      */
       
    40     CAknMemorySelectionSettingItemExtension* GetExtensionPointer() const;
       
    41     };
       
    42 
       
    43 /**
       
    44  *  CTestSettingItemListMultiDrive derived from CAknSettingItemList
       
    45  *   and test it for getting private member variable
       
    46  */
       
    47 class CTestSettingItemListMultiDrive : public CAknSettingItemList
       
    48     {
       
    49 public:
       
    50     
       
    51     /**
       
    52      * By default Symbian 2nd phase constructor is private.
       
    53      */
       
    54     void ConstructL();
       
    55     
       
    56     /**
       
    57      * Constructor.
       
    58      */
       
    59     CAknSettingItem* CreateSettingItemL( TInt aIdentifier );
       
    60 
       
    61 private:
       
    62     //Own : setting itme pointer
       
    63     CTestSettingItemMultiDrive* iItem;
       
    64     };
       
    65 
       
    66 #endif      // C_TESTSDKCFDSETTINGITEMMULTIDRIVE_H
       
    67 
       
    68 // End of File