123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /********************************************************************
- ** File Name: app_guiobj_mute.h
- **
- ** File Description: The header file of dvb adjust gui object
- **
- ** Copyright(c) 2013 Sunplus-prof Technologies - All Rights Reserved
- **
- ** Date Author Modification
- ** 2013/10/28 bingsheng.sun Create
- ********************************************************************/
- #ifndef _COMMON_GUI_OBJECT_MUTE_H_
- #define _COMMON_GUI_OBJECT_MUTE_H_
- typedef enum
- {
- SHOW_MUTE_ON_TV = 0,
- #ifdef CONFIG_MEDIA_ENABLE
- SHOW_MUTE_ON_FS,
- SHOW_MUTE_ON_FILEBROWSER,
- #endif
- #ifdef CONFIG_SUPPORT_NETAPP
- SHOW_MUTE_ON_NET,
- #endif
- SHOW_MUTE_MAX,
- }ShowMute_Param_t;
- /********************************************************************
- Extern Global Functions
- ********************************************************************/
- /*****************************************************************************
- ** FUNCTION : APP_GUIOBJ_Mute_MuteKeyHandler
- **
- ** DESCRIPTION :
- ** mute key handler
- **
- ** PARAMETERS :
- **
- ** RETURN VALUES:
- ** None
- *****************************************************************************/
- void APP_GUIOBJ_Mute_MuteKeyHandler(void);
- void APP_GUIOBJ_Mute_RefreshMuteIcon(void);
- #endif
|