Input Plug-in interfaces
|
|||||||||||||||||||||||||||||||||||||||||||||||
Functions | |
| void | AppUIWmPluginEventNotify (AppUIWmEventID evID, AppUIWmPluginData data) |
| Event notification from the input plug-in. | |
| int | AppUIWmStartEventPlugin (void) |
| Request to initialise and start sending input plug-in events. | |
| int | AppUIWmStopEventPlugin (void) |
| Request that input plug-in stop sending events. | |
| void AppUIWmPluginEventNotify | ( | AppUIWmEventID | evID, | |
| AppUIWmPluginData | data | |||
| ) |
Event notification from the input plug-in.
Each LiMo member's input plug-in uses this API to notify the window manager that an event has been received.
NOTE: The 'data' is mandatory. If an event does not include additional data, The 'length' data member shall be set to 0.
| [in] | evID | Type of event. |
| [in] | data | Input plug-in additional information. |
| int AppUIWmStartEventPlugin | ( | void | ) |
Request to initialise and start sending input plug-in events.
Each LiMo input plug-in will need to implement this function.
| int AppUIWmStopEventPlugin | ( | void | ) |
Request that input plug-in stop sending events.
Each LiMo input plug-in will need to implement this function.
1.5.4