Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 enum TEventCheckerPanic
21 EEventCheckerPanicEventCheckerMustNotBeFinalRenderStage,
23 EEventCheckerPanicBeginWithoutPrecedingEnd,
24 EEventCheckerPanicEndWithoutPrecedingBegin,
26 EEventCheckerPanicMWsGraphicsContextRequestedOutsideBeginEnd,
27 EEventCheckerPanicNextRenderStageHasNoMWsGraphicsContext,
28 EEventCheckerPanicNextRenderStageHasChangedMWsGraphicsContextWithinBeginEnd,
29 EEventCheckerPanicUsingMWsGraphicsContextAfterEnd,
31 EEventCheckerPanicMWsTextCursorRequestedOutsideBeginEnd,
32 EEventCheckerPanicNextRenderStageHasNoMWsTextCursor,
33 EEventCheckerPanicNextRenderStageHasChangedMWsTextCursorWithinBeginEnd,
34 EEventCheckerPanicUsingMWsTextCursorAfterEnd,
36 EEventCheckerPanicMWsFaderRequestedOutsideBeginEnd,
37 EEventCheckerPanicNextRenderStageHasNoMWsFader,
38 EEventCheckerPanicNextRenderStageHasChangedMWsFaderWithinBeginEnd,
39 EEventCheckerPanicUsingMWsFaderAfterEnd,
41 EEventCheckerPanicNextRenderStageHasNoMWsScene,
42 EEventCheckerPanicElementCountMismatch,
43 EEventCheckerPanicElementLinksMismatch,
44 EEventCheckerPanicAcquireElementWithoutWindow,
45 EEventCheckerPanicAcquireElementForUnknownElement,
46 EEventCheckerPanicElementsWithoutAssociatedWindow,
47 //MWsDrawAnnotationObserver
48 EEventCheckerPanicUnbalancedDrawingTargetEvents,
49 EEventCheckerPanicDrawingWithoutTarget,
52 void Panic(TEventCheckerPanic aPanic);
55 #define CHK_ASSERT_DEBUG(c, p) \
63 #define CHK_ASSERT_DEBUG(c, p)
66 #define CHK_ASSERT_ALWAYS(c, p) \
74 #endif // __PANICS_H__