fontservices/fontstore/inc/shaperparams.h
changeset 32 8b9155204a54
parent 0 1fb32624e06b
equal deleted inserted replaced
31:b9ad20498fb4 32:8b9155204a54
       
     1 /*
       
     2 * Copyright (c) 2005-2009 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 * Internal file for definitions used in shaping and positioning text
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 /**
       
    21  @file
       
    22  @internalTechnology
       
    23 */
       
    24 
       
    25 #ifndef SHAPERPARAMS_H_
       
    26 #define SHAPERPARAMS_H_
       
    27 
       
    28 #include <e32cmn.h>
       
    29 
       
    30 /** To be TPckged up for EFbsShapeText message. */
       
    31 class TShapeMessageParameters
       
    32 	{
       
    33 public:
       
    34 	/** The start of the text to be drawn in the buffer passed. */
       
    35 	TInt iStart;
       
    36 	/** The end of the text to be drawn in the buffer passed. */
       
    37 	TInt iEnd;
       
    38 	/** The script code. */
       
    39 	TInt iScript;
       
    40 	/** The language code. */
       
    41 	TInt iLanguage;
       
    42 	};
       
    43 
       
    44 #endif