MHEG5  18.9.0
MHEG5 Documentation
mheg5_keypress.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2013 Ocean Blue Software Ltd
4  *
5  * This file is part of a DTVKit Software Component
6  * You are permitted to copy, modify or distribute this file subject to the terms
7  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
8  *
9  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
10  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * If you or your organisation is not a member of DTVKit then you have access
14  * to this source code outside of the terms of the licence agreement
15  * and you are expected to delete this and any associated files immediately.
16  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
17  *******************************************************************************/
25 #ifndef _MHEG5_KEYPRESS_H
26 #define _MHEG5_KEYPRESS_H
27 
28 #include "techtype.h"
29 
30 /*---Constant and macro definitions for public use-----------------------------*/
31 
32 /*---Enumerations for public use-----------------------------------------------*/
33 
34 /* User interface key presses given to MHEG5 engine */
35 typedef enum
36 {
70 
71  /* Last item is not a real key and should not be passed as a key press
72  * It is only useful as definitive value for total number of keys */
74 } E_MHEG5_KEY;
75 
76 /*---Global type defs for public use-------------------------------------------*/
77 
78 /*---Global Function prototypes for public use---------------------------------*/
79 
87 
95 
109 
117 
124 
125 
126 #endif // _MHEG5_KEYPRESS_H
void MHEG5_KeySupportEnabled(E_MHEG5_KEY key)
Key press support is enabled. May be called after the key has been disabled by MHEG5_KeySupportDisabl...
Definition: mh5keypress.c:1293
void MHEG5_KeySupportDisabled(E_MHEG5_KEY key)
Inform MHEG5 engine that key is not supported by the platform or product. By default MHEG5 engine ass...
Definition: mh5keypress.c:1280
E_MHEG5_KEY
System Wide Global Technical Data Type Definitions.
BOOLEAN MHEG5_NotifyKeyPress(E_MHEG5_KEY key)
Notify MHEG5 engine of a key press. If FALSE is returned, the external application may use the key...
Definition: mh5keypress.c:1214
U8BIT BOOLEAN
Definition: techtype.h:99
BOOLEAN MHEG5_IsPromotionalLinkingEnabled(void)
This function is relevant to PVR products that support NativeApplicationExtension for broadcast-trigg...
Definition: mh5keypress.c:1269
BOOLEAN MHEG5_IsKeyNeeded(E_MHEG5_KEY key)
Enquire from MHEG5 engine about whether a key is needed, without actually passing the key to it...
Definition: mh5keypress.c:470