12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /********************************************************************
- ** File Name: app_guiobj_banner_guiobj.h
- **
- ** File Description: The header file of picture sound and sleep timer banner gui object
- **
- ** Copyright(c) 2009 Sunplus Technologies - All Rights Reserved
- **
- ** History Information Description
- ** Date Author Modification
- ** 2010/04/20 yj.li Create
- ********************************************************************/
- #ifndef _APP_BANNER_GUIOBJ_H_
- #define _APP_BANNER_GUIOBJ_H_
- /********************************************************************
- Including Files
- ********************************************************************/
- #include "gobj_datastruct.h"
- #include "board_config.h"
- #include "font_common.h"
- /********************************************************************
- Type definitions
- ********************************************************************/
- typedef struct _aspect_string
- {
- APP_Video_AspectRatioType_e eAspectType;
- String_id_t StringID;
- }ASPECT_STRING;
- #ifdef CELLO_REMOTE_KEY
- enum
- {
- APP_BANNER_PIC_MODE,
- APP_BANNER_ASPECT_MODE,
- APP_BANNER_SOUND_MODE,
- APP_BANNER_MODE_MAX,
- };
- #endif
- /********************************************************************
- Extern Global Functions
- ********************************************************************/
- #endif
|