| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393 |
- //*****************************************************************************
- //
- // grlib.h - Prototypes for the low level primitives provided by the graphics
- // library.
- //
- // Copyright (c) 2007-2010 Texas Instruments Incorporated. All rights reserved.
- // Software License Agreement
- //
- // Texas Instruments (TI) is supplying this software for use solely and
- // exclusively on TI's microcontroller products. The software is owned by
- // TI and/or its suppliers, and is protected under applicable copyright
- // laws. You may not combine this software with "viral" open-source
- // software in order to form a larger program.
- //
- // THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
- // NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
- // NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- // A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
- // CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
- // DAMAGES, FOR ANY REASON WHATSOEVER.
- //
- // This is part of revision 6288 of the Stellaris Graphics Library.
- //
- //*****************************************************************************
- #ifndef __GRLIB_H__
- #define __GRLIB_H__
- //*****************************************************************************
- //
- //! \addtogroup primitives_api
- //! @{
- //
- //*****************************************************************************
- //*****************************************************************************
- //
- // If building with a C++ compiler, make all of the definitions in this header
- // have a C binding.
- //
- //*****************************************************************************
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- //*****************************************************************************
- //
- //! This structure defines the extents of a rectangle. All points greater than
- //! or equal to the minimum and less than or equal to the maximum are part of
- //! the rectangle.
- //
- //*****************************************************************************
- typedef struct
- {
- //
- //! The minimum X coordinate of the rectangle.
- //
- short sXMin;
- //
- //! The minimum Y coordinate of the rectangle.
- //
- short sYMin;
- //
- //! The maximum X coordinate of the rectangle.
- //
- short sXMax;
- //
- //! The maximum Y coordinate of the rectangle.
- //
- short sYMax;
- }
- tRectangle;
- //*****************************************************************************
- //
- //! This structure defines the characteristics of a display driver.
- //
- //*****************************************************************************
- typedef struct
- {
- //
- //! The size of this structure.
- //
- int lSize;
- //
- //! A pointer to display driver-specific data.
- //
- void *pvDisplayData;
- //
- //! The width of this display.
- //
- unsigned short usWidth;
- //
- //! The height of this display.
- //
- unsigned short usHeight;
- //
- //! A pointer to the function to draw a pixel on this display.
- //
- void (*pfnPixelDraw)(void *pvDisplayData, int lX, int lY,
- unsigned int ulValue);
- //
- //! A pointer to the function to draw multiple pixels on this display.
- //
- void (*pfnPixelDrawMultiple)(void *pvDisplayData, int lX, int lY,
- int lX0, int lCount, int lBPP,
- const unsigned char *pucData,
- const unsigned char *pucPalette);
- //
- //! A pointer to the function to draw a horizontal line on this display.
- //
- void (*pfnLineDrawH)(void *pvDisplayData, int lX1, int lX2, int lY,
- unsigned int ulValue);
- //
- //! A pointer to the function to draw a vertical line on this display.
- //
- void (*pfnLineDrawV)(void *pvDisplayData, int lX, int lY1, int lY2,
- unsigned int ulValue);
- //
- //! A pointer to the function to draw a filled rectangle on this display.
- //
- void (*pfnRectFill)(void *pvDisplayData, const tRectangle *pRect,
- unsigned int ulValue);
- //
- //! A pointer to the function to translate 24-bit RGB colors to
- //! display-specific colors.
- //
- unsigned int (*pfnColorTranslate)(void *pvDisplayData,
- unsigned int ulValue);
- //
- //! A pointer to the function to flush any cached drawing operations on
- //! this display.
- //
- void (*pfnFlush)(void *pvDisplayData);
- }
- tDisplay;
- //*****************************************************************************
- //
- //! This structure describes a font used for drawing text onto the screen.
- //
- //*****************************************************************************
- typedef struct
- {
- //
- //! The format of the font. Can be one of FONT_FMT_UNCOMPRESSED or
- //! FONT_FMT_PIXEL_RLE.
- //
- unsigned char ucFormat;
- //
- //! The maximum width of a character; this is the width of the widest
- //! character in the font, though any individual character may be narrower
- //! than this width.
- //
- unsigned char ucMaxWidth;
- //
- //! The height of the character cell; this may be taller than the font data
- //! for the characters (to provide inter-line spacing).
- //
- unsigned char ucHeight;
- //
- //! The offset between the top of the character cell and the baseline of
- //! the glyph. The baseline is the bottom row of a capital letter, below
- //! which only the descenders of the lower case letters occur.
- //
- unsigned char ucBaseline;
- //
- //! The offset within pucData to the data for each character in the font.
- //
- unsigned short pusOffset[96];
- //
- //! A pointer to the data for the font.
- //
- const unsigned char *pucData;
- }
- tFont;
- //*****************************************************************************
- //
- //! Indicates that the font data is stored in an uncompressed format.
- //
- //*****************************************************************************
- #define FONT_FMT_UNCOMPRESSED 0x00
- //*****************************************************************************
- //
- //! Indicates that the font data is stored using a pixel-based RLE format.
- //
- //*****************************************************************************
- #define FONT_FMT_PIXEL_RLE 0x01
- //*****************************************************************************
- //
- //! Indicates that the image data is not compressed and represents each pixel
- //! with a single bit.
- //
- //*****************************************************************************
- #define IMAGE_FMT_1BPP_UNCOMP 0x01
- //*****************************************************************************
- //
- //! Indicates that the image data is not compressed and represents each pixel
- //! with four bits.
- //
- //*****************************************************************************
- #define IMAGE_FMT_4BPP_UNCOMP 0x04
- //*****************************************************************************
- //
- //! Indicates that the image data is not compressed and represents each pixel
- //! with eight bits.
- //
- //*****************************************************************************
- #define IMAGE_FMT_8BPP_UNCOMP 0x08
- //*****************************************************************************
- //
- //! Indicates that the image data is compressed and represents each pixel with
- //! a single bit.
- //
- //*****************************************************************************
- #define IMAGE_FMT_1BPP_COMP 0x81
- //*****************************************************************************
- //
- //! Indicates that the image data is compressed and represents each pixel with
- //! four bits.
- //
- //*****************************************************************************
- #define IMAGE_FMT_4BPP_COMP 0x84
- //*****************************************************************************
- //
- //! Indicates that the image data is compressed and represents each pixel with
- //! eight bits.
- //
- //*****************************************************************************
- #define IMAGE_FMT_8BPP_COMP 0x88
- #define IMAGE_FMT_16BPP_UNCOMP 0x10
- #define IMAGE_FMT_16BPP_COMP 0x90
- #define IMAGE_FMT_24BPP_UNCOMP 0x20
- #define IMAGE_FMT_24BPP_COMP 0xA0
- //*****************************************************************************
- //
- //! This structure defines a drawing context to be used to draw onto the
- //! screen. Multiple drawing contexts may exist at any time.
- //
- //*****************************************************************************
- typedef struct
- {
- //
- //! The size of this structure.
- //
- int lSize;
- //
- //! The screen onto which drawing operations are performed.
- //
- const tDisplay *pDisplay;
- //
- //! The clipping region to be used when drawing onto the screen.
- //
- tRectangle sClipRegion;
- //
- //! The color used to draw primitives onto the screen.
- //
- unsigned int ulForeground;
- //
- //! The background color used to draw primitives onto the screen.
- //
- unsigned int ulBackground;
- //
- //! The font used to render text onto the screen.
- //
- const tFont *pFont;
- }
- tContext;
- //*****************************************************************************
- //
- //! Sets the background color to be used.
- //!
- //! \param pContext is a pointer to the drawing context to modify.
- //! \param ulValue is the 24-bit RGB color to be used.
- //!
- //! This function sets the background color to be used for drawing operations
- //! in the specified drawing context.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define GrContextBackgroundSet(pContext, ulValue) \
- do \
- { \
- tContext *pC = pContext; \
- pC->ulBackground = DpyColorTranslate(pC->pDisplay, ulValue); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Sets the background color to be used.
- //!
- //! \param pContext is a pointer to the drawing context to modify.
- //! \param ulValue is the display driver-specific color to be used.
- //!
- //! This function sets the background color to be used for drawing operations
- //! in the specified drawing context, using a color that has been previously
- //! translated to a driver-specific color (for example, via
- //! DpyColorTranslate()).
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define GrContextBackgroundSetTranslated(pContext, ulValue) \
- do \
- { \
- tContext *pC = pContext; \
- pC->ulBackground = ulValue; \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Gets the width of the display being used by this drawing context.
- //!
- //! \param pContext is a pointer to the drawing context to query.
- //!
- //! This function returns the width of the display that is being used by this
- //! drawing context.
- //!
- //! \return Returns the width of the display in pixels.
- //
- //*****************************************************************************
- #define GrContextDpyWidthGet(pContext) \
- (DpyWidthGet((pContext)->pDisplay))
- //*****************************************************************************
- //
- //! Gets the height of the display being used by this drawing context.
- //!
- //! \param pContext is a pointer to the drawing context to query.
- //!
- //! This function returns the height of the display that is being used by this
- //! drawing context.
- //!
- //! \return Returns the height of the display in pixels.
- //
- //*****************************************************************************
- #define GrContextDpyHeightGet(pContext) \
- (DpyHeightGet((pContext)->pDisplay))
- //*****************************************************************************
- //
- //! Sets the font to be used.
- //!
- //! \param pContext is a pointer to the drawing context to modify.
- //! \param pFnt is a pointer to the font to be used.
- //!
- //! This function sets the font to be used for string drawing operations in the
- //! specified drawing context.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define GrContextFontSet(pContext, pFnt) \
- do \
- { \
- tContext *pC = pContext; \
- const tFont *pF = pFnt; \
- pC->pFont = pF; \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Sets the foreground color to be used.
- //!
- //! \param pContext is a pointer to the drawing context to modify.
- //! \param ulValue is the 24-bit RGB color to be used.
- //!
- //! This function sets the color to be used for drawing operations in the
- //! specified drawing context.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define GrContextForegroundSet(pContext, ulValue) \
- do \
- { \
- tContext *pC = pContext; \
- pC->ulForeground = DpyColorTranslate(pC->pDisplay, ulValue); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Sets the foreground color to be used.
- //!
- //! \param pContext is a pointer to the drawing context to modify.
- //! \param ulValue is the display driver-specific color to be used.
- //!
- //! This function sets the foreground color to be used for drawing operations
- //! in the specified drawing context, using a color that has been previously
- //! translated to a driver-specific color (for example, via
- //! DpyColorTranslate()).
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define GrContextForegroundSetTranslated(pContext, ulValue) \
- do \
- { \
- tContext *pC = pContext; \
- pC->ulForeground = ulValue; \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Flushes any cached drawing operations.
- //!
- //! \param pContext is a pointer to the drawing context to use.
- //!
- //! This function flushes any cached drawing operations. For display drivers
- //! that draw into a local frame buffer before writing to the actual display,
- //! calling this function will cause the display to be updated to match the
- //! contents of the local frame buffer.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define GrFlush(pContext) \
- do \
- { \
- const tContext *pC = pContext; \
- DpyFlush(pC->pDisplay); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Gets the baseline of a font.
- //!
- //! \param pFont is a pointer to the font to query.
- //!
- //! This function determines the baseline position of a font. The baseline is
- //! the offset between the top of the font and the bottom of the capital
- //! letters. The only font data that exists below the baseline are the
- //! descenders on some lower-case letters (such as ``y'').
- //!
- //! \return Returns the baseline of the font, in pixels.
- //
- //*****************************************************************************
- #define GrFontBaselineGet(pFont) \
- ((pFont)->ucBaseline)
- //*****************************************************************************
- //
- //! Gets the height of a font.
- //!
- //! \param pFont is a pointer to the font to query.
- //!
- //! This function determines the height of a font. The height is the offset
- //! between the top of the font and the bottom of the font, including any
- //! ascenders and descenders.
- //!
- //! \return Returns the height of the font, in pixels.
- //
- //*****************************************************************************
- #define GrFontHeightGet(pFont) \
- ((pFont)->ucHeight)
- //*****************************************************************************
- //
- //! Gets the maximum width of a font.
- //!
- //! \param pFont is a pointer to the font to query.
- //!
- //! This function determines the maximum width of a font. The maximum width is
- //! the width of the widest individual character in the font.
- //!
- //! \return Returns the maximum width of the font, in pixels.
- //
- //*****************************************************************************
- #define GrFontMaxWidthGet(pFont) \
- ((pFont)->ucMaxWidth)
- //*****************************************************************************
- //
- //! Gets the number of colors in an image.
- //!
- //! \param pucImage is a pointer to the image to query.
- //!
- //! This function determines the number of colors in the palette of an image.
- //! This is only valid for 4bpp and 8bpp images; 1bpp images do not contain a
- //! palette.
- //!
- //! \return Returns the number of colors in the image.
- //
- //*****************************************************************************
- #define GrImageColorsGet(pucImage) \
- (((unsigned char *)pucImage)[5] + 1)
- //*****************************************************************************
- //
- //! Gets the height of an image.
- //!
- //! \param pucImage is a pointer to the image to query.
- //!
- //! This function determines the height of an image in pixels.
- //!
- //! \return Returns the height of the image in pixels.
- //
- //*****************************************************************************
- #define GrImageHeightGet(pucImage) \
- ((unsigned short)(*(pucImage+4) << 8) | *(pucImage+3))
- //*****************************************************************************
- //
- //! Gets the width of an image.
- //!
- //! \param pucImage is a pointer to the image to query.
- //!
- //! This function determines the width of an image in pixels.
- //!
- //! \return Returns the width of the image in pixels.
- //
- //*****************************************************************************
- #define GrImageWidthGet(pucImage) \
- ((unsigned short)(*(pucImage+2) << 8) | *(pucImage+1))
-
- //*****************************************************************************
- //
- //! Determines the size of the buffer for a 1 BPP off-screen image.
- //!
- //! \param lWidth is the width of the image in pixels.
- //! \param lHeight is the height of the image in pixels.
- //!
- //! This function determines the size of the memory buffer required to hold a
- //! 1 BPP off-screen image of the specified geometry.
- //!
- //! \return Returns the number of bytes required by the image.
- //
- //*****************************************************************************
- #define GrOffScreen1BPPSize(lWidth, lHeight) \
- (5 + (((lWidth + 7) / 8) * lHeight))
- //*****************************************************************************
- //
- //! Determines the size of the buffer for a 4 BPP off-screen image.
- //!
- //! \param lWidth is the width of the image in pixels.
- //! \param lHeight is the height of the image in pixels.
- //!
- //! This function determines the size of the memory buffer required to hold a
- //! 4 BPP off-screen image of the specified geometry.
- //!
- //! \return Returns the number of bytes required by the image.
- //
- //*****************************************************************************
- #define GrOffScreen4BPPSize(lWidth, lHeight) \
- (6 + (16 * 3) + (((lWidth + 1) / 2) * lHeight))
- //*****************************************************************************
- //
- //! Determines the size of the buffer for a 16 BPP off-screen image.
- //!
- //! \param lWidth is the width of the image in pixels.
- //! \param lHeight is the height of the image in pixels.
- //!
- //! This function determines the size of the memory buffer required to hold a
- //! 16 BPP off-screen image of the specified geometry.
- //!
- //! \return Returns the number of bytes required by the image.
- //
- //*****************************************************************************
- #define GrOffScreen16BPPSize(lWidth, lHeight) \
- (4 + (16*2) + (lWidth * lHeight * 2))
-
- //*****************************************************************************
- //
- //! Determines the size of the buffer for a 24 BPP off-screen image.
- //!
- //! \param lWidth is the width of the image in pixels.
- //! \param lHeight is the height of the image in pixels.
- //!
- //! This function determines the size of the memory buffer required to hold a
- //! 16 BPP off-screen image of the specified geometry.
- //!
- //! \return Returns the number of bytes required by the image.
- //
- //*****************************************************************************
- #define GrOffScreen24BPPSize(lWidth, lHeight, pack) \
- (4 + (8*4) + (lWidth * lHeight * (3+pack)))
-
-
- //*****************************************************************************
- //
- //! Determines the size of the buffer for an 8 BPP off-screen image.
- //!
- //! \param lWidth is the width of the image in pixels.
- //! \param lHeight is the height of the image in pixels.
- //!
- //! This function determines the size of the memory buffer required to hold an
- //! 8 BPP off-screen image of the specified geometry.
- //!
- //! \return Returns the number of bytes required by the image.
- //
- //*****************************************************************************
- #define GrOffScreen8BPPSize(lWidth, lHeight) \
- (6 + (256 * 3) + (lWidth * lHeight))
- //*****************************************************************************
- //
- //! Draws a pixel.
- //!
- //! \param pContext is a pointer to the drawing context to use.
- //! \param lX is the X coordinate of the pixel.
- //! \param lY is the Y coordinate of the pixel.
- //!
- //! This function draws a pixel if it resides within the clipping region.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define GrPixelDraw(pContext, lX, lY) \
- do \
- { \
- const tContext *pC = pContext; \
- if((lX >= pC->sClipRegion.sXMin) && \
- (lX <= pC->sClipRegion.sXMax) && \
- (lY >= pC->sClipRegion.sYMin) && \
- (lY <= pC->sClipRegion.sYMax)) \
- { \
- DpyPixelDraw(pC->pDisplay, lX, lY, pC->ulForeground); \
- } \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Gets the baseline of a string.
- //!
- //! \param pContext is a pointer to the drawing context to query.
- //!
- //! This function determines the baseline position of a string. The baseline
- //! is the offset between the top of the string and the bottom of the capital
- //! letters. The only string data that exists below the baseline are the
- //! descenders on some lower-case letters (such as ``y'').
- //!
- //! \return Returns the baseline of the string, in pixels.
- //
- //*****************************************************************************
- #define GrStringBaselineGet(pContext) \
- ((pContext)->pFont->ucBaseline)
- //*****************************************************************************
- //
- //! Draws a centered string.
- //!
- //! \param pContext is a pointer to the drawing context to use.
- //! \param pcString is a pointer to the string to be drawn.
- //! \param lLength is the number of characters from the string that should be
- //! drawn on the screen.
- //! \param lX is the X coordinate of the center of the string position on the
- //! screen.
- //! \param lY is the Y coordinate of the center of the string position on the
- //! screen.
- //! \param bOpaque is \b true if the background of each character should be
- //! drawn and \b false if it should not (leaving the background as is).
- //!
- //! This function draws a string of test on the screen centered upon the
- //! provided position. The \e lLength parameter allows a portion of the
- //! string to be examined without having to insert a NULL character at the
- //! stopping point (which would not be possible if the string was located in
- //! flash); specifying a length of -1 will cause the entire string to be
- //! rendered (subject to clipping).
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define GrStringDrawCentered(pContext, pcString, lLength, lX, lY, bOpaque) \
- do \
- { \
- const tContext *pC = pContext; \
- const char *pcStr = pcString; \
- \
- GrStringDraw(pC, pcStr, lLength, \
- (lX) - (GrStringWidthGet(pC, pcStr, lLength) / 2), \
- (lY) - (pC->pFont->ucBaseline / 2), bOpaque); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Gets the height of a string.
- //!
- //! \param pContext is a pointer to the drawing context to query.
- //!
- //! This function determines the height of a string. The height is the offset
- //! between the top of the string and the bottom of the string, including any
- //! ascenders and descenders. Note that this will not account for the case
- //! where the string in question does not have any characters that use
- //! descenders but the font in the drawing context does contain characters with
- //! descenders.
- //!
- //! \return Returns the height of the string, in pixels.
- //
- //*****************************************************************************
- #define GrStringHeightGet(pContext) \
- ((pContext)->pFont->ucHeight)
- //*****************************************************************************
- //
- //! Gets the maximum width of a character in a string.
- //!
- //! \param pContext is a pointer to the drawing context to query.
- //!
- //! This function determines the maximum width of a character in a string. The
- //! maximum width is the width of the widest individual character in the font
- //! used to render the string, which may be wider than the widest character
- //! that is used to render a particular string.
- //!
- //! \return Returns the maximum width of a character in a string, in pixels.
- //
- //*****************************************************************************
- #define GrStringMaxWidthGet(pContext) \
- ((pContext)->pFont->ucMaxWidth)
- //*****************************************************************************
- //
- // A set of color definitions. This set is the subset of the X11 colors (from
- // rgb.txt) that are supported by typical web browsers.
- //
- //*****************************************************************************
- #define ClrAliceBlue 0x00F0F8FF
- #define ClrAntiqueWhite 0x00FAEBD7
- #define ClrAqua 0x0000FFFF
- #define ClrAquamarine 0x007FFFD4
- #define ClrAzure 0x00F0FFFF
- #define ClrBeige 0x00F5F5DC
- #define ClrBisque 0x00FFE4C4
- #define ClrBlack 0x00000000
- #define ClrBlanchedAlmond 0x00FFEBCD
- #define ClrBlue 0x000000FF
- #define ClrBlueViolet 0x008A2BE2
- #define ClrBrown 0x00A52A2A
- #define ClrBurlyWood 0x00DEB887
- #define ClrCadetBlue 0x005F9EA0
- #define ClrChartreuse 0x007FFF00
- #define ClrChocolate 0x00D2691E
- #define ClrCoral 0x00FF7F50
- #define ClrCornflowerBlue 0x006495ED
- #define ClrCornsilk 0x00FFF8DC
- #define ClrCrimson 0x00DC143C
- #define ClrCyan 0x0000FFFF
- #define ClrDarkBlue 0x0000008B
- #define ClrDarkCyan 0x00008B8B
- #define ClrDarkGoldenrod 0x00B8860B
- #define ClrDarkGray 0x00A9A9A9
- #define ClrDarkGreen 0x00006400
- #define ClrDarkKhaki 0x00BDB76B
- #define ClrDarkMagenta 0x008B008B
- #define ClrDarkOliveGreen 0x00556B2F
- #define ClrDarkOrange 0x00FF8C00
- #define ClrDarkOrchid 0x009932CC
- #define ClrDarkRed 0x008B0000
- #define ClrDarkSalmon 0x00E9967A
- #define ClrDarkSeaGreen 0x008FBC8F
- #define ClrDarkSlateBlue 0x00483D8B
- #define ClrDarkSlateGray 0x002F4F4F
- #define ClrDarkTurquoise 0x0000CED1
- #define ClrDarkViolet 0x009400D3
- #define ClrDeepPink 0x00FF1493
- #define ClrDeepSkyBlue 0x0000BFFF
- #define ClrDimGray 0x00696969
- #define ClrDodgerBlue 0x001E90FF
- #define ClrFireBrick 0x00B22222
- #define ClrFloralWhite 0x00FFFAF0
- #define ClrForestGreen 0x00228B22
- #define ClrFuchsia 0x00FF00FF
- #define ClrGainsboro 0x00DCDCDC
- #define ClrGhostWhite 0x00F8F8FF
- #define ClrGold 0x00FFD700
- #define ClrGoldenrod 0x00DAA520
- #define ClrGray 0x00808080
- #define ClrGreen 0x00008000
- #define ClrGreenYellow 0x00ADFF2F
- #define ClrHoneydew 0x00F0FFF0
- #define ClrHotPink 0x00FF69B4
- #define ClrIndianRed 0x00CD5C5C
- #define ClrIndigo 0x004B0082
- #define ClrIvory 0x00FFFFF0
- #define ClrKhaki 0x00F0E68C
- #define ClrLavender 0x00E6E6FA
- #define ClrLavenderBlush 0x00FFF0F5
- #define ClrLawnGreen 0x007CFC00
- #define ClrLemonChiffon 0x00FFFACD
- #define ClrLightBlue 0x00ADD8E6
- #define ClrLightCoral 0x00F08080
- #define ClrLightCyan 0x00E0FFFF
- #define ClrLightGoldenrodYellow 0x00FAFAD2
- #define ClrLightGreen 0x0090EE90
- #define ClrLightGrey 0x00D3D3D3
- #define ClrLightPink 0x00FFB6C1
- #define ClrLightSalmon 0x00FFA07A
- #define ClrLightSeaGreen 0x0020B2AA
- #define ClrLightSkyBlue 0x0087CEFA
- #define ClrLightSlateGray 0x00778899
- #define ClrLightSteelBlue 0x00B0C4DE
- #define ClrLightYellow 0x00FFFFE0
- #define ClrLime 0x0000FF00
- #define ClrLimeGreen 0x0032CD32
- #define ClrLinen 0x00FAF0E6
- #define ClrMagenta 0x00FF00FF
- #define ClrMaroon 0x00800000
- #define ClrMediumAquamarine 0x0066CDAA
- #define ClrMediumBlue 0x000000CD
- #define ClrMediumOrchid 0x00BA55D3
- #define ClrMediumPurple 0x009370DB
- #define ClrMediumSeaGreen 0x003CB371
- #define ClrMediumSlateBlue 0x007B68EE
- #define ClrMediumSpringGreen 0x0000FA9A
- #define ClrMediumTurquoise 0x0048D1CC
- #define ClrMediumVioletRed 0x00C71585
- #define ClrMidnightBlue 0x00191970
- #define ClrMintCream 0x00F5FFFA
- #define ClrMistyRose 0x00FFE4E1
- #define ClrMoccasin 0x00FFE4B5
- #define ClrNavajoWhite 0x00FFDEAD
- #define ClrNavy 0x00000080
- #define ClrOldLace 0x00FDF5E6
- #define ClrOlive 0x00808000
- #define ClrOliveDrab 0x006B8E23
- #define ClrOrange 0x00FFA500
- #define ClrOrangeRed 0x00FF4500
- #define ClrOrchid 0x00DA70D6
- #define ClrPaleGoldenrod 0x00EEE8AA
- #define ClrPaleGreen 0x0098FB98
- #define ClrPaleTurquoise 0x00AFEEEE
- #define ClrPaleVioletRed 0x00DB7093
- #define ClrPapayaWhip 0x00FFEFD5
- #define ClrPeachPuff 0x00FFDAB9
- #define ClrPeru 0x00CD853F
- #define ClrPink 0x00FFC0CB
- #define ClrPlum 0x00DDA0DD
- #define ClrPowderBlue 0x00B0E0E6
- #define ClrPurple 0x00800080
- #define ClrRed 0x00FF0000
- #define ClrRosyBrown 0x00BC8F8F
- #define ClrRoyalBlue 0x004169E1
- #define ClrSaddleBrown 0x008B4513
- #define ClrSalmon 0x00FA8072
- #define ClrSandyBrown 0x00F4A460
- #define ClrSeaGreen 0x002E8B57
- #define ClrSeashell 0x00FFF5EE
- #define ClrSienna 0x00A0522D
- #define ClrSilver 0x00C0C0C0
- #define ClrSkyBlue 0x0087CEEB
- #define ClrSlateBlue 0x006A5ACD
- #define ClrSlateGray 0x00708090
- #define ClrSnow 0x00FFFAFA
- #define ClrSpringGreen 0x0000FF7F
- #define ClrSteelBlue 0x004682B4
- #define ClrTan 0x00D2B48C
- #define ClrTeal 0x00008080
- #define ClrThistle 0x00D8BFD8
- #define ClrTomato 0x00FF6347
- #define ClrTurquoise 0x0040E0D0
- #define ClrViolet 0x00EE82EE
- #define ClrWheat 0x00F5DEB3
- #define ClrWhite 0x00FFFFFF
- #define ClrWhiteSmoke 0x00F5F5F5
- #define ClrYellow 0x00FFFF00
- #define ClrYellowGreen 0x009ACD32
- //*****************************************************************************
- //
- // Masks and shifts to aid in color format translation by drivers.
- //
- //*****************************************************************************
- #define ClrRedMask 0x00FF0000
- #define ClrRedShift 16
- #define ClrGreenMask 0x0000FF00
- #define ClrGreenShift 8
- #define ClrBlueMask 0x000000FF
- #define ClrBlueShift 0
- //*****************************************************************************
- //
- // Prototypes for the predefined fonts in the graphics library. ..Cm.. is the
- // computer modern font, which is a serif font. ..Cmsc.. is the computer
- // modern small-caps font, which is also a serif font. ..Cmss.. is the
- // computer modern sans-serif font.
- //
- //*****************************************************************************
- extern const tFont g_sFontCm12;
- extern const tFont g_sFontCm12b;
- extern const tFont g_sFontCm12i;
- extern const tFont g_sFontCm14;
- extern const tFont g_sFontCm14b;
- extern const tFont g_sFontCm14i;
- extern const tFont g_sFontCm16;
- extern const tFont g_sFontCm16b;
- extern const tFont g_sFontCm16i;
- extern const tFont g_sFontCm18;
- extern const tFont g_sFontCm18b;
- extern const tFont g_sFontCm18i;
- extern const tFont g_sFontCm20;
- extern const tFont g_sFontCm20b;
- extern const tFont g_sFontCm20i;
- extern const tFont g_sFontCm22;
- extern const tFont g_sFontCm22b;
- extern const tFont g_sFontCm22i;
- extern const tFont g_sFontCm24;
- extern const tFont g_sFontCm24b;
- extern const tFont g_sFontCm24i;
- extern const tFont g_sFontCm26;
- extern const tFont g_sFontCm26b;
- extern const tFont g_sFontCm26i;
- extern const tFont g_sFontCm28;
- extern const tFont g_sFontCm28b;
- extern const tFont g_sFontCm28i;
- extern const tFont g_sFontCm30;
- extern const tFont g_sFontCm30b;
- extern const tFont g_sFontCm30i;
- extern const tFont g_sFontCm32;
- extern const tFont g_sFontCm32b;
- extern const tFont g_sFontCm32i;
- extern const tFont g_sFontCm34;
- extern const tFont g_sFontCm34b;
- extern const tFont g_sFontCm34i;
- extern const tFont g_sFontCm36;
- extern const tFont g_sFontCm36b;
- extern const tFont g_sFontCm36i;
- extern const tFont g_sFontCm38;
- extern const tFont g_sFontCm38b;
- extern const tFont g_sFontCm38i;
- extern const tFont g_sFontCm40;
- extern const tFont g_sFontCm40b;
- extern const tFont g_sFontCm40i;
- extern const tFont g_sFontCm42;
- extern const tFont g_sFontCm42b;
- extern const tFont g_sFontCm42i;
- extern const tFont g_sFontCm44;
- extern const tFont g_sFontCm44b;
- extern const tFont g_sFontCm44i;
- extern const tFont g_sFontCm46;
- extern const tFont g_sFontCm46b;
- extern const tFont g_sFontCm46i;
- extern const tFont g_sFontCm48;
- extern const tFont g_sFontCm48b;
- extern const tFont g_sFontCm48i;
- extern const tFont g_sFontCmsc12;
- extern const tFont g_sFontCmsc14;
- extern const tFont g_sFontCmsc16;
- extern const tFont g_sFontCmsc18;
- extern const tFont g_sFontCmsc20;
- extern const tFont g_sFontCmsc22;
- extern const tFont g_sFontCmsc24;
- extern const tFont g_sFontCmsc26;
- extern const tFont g_sFontCmsc28;
- extern const tFont g_sFontCmsc30;
- extern const tFont g_sFontCmsc32;
- extern const tFont g_sFontCmsc34;
- extern const tFont g_sFontCmsc36;
- extern const tFont g_sFontCmsc38;
- extern const tFont g_sFontCmsc40;
- extern const tFont g_sFontCmsc42;
- extern const tFont g_sFontCmsc44;
- extern const tFont g_sFontCmsc46;
- extern const tFont g_sFontCmsc48;
- extern const tFont g_sFontCmss12;
- extern const tFont g_sFontCmss12b;
- extern const tFont g_sFontCmss12i;
- extern const tFont g_sFontCmss14;
- extern const tFont g_sFontCmss14b;
- extern const tFont g_sFontCmss14i;
- extern const tFont g_sFontCmss16;
- extern const tFont g_sFontCmss16b;
- extern const tFont g_sFontCmss16i;
- extern const tFont g_sFontCmss18;
- extern const tFont g_sFontCmss18b;
- extern const tFont g_sFontCmss18i;
- extern const tFont g_sFontCmss20;
- extern const tFont g_sFontCmss20b;
- extern const tFont g_sFontCmss20i;
- extern const tFont g_sFontCmss22;
- extern const tFont g_sFontCmss22b;
- extern const tFont g_sFontCmss22i;
- extern const tFont g_sFontCmss24;
- extern const tFont g_sFontCmss24b;
- extern const tFont g_sFontCmss24i;
- extern const tFont g_sFontCmss26;
- extern const tFont g_sFontCmss26b;
- extern const tFont g_sFontCmss26i;
- extern const tFont g_sFontCmss28;
- extern const tFont g_sFontCmss28b;
- extern const tFont g_sFontCmss28i;
- extern const tFont g_sFontCmss30;
- extern const tFont g_sFontCmss30b;
- extern const tFont g_sFontCmss30i;
- extern const tFont g_sFontCmss32;
- extern const tFont g_sFontCmss32b;
- extern const tFont g_sFontCmss32i;
- extern const tFont g_sFontCmss34;
- extern const tFont g_sFontCmss34b;
- extern const tFont g_sFontCmss34i;
- extern const tFont g_sFontCmss36;
- extern const tFont g_sFontCmss36b;
- extern const tFont g_sFontCmss36i;
- extern const tFont g_sFontCmss38;
- extern const tFont g_sFontCmss38b;
- extern const tFont g_sFontCmss38i;
- extern const tFont g_sFontCmss40;
- extern const tFont g_sFontCmss40b;
- extern const tFont g_sFontCmss40i;
- extern const tFont g_sFontCmss42;
- extern const tFont g_sFontCmss42b;
- extern const tFont g_sFontCmss42i;
- extern const tFont g_sFontCmss44;
- extern const tFont g_sFontCmss44b;
- extern const tFont g_sFontCmss44i;
- extern const tFont g_sFontCmss46;
- extern const tFont g_sFontCmss46b;
- extern const tFont g_sFontCmss46i;
- extern const tFont g_sFontCmss48;
- extern const tFont g_sFontCmss48b;
- extern const tFont g_sFontCmss48i;
- extern const tFont g_sFontCmtt12;
- extern const tFont g_sFontCmtt14;
- extern const tFont g_sFontCmtt16;
- extern const tFont g_sFontCmtt18;
- extern const tFont g_sFontCmtt20;
- extern const tFont g_sFontCmtt22;
- extern const tFont g_sFontCmtt24;
- extern const tFont g_sFontCmtt26;
- extern const tFont g_sFontCmtt28;
- extern const tFont g_sFontCmtt30;
- extern const tFont g_sFontCmtt32;
- extern const tFont g_sFontCmtt34;
- extern const tFont g_sFontCmtt36;
- extern const tFont g_sFontCmtt38;
- extern const tFont g_sFontCmtt40;
- extern const tFont g_sFontCmtt42;
- extern const tFont g_sFontCmtt44;
- extern const tFont g_sFontCmtt46;
- extern const tFont g_sFontCmtt48;
- extern const tFont g_sFontFixed6x8;
- //*****************************************************************************
- //
- // Language identifiers supported by the string table processing functions.
- //
- //*****************************************************************************
- #define GrLangZhPRC 0x0804 // Chinese (PRC)
- #define GrLangZhTW 0x0404 // Chinese (Taiwan)
- #define GrLangEnUS 0x0409 // English (United States)
- #define GrLangEnUK 0x0809 // English (United Kingdom)
- #define GrLangEnAUS 0x0C09 // English (Australia)
- #define GrLangEnCA 0x1009 // English (Canada)
- #define GrLangEnNZ 0x1409 // English (New Zealand)
- #define GrLangFr 0x040C // French (Standard)
- #define GrLangDe 0x0407 // German (Standard)
- #define GrLangHi 0x0439 // Hindi
- #define GrLangIt 0x0410 // Italian (Standard)
- #define GrLangJp 0x0411 // Japanese
- #define GrLangKo 0x0412 // Korean
- #define GrLangEsMX 0x080A // Spanish (Mexico)
- #define GrLangEsSP 0x0C0A // Spanish (Spain)
- #define GrLangSwKE 0x0441 // Swahili (Kenya)
- #define GrLangUrIN 0x0820 // Urdu (India)
- #define GrLangUrPK 0x0420 // Urdu (Pakistan)
- //*****************************************************************************
- //
- //! Translates a 24-bit RGB color to a display driver-specific color.
- //!
- //! \param pDisplay is the pointer to the display driver structure for the
- //! display to operate upon.
- //! \param ulValue is the 24-bit RGB color. The least-significant byte is the
- //! blue channel, the next byte is the green channel, and the third byte is the
- //! red channel.
- //!
- //! This function translates a 24-bit RGB color into a value that can be
- //! written into the display's frame buffer in order to reproduce that color,
- //! or the closest possible approximation of that color.
- //!
- //! \return Returns the display-driver specific color.
- //
- //*****************************************************************************
- #define DpyColorTranslate(pDisplay, ulValue) \
- ((pDisplay)->pfnColorTranslate((pDisplay)->pvDisplayData, ulValue))
- //*****************************************************************************
- //
- //! Flushes cached drawing operations.
- //!
- //! \param pDisplay is the pointer to the display driver structure for the
- //! display to operate upon.
- //!
- //! This function flushes any cached drawing operations on a display.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define DpyFlush(pDisplay) \
- do \
- { \
- const tDisplay *pD = pDisplay; \
- pD->pfnFlush(pD->pvDisplayData); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Gets the height of the display.
- //!
- //! \param pDisplay is a pointer to the display driver structure for the
- //! display to query.
- //!
- //! This function determines the height of the display.
- //!
- //! \return Returns the height of the display in pixels.
- //
- //*****************************************************************************
- #define DpyHeightGet(pDisplay) \
- ((pDisplay)->usHeight)
- //*****************************************************************************
- //
- //! Draws a horizontal line on a display.
- //!
- //! \param pDisplay is the pointer to the display driver structure for the
- //! display to operate upon.
- //! \param lX1 is the starting X coordinate of the line.
- //! \param lX2 is the ending X coordinate of the line.
- //! \param lY is the Y coordinate of the line.
- //! \param ulValue is the color to draw the line.
- //!
- //! This function draws a horizontal line on a display. This assumes that
- //! clipping has already been performed, and that both end points of the line
- //! are within the extents of the display.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define DpyLineDrawH(pDisplay, lX1, lX2, lY, ulValue) \
- do \
- { \
- const tDisplay *pD = pDisplay; \
- pD->pfnLineDrawH(pD->pvDisplayData, lX1, lX2, lY, ulValue); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Draws a vertical line on a display.
- //!
- //! \param pDisplay is the pointer to the display driver structure for the
- //! display to operate upon.
- //! \param lX is the X coordinate of the line.
- //! \param lY1 is the starting Y coordinate of the line.
- //! \param lY2 is the ending Y coordinate of the line.
- //! \param ulValue is the color to draw the line.
- //!
- //! This function draws a vertical line on a display. This assumes that
- //! clipping has already been performed, and that both end points of the line
- //! are within the extents of the display.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define DpyLineDrawV(pDisplay, lX, lY1, lY2, ulValue) \
- do \
- { \
- const tDisplay *pD = pDisplay; \
- pD->pfnLineDrawV(pD->pvDisplayData, lX, lY1, lY2, ulValue); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Draws a pixel on a display.
- //!
- //! \param pDisplay is the pointer to the display driver structure for the
- //! display to operate upon.
- //! \param lX is the X coordinate of the pixel.
- //! \param lY is the Y coordinate of the pixel.
- //! \param ulValue is the color to draw the pixel.
- //!
- //! This function draws a pixel on a display. This assumes that clipping has
- //! already been performed.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define DpyPixelDraw(pDisplay, lX, lY, ulValue) \
- do \
- { \
- const tDisplay *pD = pDisplay; \
- pD->pfnPixelDraw(pD->pvDisplayData, lX, lY, ulValue); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Draws a horizontal sequence of pixels on a display.
- //!
- //! \param pDisplay is the pointer to the display driver structure for the
- //! display to operate upon.
- //! \param lX is the X coordinate of the first pixel.
- //! \param lY is the Y coordinate of the first pixel.
- //! \param lX0 is sub-pixel offset within the pixel data, which is valid for 1
- //! or 4 bit per pixel formats.
- //! \param lCount is the number of pixels to draw.
- //! \param lBPP is the number of bits per pixel; must be 1, 4, or 8.
- //! \param pucData is a pointer to the pixel data. For 1 and 4 bit per pixel
- //! formats, the most significant bit(s) represent the left-most pixel.
- //! \param pucPalette is a pointer to the palette used to draw the pixels.
- //!
- //! This function draws a horizontal sequence of pixels on a display, using the
- //! supplied palette. For 1 bit per pixel format, the palette contains
- //! pre-translated colors; for 4 and 8 bit per pixel formats, the palette
- //! contains 24-bit RGB values that must be translated before being written to
- //! the display.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define DpyPixelDrawMultiple(pDisplay, lX, lY, lX0, lCount, lBPP, pucData, \
- pucPalette) \
- do \
- { \
- const tDisplay *pD = pDisplay; \
- pD->pfnPixelDrawMultiple(pD->pvDisplayData, lX, lY, lX0, lCount, \
- lBPP, pucData, pucPalette); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Fills a rectangle on a display.
- //!
- //! \param pDisplay is the pointer to the display driver structure for the
- //! display to operate upon.
- //! \param pRect is a pointer to the structure describing the rectangle to
- //! fill.
- //! \param ulValue is the color to fill the rectangle.
- //!
- //! This function fills a rectangle on the display. This assumes that clipping
- //! has already been performed, and that all sides of the rectangle are within
- //! the extents of the display.
- //!
- //! \return None.
- //
- //*****************************************************************************
- #define DpyRectFill(pDisplay, pRect, ulValue) \
- do \
- { \
- const tDisplay *pD = pDisplay; \
- pD->pfnRectFill(pD->pvDisplayData, pRect, ulValue); \
- } \
- while(0)
- //*****************************************************************************
- //
- //! Gets the width of the display.
- //!
- //! \param pDisplay is a pointer to the display driver structure for the
- //! display to query.
- //!
- //! This function determines the width of the display.
- //!
- //! \return Returns the width of the display in pixels.
- //
- //*****************************************************************************
- #define DpyWidthGet(pDisplay) \
- ((pDisplay)->usWidth)
- //*****************************************************************************
- //
- //! Determines if a point lies within a given rectangle.
- //!
- //! \param pRect is a pointer to the rectangle which the point is to be checked
- //! against.
- //! \param lX is the X coordinate of the point to be checked.
- //! \param lY is the Y coordinate of the point to be checked.
- //!
- //! This function determines whether point (lX, lY) lies within the rectangle
- //! described by \e pRect.
- //!
- //! \return Returns 1 if the point is within the rectangle or 0 otherwise.
- //
- //*****************************************************************************
- #define GrRectContainsPoint(pRect, lX, lY) \
- ((((lX) >= (pRect)->sXMin) && ((lX) <= (pRect)->sXMax) && \
- ((lY) >= (pRect)->sYMin) && ((lY) <= (pRect)->sYMax)) ? 1 : 0)
- //*****************************************************************************
- //
- // Prototypes for the graphics library functions.
- //
- //*****************************************************************************
- extern void GrCircleDraw(const tContext *pContext, int lX, int lY,
- int lRadius);
- extern void GrCircleFill(const tContext *pContext, int lX, int lY,
- int lRadius);
- extern void GrContextClipRegionSet(tContext *pContext, tRectangle *pRect);
- extern void GrContextInit(tContext *pContext, const tDisplay *pDisplay);
- extern void GrImageDraw(const tContext *pContext,
- const unsigned char *pucImage, int lX, int lY);
- extern void GrLineDraw(const tContext *pContext, int lX1, int lY1, int lX2,
- int lY2);
- extern void GrLineDrawH(const tContext *pContext, int lX1, int lX2, int lY);
- extern void GrLineDrawV(const tContext *pContext, int lX, int lY1, int lY2);
- extern void GrOffScreen1BPPInit(tDisplay *pDisplay, unsigned char *pucImage,
- int lWidth, int lHeight);
- extern void GrOffScreen4BPPInit(tDisplay *pDisplay, unsigned char *pucImage,
- int lWidth, int lHeight);
- extern void GrOffScreen4BPPPaletteSet(tDisplay *pDisplay,
- unsigned int *pulPalette,
- unsigned int ulOffset,
- unsigned int ulCount);
- extern void GrOffScreen8BPPInit(tDisplay *pDisplay, unsigned char *pucImage,
- int lWidth, int lHeight);
- extern void GrOffScreen8BPPPaletteSet(tDisplay *pDisplay,
- unsigned int *pulPalette,
- unsigned int ulOffset,
- unsigned int ulCount);
- extern void GrOffScreen16BPPInit(tDisplay *pDisplay, unsigned char *pucImage,
- int lWidth, int lHeight);
- extern void GrOffScreen24BPPInit(tDisplay *pDisplay, unsigned char *pucImage,
- int lWidth, int lHeight);
- extern void GrRectDraw(const tContext *pContext, const tRectangle *pRect);
- extern void GrRectFill(const tContext *pContext, const tRectangle *pRect);
- extern void GrStringDraw(const tContext *pContext, const char *pcString,
- int lLength, int lX, int lY,
- unsigned int bOpaque);
- extern int GrStringWidthGet(const tContext *pContext, const char *pcString,
- int lLength);
- extern void GrStringTableSet(const void *pvTable);
- unsigned int GrStringLanguageSet(unsigned short usLangID);
- unsigned int GrStringGet(int iIndex, char *pcData, unsigned int ulSize);
- extern int GrRectOverlapCheck(tRectangle *psRect1, tRectangle *psRect2);
- extern int GrRectIntersectGet(tRectangle *psRect1, tRectangle *psRect2,
- tRectangle *psIntersect);
- //*****************************************************************************
- //
- // Mark the end of the C bindings section for C++ compilers.
- //
- //*****************************************************************************
- #ifdef __cplusplus
- }
- #endif
- //*****************************************************************************
- //
- // Close the Doxygen group.
- //! @}
- //
- //*****************************************************************************
- #endif // __GRLIB_H__
|