phonebookui/Phonebook/View/inc/PbkFetchDlgPageFactory.h
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2002 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: 
       
    15 *     Fetch dialog page interfaces for Phonebook.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef __PbkFetchDlgPageFactory_H__
       
    21 #define __PbkFetchDlgPageFactory_H__
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32std.h>
       
    25 
       
    26 //  FORWARD DECLARATIONS
       
    27 class CCoeControl;
       
    28 class MPbkFetchDlgPages;
       
    29 class MPbkFetchDlg;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34  * PbkFetchDlgPageFactory factory.
       
    35  */
       
    36 NONSHARABLE_CLASS(PbkFetchDlgPageFactory)
       
    37     {
       
    38     public:
       
    39         /**
       
    40          * Creates a custom control of aControlType.
       
    41          * @return the created control, NULL if aControlType is not recognized.
       
    42          */
       
    43         static CCoeControl* CreateCustomControlL(TInt aControlType);
       
    44 
       
    45         /**
       
    46          * Creates dialog pages for aFetchDlg.
       
    47          */
       
    48         static MPbkFetchDlgPages* CreatePagesL(MPbkFetchDlg& aFetchDlg);
       
    49 
       
    50 	private:
       
    51         /**
       
    52          * Private constructor. Not implemented.
       
    53          */
       
    54 		PbkFetchDlgPageFactory();
       
    55     };
       
    56 
       
    57 #endif // __PbkFetchDlgPageFactory_H__
       
    58 
       
    59 // End of File