uifw/EikStd/cdlginc/EIKCDLIB.H
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 1997-1999 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 *
       
    16 */
       
    17 
       
    18 #if !defined(__EIKCDLIB_H__)
       
    19 #define __EIKCDLIB_H__
       
    20 
       
    21 #if !defined(__F32FILE_H__)
       
    22 #include <f32file.h>
       
    23 #endif
       
    24 
       
    25 #if !defined(__E32BASE_H__)
       
    26 #include <e32base.h>
       
    27 #endif
       
    28 
       
    29 #if !defined(__EIKLIBRY_H__)
       
    30 #include <eiklibry.h>
       
    31 #endif
       
    32 
       
    33 class CEikCDlgDialogFactory;
       
    34 
       
    35 class CEikCDlgLibrary : public CBase
       
    36 	{
       
    37 public:
       
    38 	IMPORT_C static void					InitializeL();
       
    39 	IMPORT_C static TFileName				ResourceFile();
       
    40 	IMPORT_C static TCreateByTypeFunction	ControlFactory();
       
    41 public:
       
    42 	static SEikControlInfo CreateByTypeL(TInt aControlId);
       
    43 	IMPORT_C static void RequestQueryDialogL();
       
    44 	IMPORT_C static void RequestInfoDialogL();
       
    45 private:
       
    46 	CEikCDlgLibrary();
       
    47 	};
       
    48 
       
    49 #endif