os/textandloc/textrendering/textformatting/inc/FRMCONST_INTERNAL.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 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 *
    16 */
    17 
    18 #ifndef FRMCONST_INTERNAL_H_
    19 #define FRMCONST_INTERNAL_H_
    20 
    21 #include <w32std.h>
    22 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
    23 #include <frmconst.h>
    24 #endif
    25 
    26 /** 
    27 Visible versions of control characters.
    28 @internalComponent
    29 */
    30 const TText KVisibleParagraphBreak = 0x00B6;		// paragraph sign (pilcrow)
    31 const TText KVisibleLineBreak = 0x2193;				// down arrow
    32 const TText KVisibleNonBreakSpace = 0x00B0;			// degree sign
    33 const TText KVisiblePotentialHyphen = 0x00AC;		// not sign
    34 const TText KVisibleNonBreakHyphen = 0x007E;		// spacing tilde
    35 const TText KVisibleSpace = 0x00B7;					// middle dot
    36 const TText KVisibleTab = 0x2192;					// right arrow
    37 const TText KVisiblePicture = 0x25A3;				// white square containing small black square
    38 
    39 /**
    40 Control characters to allow or inhibit line breaks.
    41 @internalComponent
    42 */
    43 const TText KZeroWidthSpace = 0x200B;
    44 const TText KZeroWidthNoBreakSpace = 0xFEFF;
    45 
    46 /**
    47 @internalComponent
    48 */
    49 void FormPanic(TFormPanic aPanic);
    50 
    51 #endif