sl@0: /* sl@0: * Copyright (c) 1997-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: * FOR INFORMATION ONLY (CONTAINS PANIC NUMBERS, ETC.) - NOT PART OF INTERFACE sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __FRMCONST_H__ sl@0: #define __FRMCONST_H__ sl@0: sl@0: #include sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: enum TFormPanic sl@0: { sl@0: /** Not used sl@0: */ sl@0: EFDummy = 0, sl@0: sl@0: // Used in ASSERT_ALWAYS sl@0: sl@0: // Parameter errors sl@0: /** Document handle NULL has been passed in sl@0: */ sl@0: EFInvalidDocument = 200, sl@0: /** A NULL layout handle has been passed in sl@0: */ sl@0: EFInvalidLayout, sl@0: /** The character edit type was unknown or incompatible with the format changed value sl@0: */ sl@0: EFBadCharacterEditType, sl@0: /** The horizontal scroll jump value has been set outside the allowable range (0,9999) sl@0: */ sl@0: EFInvalidJumpValue, sl@0: sl@0: // Document sl@0: /** No or negative document position specified or greater than current document length sl@0: */ sl@0: EFInvalidDocPos = 300, sl@0: sl@0: // Drawing sl@0: /** The function CTextView::SetLineCursorBitmap has not been called even though a line cursor is being used sl@0: */ sl@0: EFLineCursorBitmapNotSet = 400, sl@0: sl@0: // Pagination sl@0: /** No document to paginate sl@0: */ sl@0: EFDocumentToPaginateNotSet = 500, sl@0: /** Appending zero or negative characters per page to page list sl@0: */ sl@0: EFInvalidNumberCharsOnPage, sl@0: /** Page list should not be empty at this point sl@0: */ sl@0: EFPageListEmpty, sl@0: sl@0: // Printing sl@0: /** The array containing the number of characters per page has not been set or is defective sl@0: */ sl@0: EFInvalidPageList = 600, sl@0: /** A page requested that is outside the page list given sl@0: */ sl@0: EFInvalidPageNumber, sl@0: sl@0: // Used only in ASSERT_DEBUG sl@0: sl@0: // Errors in internal format information sl@0: /** Format doesn't fill band but is not to end of document sl@0: */ sl@0: EFNotEnoughFormat = 700, sl@0: /** A lines says it has height zero sl@0: */ sl@0: EFZeroHeightLine, sl@0: /** The selected range flag is on but the selection has zero length sl@0: */ sl@0: EFSelectedRangeZeroLen, sl@0: /** The cursor is a document position that is outside the formatted range sl@0: */ sl@0: EFCursorNotInCurrentFormat, sl@0: /** GetLineRect pixel that was asked for sl@0: */ sl@0: EFPixelNotInFormattedLine, sl@0: /** The complete scroll should have been possible sl@0: */ sl@0: EFScrollCurtailed, sl@0: sl@0: // Logic error during format process sl@0: /** Should not be calling HandleCharEdit when there is a selection sl@0: */ sl@0: EFSelectionCannotCharEdit = 800, sl@0: /** This function should not be called when the format is out of date sl@0: */ sl@0: EFFormatOutOfDate, sl@0: /** Background formatting should not be going on sl@0: */ sl@0: EFBackgroundFormatting, sl@0: sl@0: // Scrolling errors sl@0: /** The request for a scroll returned zero as the ammount to scroll by sl@0: */ sl@0: EFScrollByZero1 = 900, sl@0: /** A routine that does the scrolling is called with a value of zero or one having wrong sign sl@0: */ sl@0: EFScrollByZero2, sl@0: /** Algorithmic or assumption error in the scroll routine sl@0: */ sl@0: EFScrollError, sl@0: /** Error when scrolling text down sl@0: */ sl@0: EFScrollDownError, sl@0: /** Error when scrolling text up sl@0: */ sl@0: EFScrollUpError, sl@0: /** A scrolling routine was expecting a certain type of scroll and got a different one sl@0: */ sl@0: EFInvalidScrollingType, sl@0: sl@0: // Out of memory sl@0: /** Cannot do this when in no memory mode sl@0: */ sl@0: EFNoMemory = 1000, sl@0: /** Trying to recover from no_memory when no no_memory condition has occured sl@0: */ sl@0: EFRecoverNoMemory, sl@0: sl@0: // Cursor sl@0: /** The cursor has been moved to a position off the screen sl@0: */ sl@0: EFCursorOffDisplay = 1100, sl@0: /** Attempt to access the cursor navigation policy object when its pointer is 0 sl@0: */ sl@0: EFNoCursorPositionPolicy, sl@0: /** Invalid positioning hint value supplied to API sl@0: */ sl@0: EFPosHintInvalid, sl@0: /** Curosr APIs found formatting not available for position supplied. sl@0: */ sl@0: EFPositionNotFormatted, sl@0: /** The document position was out of range for the current source document. sl@0: */ sl@0: EFPositionInvalid, sl@0: sl@0: // Drawing sl@0: /** Trying to toggle the highlight on part of the screen when the selection is not visible sl@0: */ sl@0: EFSelectionNotVisible = 1200, sl@0: /** Clearing bottom partial line when not needed sl@0: */ sl@0: EFPartialLineClearError, sl@0: /** The routine that does the display has been passed a null pointer to a graphics context sl@0: */ sl@0: EFGcNotSet, sl@0: sl@0: //Internal Coding Errors sl@0: /** SetViewL has put the text at the wrong vertical height sl@0: */ sl@0: EFViewNotPositionedCorrectly = 1300, sl@0: /** The function call should not leave in this situation sl@0: */ sl@0: EFShouldNotLeave, sl@0: /** Trying to move cursor using wrong function call sl@0: */ sl@0: EFIncorrectCursorMovement, sl@0: /** Should be current picture frame sl@0: */ sl@0: EFNoPictureFrame, sl@0: /** A value of a system constant has changed to a value that has broken this code sl@0: */ sl@0: EFSystemConstantsChanged sl@0: }; sl@0: sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #include sl@0: #endif sl@0: sl@0: #endif // __FRMCONST_H__