1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/textformatting/inc/FRMLAYDT.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,101 @@
1.4 +/*
1.5 +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#ifndef __FRMLAYDT_H__
1.23 +#define __FRMLAYDT_H__
1.24 +
1.25 +#include <e32std.h>
1.26 +
1.27 +#if defined(TIMING_CODE)
1.28 +class CWindowGc;
1.29 +class RWsSession;
1.30 +#endif
1.31 +
1.32 +/**
1.33 +Layout data: no longer used.
1.34 +
1.35 +This class provides two enumerations which are used in the Text Views API.
1.36 +@publishedAll
1.37 +@deprecated 7.0
1.38 +*/
1.39 +class CLayoutData
1.40 +
1.41 + {
1.42 +public:
1.43 + enum
1.44 + {
1.45 + EFLargeNumber = KMaxTInt / 3, // must be less than KMaxTInt/2 to avoid overflow problems
1.46 + EFFontHeightIncreaseFactor = 7, // by default, increase the font height by this percentage
1.47 + EFMinimumLineDescent = 3, // by default, this is the minimum line descent
1.48 + EFBaseLinePosition = 82 // position down ViewRect for BaseLine
1.49 + };
1.50 +
1.51 + enum
1.52 + {
1.53 + EFHeightForFormattingAllText = EFLargeNumber,
1.54 + EFBodyWidthForNoWrapping = EFLargeNumber
1.55 + };
1.56 +
1.57 + /** Flags used when converting between layout coordinates and document
1.58 + position.
1.59 + @see CTextLayout::XyPosToDocPosL()
1.60 + @see CTextLayout::DocPosToXyPosL() */
1.61 + enum
1.62 + {
1.63 + /**
1.64 + Count individual characters and don't treat the end of the line specially.
1.65 + @deprecated 6.2
1.66 + */
1.67 + EFIndividualChars = 0,
1.68 + /**
1.69 + Only consider the beginnings and ends of whole lines. Only useful in
1.70 + XyToDocPos functions.
1.71 + */
1.72 + EFWholeLinesOnly = 1,
1.73 + /**
1.74 + Only consider the beginnings and ends of whole TBoxs so as not to
1.75 + access the document. Only useful in XyToDocPos functions.
1.76 + */
1.77 + EFWholeTBoxesOnly=EFWholeLinesOnly,
1.78 + /**
1.79 + Disambiguate the end position of a line from the start position of
1.80 + the next line. If both positions are the same, a position at the end
1.81 + of the line will be invalid, and the position before will be
1.82 + returned instead.
1.83 + */
1.84 + EFDisambiguateEndOfLine = 2,
1.85 + };
1.86 +
1.87 + /** Format modes. */
1.88 + enum TFormatMode
1.89 + {
1.90 + /** Dimensions stored in pixels with no mapping between format and image device. */
1.91 + EFScreenMode,
1.92 + /** Dimensions stored in twips with no mapping. */
1.93 + EFPrintMode,
1.94 + /** Dimensions stored in twips with partial mapping. */
1.95 + EFPrintPreviewMode,
1.96 + /** Dimensions stored in twips with full mapping. */
1.97 + EFWysiwygMode
1.98 + };
1.99 +private:
1.100 + // not constructable
1.101 + CLayoutData(CLayoutData&);
1.102 + };
1.103 +
1.104 +#endif