uifw/EikStd/cdlginc/EIKCDFTY.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 
       
    19 #if !defined(__EIKCDFTY_H__)
       
    20 #define __EIKCDFTY_H__
       
    21 
       
    22 #if !defined(__GDI_H__)
       
    23 #include <gdi.h>
       
    24 #endif
       
    25 
       
    26 #if !defined(__EIKDGFTY_H__)
       
    27 #include <eikdgfty.h>
       
    28 #endif
       
    29 
       
    30 class MEikFindAndReplaceDlgObserver;
       
    31 class CGraphicsDevice;
       
    32 
       
    33 NONSHARABLE_CLASS(CEikCDlgDialogFactory) : public CBase, public MEikCDlgDialogFactory
       
    34 	{
       
    35 public:
       
    36 	IMPORT_C static CEikCDlgDialogFactory* NewL();
       
    37 private:
       
    38 	CEikCDlgDialogFactory();
       
    39 	TBool RunCharMapDlgLD(CCoeControl* aControl);
       
    40 	TBool RunFontDlgLD(		TCharFormat& aFormat,
       
    41 							TCharFormatMask& aAttribChangedMask,
       
    42 							TCharFormatMask& aUndeterminedMask,
       
    43 							TDesC& aTextSelection,
       
    44 							TInt aFonts,
       
    45 							CGraphicsDevice* aGraphicsDevice, 
       
    46 							TInt aFontControlFalgs,
       
    47 							const TRgb aBackGroundColor);
       
    48 
       
    49 	TBool RunInsertObjectDlgLD(	CEikEmbeddableAppList*	aList,
       
    50 								TInt&					aChoice);
       
    51 
       
    52 	TBool RunObjectInfoDlgLD(const TDesC& aCaption);
       
    53 	TBool RunFormatObjectDlgLD(	CApaDoor&		aDoor,
       
    54 								CApaDocument&	aDoc,
       
    55 								const TSize&	aDefaultIconSize);
       
    56 
       
    57 	void RunEdwinFindAndReplaceDlgLD(MEikFindAndReplaceDlgObserver& aObserver,
       
    58 		SEdwinFindModel& aModel, TBool aFindOnly, TRect aEdwinRect);
       
    59 	
       
    60 	TBool RunEdwinFindDlgLD(	SEdwinFindModel*	aModel,
       
    61 								CDesCArray*			aFindList);
       
    62 
       
    63 	TBool RunEdwinReplaceDlgLD(	SEdwinFindModel* aModel,
       
    64 								CDesCArray*		aFindList,
       
    65 								CDesCArray*		aReplaceList);
       
    66 
       
    67 	TBool RunEdwinReplaceOptionDlgLD(	CEikGlobalTextEditor*	aEdwin,
       
    68 										SEdwinFindModel*		aModel);
       
    69 
       
    70 	TBool RunAlignDlgLD(
       
    71 						CParaFormat*		aFormat, 
       
    72 						TParaFormatMask&	aAttribChangedMask, 
       
    73 						TParaFormatMask&	aUndeterminedMask);
       
    74 
       
    75 	TBool RunBorderDlgLD(
       
    76 						CParaFormat*		aFormat, 
       
    77 						TParaFormatMask&	aAttribChangedMask, 
       
    78 						TParaFormatMask&	aUndeterminedMask);
       
    79 
       
    80 	TBool RunSpaceDlgLD(
       
    81 						CParaFormat*		aFormat, 
       
    82 						TParaFormatMask&	aAttribChangedMask, 
       
    83 						TParaFormatMask&	aUndeterminedMask);
       
    84 
       
    85 	TBool RunTabsDlgLD(	CParaFormat*		aFormat, 
       
    86 						TParaFormatMask&	aAttribChangedMask, 
       
    87 						TParaFormatMask&	aUndeterminedMask,
       
    88 						const TInt			aPageWidth);
       
    89 
       
    90 	TBool RunIndentDlgLD(	CParaFormat*		aFormat, 
       
    91 							TParaFormatMask&	aAttribChangedMask, 
       
    92 							TParaFormatMask&	aUndeterminedMask,
       
    93 							const TInt			aPageWidth);
       
    94 	};
       
    95 
       
    96 #endif