12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /********************************************************************
- ** File Name: spal_sm_picture.h
- **
- ** File Description: The header file of picture sub menu state machine
- **
- ** Copyright(c) 2008 Sunplus Technologies - All Rights Reserved
- **
- ** History Information Description
- ** Date Author Modification
- **
- ********************************************************************/
- #ifndef __APP_GUIOBJ_TELETEXT_H__
- #define __APP_GUIOBJ_TELETEXT_H__
- /********************************************************************
- Including Files
- ********************************************************************/
- #ifdef SUPPORT_OPEN_MULT_TTX /*jilin 081225 added for mantis bug 0045103 +*/
- #include "app_com_list.h"
- #endif
- /********************************************************************
- Macros
- ********************************************************************/
- #ifdef SUPPORT_OPEN_MULT_TTX /*jilin 081225 added for mantis bug 0045103 +*/
- #define TELETEXT_MAX_PAGE_SIZE 5
- #endif
- /********************************************************************
- Type definitions
- ********************************************************************/
- #ifdef SUPPORT_OPEN_MULT_TTX /*jilin 081225 added for mantis bug 0045103 +*/
- typedef enum _teletext_gui_update_region {
- TELETEXT_GUI_UPDATE_PAGE = 0,
- TELETEXT_GUI_UPDATE_LSTHEILIGHT_ITEM,
- TELETEXT_GUI_UPDATE_HEILIGHT_ITEM,
- } TELETEXT_GUI_UPDATE_REGION;
- typedef struct _teletext_disp_data_t {
- SPAL_COM_LIST stList;
- UINT16 u16Buffer[6];
- } TELETEXT_DISP_DATA_t;
- #endif /*jilin 081225 added for mantis bug 0045103 -*/
- #endif
|