| 1 | /**************************************************************************** |
|---|
| 2 | * NAME: App_OSD_RRT.h |
|---|
| 3 | *---------------------------------------------------------------------------- |
|---|
| 4 | * Copyright (c) DIGITAL STREAM Technology Inc. |
|---|
| 5 | *---------------------------------------------------------------------------- |
|---|
| 6 | * CREATED_BY: Yong Dae Park |
|---|
| 7 | * CREATION_DATE: 2010/04/19 |
|---|
| 8 | * $Author: x2silo $ |
|---|
| 9 | * $Revision: 1.0 $ |
|---|
| 10 | * $Date: $ 2010.04.19 |
|---|
| 11 | *---------------------------------------------------------------------------- |
|---|
| 12 | * PURPOSE: |
|---|
| 13 | * - App_OSD_RRT.c header file |
|---|
| 14 | *****************************************************************************/ |
|---|
| 15 | |
|---|
| 16 | #ifndef __APP_OSD_RRT_H__ |
|---|
| 17 | #define __APP_OSD_RRT_H__ |
|---|
| 18 | |
|---|
| 19 | /*_____ I N C L U D E __________________________________________*/ |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | #if COMMENT |
|---|
| 26 | ____Overview____(){} |
|---|
| 27 | #endif |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | /*_____ D E F I N I T I O N ____________________________________*/ |
|---|
| 34 | |
|---|
| 35 | #if COMMENT |
|---|
| 36 | ____Config____(){} |
|---|
| 37 | #endif |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | #if COMMENT |
|---|
| 44 | ____Types____(){} |
|---|
| 45 | #endif |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | |
|---|
| 49 | |
|---|
| 50 | |
|---|
| 51 | #if COMMENT |
|---|
| 52 | ____Variables____(){} |
|---|
| 53 | #endif |
|---|
| 54 | |
|---|
| 55 | |
|---|
| 56 | |
|---|
| 57 | |
|---|
| 58 | |
|---|
| 59 | #if COMMENT |
|---|
| 60 | ____NvParam____(){} |
|---|
| 61 | #endif |
|---|
| 62 | |
|---|
| 63 | |
|---|
| 64 | |
|---|
| 65 | |
|---|
| 66 | |
|---|
| 67 | /*_____ F U N C T I O N ________________________________________*/ |
|---|
| 68 | |
|---|
| 69 | #if COMMENT |
|---|
| 70 | ____Function____(){} |
|---|
| 71 | #endif |
|---|
| 72 | |
|---|
| 73 | /* us rrt */ |
|---|
| 74 | void AppO_DrawUsRRT(int row, int col, BOOL bredraw); |
|---|
| 75 | |
|---|
| 76 | void AppO_EraseUsRRT(void); |
|---|
| 77 | |
|---|
| 78 | void AppO_ToggleUsRRT(void); |
|---|
| 79 | |
|---|
| 80 | BOOL AppO_IsValidUsPos(int row, int col); |
|---|
| 81 | |
|---|
| 82 | BOOL AppO_RestoreOrigUsRating(void); |
|---|
| 83 | |
|---|
| 84 | void AppO_InitRating(void); |
|---|
| 85 | |
|---|
| 86 | /* mpaa rrt */ |
|---|
| 87 | void AppO_DrawMpaaRRT(int idx, BOOL bredraw); |
|---|
| 88 | |
|---|
| 89 | void AppO_EraseMpaaRRT(void); |
|---|
| 90 | |
|---|
| 91 | void AppO_ToggleMpaaRRT(int idx); |
|---|
| 92 | |
|---|
| 93 | /* set drrt */ |
|---|
| 94 | BOOL AppO_InitSetDrating(void); |
|---|
| 95 | |
|---|
| 96 | void AppO_DrawSetDrating(UINT32 direction, BOOL bdraw_bg); |
|---|
| 97 | |
|---|
| 98 | void AppO_ToggleSetDrating(void); |
|---|
| 99 | |
|---|
| 100 | void AppO_EraseSetDrating(void); |
|---|
| 101 | |
|---|
| 102 | /* update drrt */ |
|---|
| 103 | void AppO_DrawDrrtUpdate(int progress, BOOL bdraw_bg); |
|---|
| 104 | |
|---|
| 105 | void AppO_EraseDrrtUpdate(void); |
|---|
| 106 | |
|---|
| 107 | /* no drrt */ |
|---|
| 108 | void AppO_DrawNoDrrtWarning(void); |
|---|
| 109 | |
|---|
| 110 | void AppO_EraseNoDrrtWarning(void); |
|---|
| 111 | |
|---|
| 112 | |
|---|
| 113 | /* warning drrt */ |
|---|
| 114 | void AppO_DrawDrrtUpdateWarning(BOOL byes, BOOL bdraw_bg); |
|---|
| 115 | |
|---|
| 116 | void AppO_EraseDrrtUpdateWarning(void); |
|---|
| 117 | |
|---|
| 118 | void AppO_CompleteDrrtUpdate(void); |
|---|
| 119 | |
|---|
| 120 | void AppO_FailedDrrtUpdate(void); |
|---|
| 121 | |
|---|
| 122 | /* change pin */ |
|---|
| 123 | void AppO_DrawChangePin(void); |
|---|
| 124 | |
|---|
| 125 | void AppO_UpdateChangePin(int row, int pos); |
|---|
| 126 | |
|---|
| 127 | void AppO_EraseChangePin(void); |
|---|
| 128 | |
|---|
| 129 | /* rating warning */ |
|---|
| 130 | void App_OSD_DrawRatingBlock(UINT16 *code); |
|---|
| 131 | |
|---|
| 132 | void App_OSD_EraseRatingBlock(); |
|---|
| 133 | |
|---|
| 134 | #endif /* __APP_OSD_RRT_H__ */ |
|---|