Update contrib.
1 // Copyright (c) 2007-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.
16 #ifndef DIRECTGDIPANICCODES_H
17 #define DIRECTGDIPANICCODES_H
21 _LIT(KComponentPanicCategory, "DGDI");
22 #define SYMBIAN_PANIC_CATEGORY KComponentPanicCategory
23 #include <graphics/directgdipanics.h>
26 Enumeration of DirectGDI panic codes. These should be used in conjunction with
27 the GRAPHICS_ASSERT_ALWAYS and GRAPHICS_PANIC_ALWAYS macros defined in directgdipanics.inl.
31 enum TDirectGdiPanicCode
33 /** The requested functionality has not been implemented - do not use.
35 EDirectGdiPanicNotImplemented = 1,
37 /** An assertion has evaluated to false.
39 EDirectGdiPanicAssertionFailure = 2,
41 /** Valid reference to rendering engine not found.
43 EDirectGdiPanicRenderingEngineNotSet = 3,
45 /** Valid reference to rendering target not found.
47 EDirectGdiPanicRenderingTargetNotSet = 4,
49 /** Valid reference to DirectGDI driver not initialised.
51 EDirectGdiPanicDirectGdiDriverNotInitialised = 5,
53 /** Invalid reference count to DirectGDI driver.
55 EDirectGdiPanicDriverInvalidRefCount = 6,
57 /** Context has not been activated.
59 EDirectGdiPanicContextNotActivated = 7,
61 /** Invalid brush pattern passed to SetBrushPattern().
63 EDirectGdiPanicInvalidBrushPattern = 8,
65 /** Attempt to use a brush with brush style style is EPatternedBrush but a pattern has not
66 been successfully set using SetBrushPattern().
68 EDirectGdiPanicBrushPatternNotSet = 9,
70 /** Invalid brush style.
72 EDirectGdiPanicInvalidBrushStyle = 10,
74 /** No valid font has been selected.
76 EDirectGdiPanicNoFontSelected = 11,
80 EDirectGdiPanicInvalidFont = 12,
82 /** UpdateJustification called wrongly.
84 EDirectGdiPanicAutoUpdateJustificationUsed = 13,
86 /** A check on the open count in CDirectGdiDriver::Open() failed.
88 EDirectGdiPanicDriverOpenCountError = 14,
90 /** A check on the open count in CDirectGdiDriver::~CDirectGdiDriver() failed.
92 EDirectGdiPanicDriverDestructorOpenCountError = 15,
94 /** The RDirectGdiImageTarget object has no pointer to the DirectGDI driver
96 EDirectGdiPanicImageTargetWithoutDriver = 16,
98 /** The RDirectGdiImageTarget object already has an image target in use in CDirectGdiDriver::CreateImageTarget()
100 EDirectGdiPanicImageTargetAlreadyExists = 17,
102 /** The RDirectGdiDrawableSource object has no pointer to the DirectGDI driver
104 EDirectGdiPanicDrawableSourceWithoutDriver = 18,
106 /** The RDirectGdiDrawableSource object already has a drawable source in use in CDirectGdiDriver::CreateDrawableSource()
108 EDirectGdiPanicDrawableSourceAlreadyExists = 19,
110 /** GetInfo failed for an image in CDirectGdiDriver::CreateDrawableSource()
112 EDirectGdiPanicImageSourceInfoError = 20,
114 /** GetInfo failed for an image in CDirectGdiDriver::CreateImageTarget()
116 EDirectGdiPanicImageTargetInfoError = 21,
118 /** Bad parameter is passed to the function
120 EDirectGdiPanicBadParameter = 22,
123 #endif /*DIRECTGDIPANICCODES_H*/