sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: #ifndef FRMCONST_INTERNAL_H_ sl@0: #define FRMCONST_INTERNAL_H_ sl@0: sl@0: #include sl@0: #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif sl@0: sl@0: /** sl@0: Visible versions of control characters. sl@0: @internalComponent sl@0: */ sl@0: const TText KVisibleParagraphBreak = 0x00B6; // paragraph sign (pilcrow) sl@0: const TText KVisibleLineBreak = 0x2193; // down arrow sl@0: const TText KVisibleNonBreakSpace = 0x00B0; // degree sign sl@0: const TText KVisiblePotentialHyphen = 0x00AC; // not sign sl@0: const TText KVisibleNonBreakHyphen = 0x007E; // spacing tilde sl@0: const TText KVisibleSpace = 0x00B7; // middle dot sl@0: const TText KVisibleTab = 0x2192; // right arrow sl@0: const TText KVisiblePicture = 0x25A3; // white square containing small black square sl@0: sl@0: /** sl@0: Control characters to allow or inhibit line breaks. sl@0: @internalComponent sl@0: */ sl@0: const TText KZeroWidthSpace = 0x200B; sl@0: const TText KZeroWidthNoBreakSpace = 0xFEFF; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: void FormPanic(TFormPanic aPanic); sl@0: sl@0: #endif