DVBCore  1.0
Open source DVB engine
platform/inc/stbhwosd.h
Go to the documentation of this file.
00001 /*******************************************************************************
00002  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
00003  * Copyright © 2004 Ocean Blue Software Ltd
00004  *
00005  * This file is part of a DTVKit Software Component
00006  * You are permitted to copy, modify or distribute this file subject to the terms
00007  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
00008  * 
00009  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
00010  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
00011  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
00012  * 
00013  * If you or your organisation is not a member of DTVKit then you have access
00014  * to this source code outside of the terms of the licence agreement
00015  * and you are expected to delete this and any associated files immediately.
00016  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
00017  *******************************************************************************/
00024 // pre-processor mechanism so multiple inclusions don't cause compilation error
00025 
00026 #ifndef _STBHWOSD_H
00027 #define _STBHWOSD_H
00028 
00029 #include "osdtype.h"
00030 
00031 //---Constant and macro definitions for public use-----------------------------
00032 
00033 //---Enumerations for public use-----------------------------------------------
00034 typedef enum e_blit_op
00035 {
00036    STB_BLIT_COPY,
00037    STB_BLIT_A_BLEND
00038 } E_BLIT_OP;
00039 
00040 //---Global type defs for public use-------------------------------------------
00041 
00042 //---Global Function prototypes for public use---------------------------------
00043 
00048 void STB_OSDInitialise(U8BIT num_max_regions);
00049 
00055 BOOLEAN STB_OSDEnable(BOOLEAN enable);
00056 
00062 BOOLEAN STB_OSDDisableUIRegion(void);
00063 
00069 BOOLEAN STB_OSDEnableUIRegion(void);
00070 
00075 void STB_OSDSetTransparency(U8BIT trans);
00076 
00081 U8BIT STB_OSDGetTransparency(void);
00082 
00090 void STB_OSDSetPalette(U16BIT index, U16BIT num, U32BIT *trgb);
00091 
00097 U32BIT* STB_OSDGetCurrentPalette(void);
00098 
00108 void STB_OSDDrawBitmap(U16BIT x, U16BIT y, U16BIT width, U16BIT height, U8BIT bits, U8BIT *data);
00109 
00119 void STB_OSDReadBitmap(U16BIT x, U16BIT y, U16BIT width, U16BIT height, U8BIT bits, U8BIT *data);
00120 
00127 void STB_OSDDrawPixel(U16BIT x, U16BIT y, U32BIT colour);
00128 
00135 void STB_OSDReadPixel(U16BIT x, U16BIT y, U32BIT *colour);
00136 
00144 void STB_OSDDrawHLine(U16BIT x, U16BIT y, U16BIT width, U32BIT colour);
00145 
00153 void STB_OSDDrawVLine(U16BIT x, U16BIT y, U16BIT height, U32BIT colour);
00154 
00165 void STB_OSDDrawRectangle(U16BIT x, U16BIT y, U16BIT width, U16BIT height, U32BIT colour,
00166    U8BIT thick, BOOLEAN fill);
00167 
00172 void STB_OSDClear(U32BIT colour);
00173 
00179 void STB_OSDFill(U32BIT colour, E_BLIT_OP bflg);
00180 
00186 void STB_OSDGetSize(U16BIT *width, U16BIT *height);
00187 
00191 void STB_OSDUpdate(void);
00192 
00198 void STB_OSDRegisterRefreshHandler(void (*func)(void));
00199 
00204 void STB_OSDRegisterInUseCallback(U8BIT (*func)(void));
00205 
00211 void STB_OSDRefreshDisplayCallback(void);
00212 
00222 void STB_OSDResize(BOOLEAN scaling, U16BIT width, U16BIT height, U16BIT x_offset, U16BIT y_offset);
00223 
00224 
00225 /* Subtitles and teletext OSD functions*/
00226 
00233 void STB_OSDSetRegionDisplaySize(U16BIT width, U16BIT height);
00234 
00242 void* STB_OSDCreateRegion(U16BIT width, U16BIT height, U8BIT depth);
00243 
00248 void STB_OSDDestroyRegion(void *handle);
00249 
00255 void STB_OSDSetYCrCbPalette(void *region_handle, U32BIT *tycrcb);
00256 
00263 void STB_OSDMoveRegion(void *handle, U16BIT x, U16BIT y);
00264 
00269 void STB_OSDHideRegion(void *handle);
00270 
00275 void STB_OSDShowRegion(void *handle);
00276 
00287 void STB_OSDDrawBitmapInRegion(void *handle, U16BIT x, U16BIT y, U16BIT w, U16BIT h, U8BIT *bitmap, BOOLEAN non_modifying_colour);
00288 
00294 void STB_OSDRegionToRegionCopy(void *handle_new, void *handle_orig);
00295 
00301 void STB_OSDFillRegion(void *handle, U8BIT colour);
00302 
00312 void STB_OSDRegionFillRect(void *handle, U16BIT left, U16BIT top, U16BIT width, U16BIT height, U8BIT colour);
00313 
00317 void STB_OSDUpdateRegions(void);
00318 
00324 void STB_OSDSetRGBPalette(void *handle, U32BIT *trgb);
00325 
00326 
00327 /* -------------------------- MHEG OSD functions ---------------------------------*/
00328 
00336 void STB_OSDMhegSetPalette(U16BIT index, U16BIT number, const U32BIT *argb);
00337 
00348 void* STB_OSDMhegSetResolution(U16BIT width, U16BIT height, U8BIT bits);
00349 
00365 void* STB_OSDMhegCreateSurface( U16BIT width, U16BIT height,
00366    BOOLEAN init, U32BIT colour );
00367 
00380 void* STB_OSDMhegLockBuffer( void *surface, U32BIT *pPitch );
00381 
00387 void STB_OSDMhegUnlockBuffer( void *surface );
00388 
00395 void STB_OSDMhegDestroySurface( void *surface );
00396 
00416 void STB_OSDMhegBlitBitmap( void *surface, S_RECTANGLE *pRect, U32BIT pitch,
00417    U16BIT screen_x, U16BIT screen_y, E_BLIT_OP bflg );
00418 
00429 void STB_OSDMhegFillRectangle( S_RECTANGLE *pRect, U32BIT colour, E_BLIT_OP bflg );
00430 
00441 void STB_OSDMhegBlitStretch( S_RECTANGLE *pSrcRect, void *src_surf,
00442    S_RECTANGLE *pDstRect, void *dst_surf, U8BIT alpha_blend );
00443 
00454 void STB_OSDMhegFillSurface( void *surface, S_RECTANGLE *pRect, U32BIT colour,
00455    E_BLIT_OP bflg );
00456 
00462 void STB_OSDMhegUpdate(void);
00463 
00467 void STB_OSDMhegClear(void);
00468 
00469 #endif //  _STBHWOSD_H
00470 
00471 //*****************************************************************************
00472 // End of file
00473 //*****************************************************************************
00474 
 All Data Structures Files Functions Typedefs Defines