os/textandloc/textrendering/textformatting/inc/FRMCONST.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
* FOR INFORMATION ONLY (CONTAINS PANIC NUMBERS, ETC.) - NOT PART OF INTERFACE
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef __FRMCONST_H__
sl@0
    21
#define __FRMCONST_H__
sl@0
    22
sl@0
    23
#include <w32std.h>
sl@0
    24
sl@0
    25
/**
sl@0
    26
@publishedAll
sl@0
    27
@released
sl@0
    28
*/
sl@0
    29
enum TFormPanic
sl@0
    30
	{
sl@0
    31
	/** Not used 
sl@0
    32
	*/
sl@0
    33
	EFDummy = 0,				
sl@0
    34
sl@0
    35
	// Used in ASSERT_ALWAYS
sl@0
    36
sl@0
    37
	// Parameter errors
sl@0
    38
	/** Document handle NULL has been passed in
sl@0
    39
	*/
sl@0
    40
	EFInvalidDocument = 200,	
sl@0
    41
	/** A NULL layout handle has been passed in 
sl@0
    42
	*/
sl@0
    43
	EFInvalidLayout,			
sl@0
    44
	/** The character edit type was unknown or incompatible with the format changed value 
sl@0
    45
	*/
sl@0
    46
	EFBadCharacterEditType,		
sl@0
    47
	/** The horizontal scroll jump value has been set outside the allowable range (0,9999) 
sl@0
    48
	*/
sl@0
    49
	EFInvalidJumpValue,			
sl@0
    50
sl@0
    51
	// Document
sl@0
    52
	/** No or negative document position specified or greater than current document length 
sl@0
    53
	*/
sl@0
    54
	EFInvalidDocPos = 300,		
sl@0
    55
sl@0
    56
	// Drawing
sl@0
    57
	/** The function CTextView::SetLineCursorBitmap has not been called even though a line cursor is being used 
sl@0
    58
	*/
sl@0
    59
	EFLineCursorBitmapNotSet = 400,	
sl@0
    60
sl@0
    61
	// Pagination
sl@0
    62
	/** No document to paginate 
sl@0
    63
	*/
sl@0
    64
	EFDocumentToPaginateNotSet = 500, 
sl@0
    65
	/** Appending zero or negative characters per page to page list 
sl@0
    66
	*/
sl@0
    67
	EFInvalidNumberCharsOnPage,	
sl@0
    68
	/** Page list should not be empty at this point 
sl@0
    69
	*/
sl@0
    70
	EFPageListEmpty,			
sl@0
    71
sl@0
    72
	// Printing
sl@0
    73
	/** The array containing the number of characters per page has not been set or is defective 
sl@0
    74
	*/
sl@0
    75
	EFInvalidPageList = 600,	
sl@0
    76
	/** A page requested that is outside the page list given 
sl@0
    77
	*/
sl@0
    78
	EFInvalidPageNumber,		 
sl@0
    79
sl@0
    80
	// Used only in ASSERT_DEBUG
sl@0
    81
sl@0
    82
	// Errors in internal format information
sl@0
    83
	/** Format doesn't fill band but is not to end of document 
sl@0
    84
	*/
sl@0
    85
	EFNotEnoughFormat = 700,	
sl@0
    86
	/** A lines says it has height zero 
sl@0
    87
	*/
sl@0
    88
	EFZeroHeightLine,			
sl@0
    89
	/** The selected range flag is on but the selection has zero length 
sl@0
    90
	*/
sl@0
    91
	EFSelectedRangeZeroLen,		
sl@0
    92
	/** The cursor is a document position that is outside the formatted range 
sl@0
    93
	*/
sl@0
    94
	EFCursorNotInCurrentFormat,	
sl@0
    95
	/** GetLineRect pixel that was asked for 
sl@0
    96
	*/
sl@0
    97
	EFPixelNotInFormattedLine,	
sl@0
    98
	/** The complete scroll should have been possible 
sl@0
    99
	*/
sl@0
   100
 	EFScrollCurtailed,			
sl@0
   101
sl@0
   102
	// Logic error during format process
sl@0
   103
	/** Should not be calling HandleCharEdit when there is a selection 
sl@0
   104
	*/
sl@0
   105
	EFSelectionCannotCharEdit = 800,	
sl@0
   106
	/** This function should not be called when the format is out of date 
sl@0
   107
	*/
sl@0
   108
	EFFormatOutOfDate,			
sl@0
   109
	/** Background formatting should not be going on 
sl@0
   110
	*/
sl@0
   111
	EFBackgroundFormatting,		
sl@0
   112
sl@0
   113
	// Scrolling errors
sl@0
   114
	/** The request for a scroll returned zero as the ammount to scroll by 
sl@0
   115
	*/
sl@0
   116
	EFScrollByZero1 = 900,		
sl@0
   117
	/** A routine that does the scrolling is called with a value of zero or one having wrong sign 
sl@0
   118
	*/
sl@0
   119
	EFScrollByZero2,			
sl@0
   120
	/** Algorithmic or assumption error in the scroll routine 
sl@0
   121
	*/
sl@0
   122
	EFScrollError,				
sl@0
   123
	/** Error when scrolling text down 
sl@0
   124
	*/
sl@0
   125
	EFScrollDownError,			
sl@0
   126
	/** Error when scrolling text up 
sl@0
   127
	*/
sl@0
   128
	EFScrollUpError,			
sl@0
   129
	/** A scrolling routine was expecting a certain type of scroll and got a different one 
sl@0
   130
	*/
sl@0
   131
	EFInvalidScrollingType,		
sl@0
   132
sl@0
   133
	// Out of memory
sl@0
   134
	/** Cannot do this when in no memory mode 
sl@0
   135
	*/
sl@0
   136
	EFNoMemory = 1000,			
sl@0
   137
	/** Trying to recover from no_memory when no no_memory condition has occured 
sl@0
   138
	*/
sl@0
   139
	EFRecoverNoMemory,			
sl@0
   140
sl@0
   141
	// Cursor
sl@0
   142
	/** The cursor has been moved to a position off the screen 
sl@0
   143
	*/
sl@0
   144
	EFCursorOffDisplay = 1100,	
sl@0
   145
	/** Attempt to access the cursor navigation policy object when its pointer is 0 
sl@0
   146
	*/
sl@0
   147
	EFNoCursorPositionPolicy,	
sl@0
   148
	/** Invalid positioning hint value supplied to API 
sl@0
   149
	*/
sl@0
   150
	EFPosHintInvalid,			
sl@0
   151
	/** Curosr APIs found formatting not available for position supplied. 
sl@0
   152
	*/
sl@0
   153
	EFPositionNotFormatted,		
sl@0
   154
	/** The document position was out of range for the current source document. 
sl@0
   155
	*/
sl@0
   156
	EFPositionInvalid,			
sl@0
   157
sl@0
   158
	// Drawing
sl@0
   159
	/** Trying to toggle the highlight on part of the screen when the selection is not visible 
sl@0
   160
	*/
sl@0
   161
	EFSelectionNotVisible = 1200, 
sl@0
   162
	/** Clearing bottom partial line when not needed
sl@0
   163
	*/
sl@0
   164
 	EFPartialLineClearError,    
sl@0
   165
	/** The routine that does the display has been passed a null pointer to a graphics context 
sl@0
   166
	*/
sl@0
   167
	EFGcNotSet,					
sl@0
   168
sl@0
   169
	//Internal Coding Errors	   
sl@0
   170
	/** SetViewL has put the text at the wrong vertical height 
sl@0
   171
	*/
sl@0
   172
	EFViewNotPositionedCorrectly = 1300, 
sl@0
   173
	/** The function call should not leave in this situation 
sl@0
   174
	*/
sl@0
   175
	EFShouldNotLeave,			
sl@0
   176
	/** Trying to move cursor using wrong function call 
sl@0
   177
	*/
sl@0
   178
	EFIncorrectCursorMovement,	
sl@0
   179
	/** Should be current picture frame 
sl@0
   180
	*/
sl@0
   181
	EFNoPictureFrame,			
sl@0
   182
	/** A value of a system constant has changed to a value that has broken this code 
sl@0
   183
	*/
sl@0
   184
	EFSystemConstantsChanged	
sl@0
   185
	};
sl@0
   186
sl@0
   187
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   188
#include <frmconst_internal.h>
sl@0
   189
#include <frmconst_partner.h>
sl@0
   190
#endif
sl@0
   191
sl@0
   192
#endif // __FRMCONST_H__