os/textandloc/textrendering/textformatting/inc/FRMLAYDT.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#ifndef __FRMLAYDT_H__
sl@0
    20
#define __FRMLAYDT_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
sl@0
    24
#if defined(TIMING_CODE)
sl@0
    25
class CWindowGc;
sl@0
    26
class RWsSession;
sl@0
    27
#endif
sl@0
    28
sl@0
    29
/** 
sl@0
    30
Layout data: no longer used.
sl@0
    31
sl@0
    32
This class provides two enumerations which are used in the Text Views API.
sl@0
    33
@publishedAll
sl@0
    34
@deprecated 7.0 
sl@0
    35
*/
sl@0
    36
class CLayoutData
sl@0
    37
sl@0
    38
	{
sl@0
    39
public:
sl@0
    40
	enum
sl@0
    41
		{
sl@0
    42
		EFLargeNumber = KMaxTInt / 3,	// must be less than KMaxTInt/2 to avoid overflow problems
sl@0
    43
		EFFontHeightIncreaseFactor = 7,	// by default, increase the font height by this percentage
sl@0
    44
		EFMinimumLineDescent = 3,		// by default, this is the minimum line descent
sl@0
    45
		EFBaseLinePosition = 82			// position down ViewRect for BaseLine
sl@0
    46
		};
sl@0
    47
sl@0
    48
	enum
sl@0
    49
		{
sl@0
    50
		EFHeightForFormattingAllText = EFLargeNumber,
sl@0
    51
		EFBodyWidthForNoWrapping = EFLargeNumber
sl@0
    52
		};
sl@0
    53
	
sl@0
    54
	/** Flags used when converting between layout coordinates and document
sl@0
    55
	position.
sl@0
    56
	@see CTextLayout::XyPosToDocPosL()
sl@0
    57
	@see CTextLayout::DocPosToXyPosL() */
sl@0
    58
	enum		
sl@0
    59
		{
sl@0
    60
		/**
sl@0
    61
		Count individual characters and don't treat the end of the line specially.
sl@0
    62
		@deprecated 6.2
sl@0
    63
		*/
sl@0
    64
		EFIndividualChars = 0,
sl@0
    65
		/**
sl@0
    66
		Only consider the beginnings and ends of whole lines. Only useful in
sl@0
    67
		XyToDocPos functions.
sl@0
    68
		*/
sl@0
    69
		EFWholeLinesOnly = 1,
sl@0
    70
		/**
sl@0
    71
		Only consider the beginnings and ends of whole TBoxs so as not to
sl@0
    72
		access the document. Only useful in XyToDocPos functions.
sl@0
    73
		*/
sl@0
    74
		EFWholeTBoxesOnly=EFWholeLinesOnly,
sl@0
    75
		/**
sl@0
    76
		Disambiguate the end position of a line from the start position of
sl@0
    77
		the next line. If both positions are the same, a position at the end
sl@0
    78
		of the line will be invalid, and the position before will be
sl@0
    79
		returned instead.
sl@0
    80
		*/
sl@0
    81
		EFDisambiguateEndOfLine = 2,
sl@0
    82
		};
sl@0
    83
sl@0
    84
	/** Format modes. */
sl@0
    85
	enum TFormatMode
sl@0
    86
		{
sl@0
    87
		/** Dimensions stored in pixels with no mapping between format and image device. */
sl@0
    88
		EFScreenMode, 
sl@0
    89
		/** Dimensions stored in twips with no mapping. */
sl@0
    90
		EFPrintMode,
sl@0
    91
		/** Dimensions stored in twips with partial mapping. */
sl@0
    92
		EFPrintPreviewMode, 
sl@0
    93
		/** Dimensions stored in twips with full mapping. */
sl@0
    94
		EFWysiwygMode
sl@0
    95
		};
sl@0
    96
private:
sl@0
    97
	// not constructable
sl@0
    98
	CLayoutData(CLayoutData&);
sl@0
    99
	};
sl@0
   100
sl@0
   101
#endif