Tizen Native API
4.0
|
Widget application API.
#include <widget_app.h> #include <widget_app_efl.h>
The Widget Application API provides functions for handling Tizen widget application state changes or system events. Tizen widget application can be shown in the home screen. This API supports making multiple widget instances per an application. This API provides interfaces for the following categories:
As for Tizen widget application states, it is very simple and somewhat similar to Tizen service application states.
Callback | Description |
---|---|
widget_app_create_cb() | Hook to take necessary actions before the main event loop starts. Your UI generation code should be placed here so that you do not miss any events from your application UI. Please make sure that you make a class handle and return it. It will be used when the event for creating widget instance is received. You can initialize shared resources for widget instances in this callback function as well. |
widget_app_terminate_cb() | Hook to take necessary actions when your application is terminating. Your application should release all resources, especially any allocations and shared resources must be freed here so that other running applications can fully use these shared resources. |
Please refer to the following state diagram to see the possible transitions and callbacks that are called while transition.
Tizen widget applications can receive system events with widget_app_add_event_handler() API. The type of system events that can be received are same as Tizen UI applications except for APP_EVENT_DEVICE_ORIENTATION_CHANGED. See Application. The event for APP_EVENT_DEVICE_ORIENTATION_CHANGED is not supported in this module.
As for Tizen widget instance states, it is somewhat similar to Tizen application states.
Callback | Description |
---|---|
widget_instance_create_cb() | Called after widget instance is created. In this callback, you can initialize resources for this instance. If parameter 'content' is not NULL, you should restore the previous status. |
widget_instance_destroy_cb() | Called before widget instance is destroyed. In this callback, you can finalize resources for this instance. |
widget_instance_pause_cb() | Called when the widget is invisible. The paused instance may be destroyed by framework |
widget_instance_resume_cb() | Called when the widget is visible. The callback function is called when the widget is visible. |
widget_instance_resize_cb() | Called before the widget size is changed. The callback function is called before the widget size is changed. |
widget_instance_update_cb() | Called when the event for updating widget is received. The callback function is called when the event for updating widget is received. |
Please refer to the following state diagram to see the possible transitions and callbacks that are called while transition.
This API is related with the following feature:
Functions | |
int | widget_app_main (int argc, char **argv, widget_app_lifecycle_callback_s *callback, void *user_data) |
Runs the main loop of the application until widget_app_exit() is called. | |
int | widget_app_exit (void) |
Exits the main loop of the application. | |
int | widget_app_terminate_context (widget_context_h context) |
Finishes context for the widget instance. | |
int | widget_app_foreach_context (widget_context_cb callback, void *data) |
Retrieves all widget contexts in this application. | |
int | widget_app_add_event_handler (app_event_handler_h *event_handler, app_event_type_e event_type, app_event_cb callback, void *user_data) |
Adds the system event handler. | |
int | widget_app_remove_event_handler (app_event_handler_h event_handler) |
Removes registered event handler. | |
const char * | widget_app_get_id (widget_context_h context) |
Gets a widget instance id. | |
widget_class_h | widget_app_class_create (widget_instance_lifecycle_callback_s callback, void *user_data) |
Makes a class for widget instances. | |
int | widget_app_context_set_tag (widget_context_h context, void *tag) |
Sets a tag in the context. | |
int | widget_app_context_get_tag (widget_context_h context, void **tag) |
Gets the tag in the context. | |
int | widget_app_context_set_content_info (widget_context_h context, bundle *content_info) |
Sets the content info to the widget. | |
int | widget_app_context_set_title (widget_context_h context, const char *title) |
Sends the title to the widget. | |
widget_class_h | widget_app_class_add (widget_class_h widget_class, const char *class_id, widget_instance_lifecycle_callback_s callback, void *user_data) |
Adds an additional widget class for multi-class of widget instantiation. | |
int | widget_app_get_elm_win (widget_context_h context, Evas_Object **win) |
Gets an Evas object for the widget. | |
Typedefs | |
typedef enum widget_app_destroy_type | widget_app_destroy_type_e |
Enumeration for destroy type of widget instance. | |
typedef struct _widget_class * | widget_class_h |
The widget class handle. | |
typedef struct _widget_context * | widget_context_h |
The widget context handle. | |
typedef int(* | widget_instance_create_cb )(widget_context_h context, bundle *content, int w, int h, void *user_data) |
Called when the widget instance starts. | |
typedef int(* | widget_instance_destroy_cb )(widget_context_h context, widget_app_destroy_type_e reason, bundle *content, void *user_data) |
Called before the widget instance is destroyed. | |
typedef int(* | widget_instance_pause_cb )(widget_context_h context, void *user_data) |
Called when the widget is invisible. | |
typedef int(* | widget_instance_resume_cb )(widget_context_h context, void *user_data) |
Called when the widget is visible. | |
typedef int(* | widget_instance_resize_cb )(widget_context_h context, int w, int h, void *user_data) |
Called before the widget size is changed. | |
typedef int(* | widget_instance_update_cb )(widget_context_h context, bundle *content, int force, void *user_data) |
Called when the event for updating widget is received. | |
typedef widget_class_h(* | widget_app_create_cb )(void *user_data) |
Called when the application starts. | |
typedef void(* | widget_app_terminate_cb )(void *user_data) |
Called when the application's main loop exits. | |
typedef bool(* | widget_context_cb )(widget_context_h context, void *data) |
Called for each widget context. |
typedef widget_class_h(* widget_app_create_cb)(void *user_data) |
Called when the application starts.
The callback function is called before the main loop of the application starts. In this callback, you can initialize resources which can be shared among widget instances. This function should return the handle for widget class so that it will be used for making instances of widget.
[in] | user_data | The user data passed from the callback registration function |
static widget_class_h __widget_app_created(void *user_data) { widget_instance_lifecycle_callback_s callback = { .... }; return widget_app_class_create(callback); }
typedef enum widget_app_destroy_type widget_app_destroy_type_e |
Enumeration for destroy type of widget instance.
typedef void(* widget_app_terminate_cb)(void *user_data) |
Called when the application's main loop exits.
This callback function is called once after the main loop of the application exits. You should release the application's resources in this function.
[in] | user_data | The user data passed from the callback registration function |
typedef struct _widget_class* widget_class_h |
The widget class handle.
typedef bool(* widget_context_cb)(widget_context_h context, void *data) |
Called for each widget context.
This function will be called in the function of widget_app_foreach_context repeatedly.
[in] | context | The context for widget instance |
[in] | data | The data for caller |
true
to continue with the next iteration of the loop, otherwise false
to break out of the loop typedef struct _widget_context* widget_context_h |
The widget context handle.
typedef int(* widget_instance_create_cb)(widget_context_h context, bundle *content, int w, int h, void *user_data) |
Called when the widget instance starts.
The callback function is called after widget instance is created. In this callback, you can initialize resources for this instance.
[in] | context | The context of widget instance |
[in] | content | The data set for the previous status |
[in] | w | The pixel value for widget width |
[in] | h | The pixel value for widget height |
[in] | user_data | The user data passed from widget_app_class_create function |
typedef int(* widget_instance_destroy_cb)(widget_context_h context, widget_app_destroy_type_e reason, bundle *content, void *user_data) |
Called before the widget instance is destroyed.
The callback function is called before widget instance is destroyed. In this callback, you can finalize resources for this instance. If reason is not WIDGET_APP_DESTROY_TYPE_TEMPORARY, it should store the current status by using incoming bundle.
[in] | context | The context of widget instance |
[in] | reason | The reason for destruction |
[in,out] | content | The data set to save |
[in] | user_data | The user data passed from widget_app_class_create function |
typedef int(* widget_instance_pause_cb)(widget_context_h context, void *user_data) |
Called when the widget is invisible.
The callback function is called when the widget is invisible. The paused instance may be destroyed by framework.
[in] | context | The context of widget instance |
[in] | user_data | The user data passed from widget_app_class_create function |
typedef int(* widget_instance_resize_cb)(widget_context_h context, int w, int h, void *user_data) |
Called before the widget size is changed.
The callback function is called before the widget size is changed.
[in] | context | The context of widget instance |
[in] | w | The pixel value for widget width |
[in] | h | The pixel value for widget height |
[in] | user_data | The user data passed from widget_app_class_create function |
typedef int(* widget_instance_resume_cb)(widget_context_h context, void *user_data) |
Called when the widget is visible.
The callback function is called when the widget is visible.
[in] | context | The context of widget instance |
[in] | user_data | The user data passed from widget_app_class_create function |
typedef int(* widget_instance_update_cb)(widget_context_h context, bundle *content, int force, void *user_data) |
Called when the event for updating widget is received.
The callback function is called when the event for updating widget is received.
[in] | context | The context of widget instance |
[in] | content | The data set for updating this widget. It will be provided by requester. Requester can use widget_service_trigger_update() |
[in] | force | Although the widget is paused, if it is TRUE, the widget can be updated |
[in] | user_data | The user data passed from widget_app_class_create function |
int widget_app_add_event_handler | ( | app_event_handler_h * | event_handler, |
app_event_type_e | event_type, | ||
app_event_cb | callback, | ||
void * | user_data | ||
) |
Adds the system event handler.
[out] | event_handler | The event handler |
[in] | event_type | The system event type. APP_EVENT_DEVICE_ORIENTATION_CHANGED is not supported |
[in] | callback | The callback function |
[in] | user_data | The user data to be passed to the callback function |
WIDGET_ERROR_NONE | Successful |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_OUT_OF_MEMORY | Out of memory |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_FAULT | Unrecoverable error |
widget_class_h widget_app_class_add | ( | widget_class_h | widget_class, |
const char * | class_id, | ||
widget_instance_lifecycle_callback_s | callback, | ||
void * | user_data | ||
) |
Adds an additional widget class for multi-class of widget instantiation.
[in] | widget_class | The result of widget_app_class_create() |
[in] | class_id | The class id of provider |
[in] | callback | The set of lifecycle callbacks |
[in] | user_data | The user data to be passed to the callback functions |
WIDGET_ERROR_NONE | Successfully added |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_OUT_OF_MEMORY | Out of memory |
widget_class_h widget_app_class_create | ( | widget_instance_lifecycle_callback_s | callback, |
void * | user_data | ||
) |
Makes a class for widget instances.
[in] | callback | The set of lifecycle callbacks |
[in] | user_data | The user data to be passed to the callback functions |
WIDGET_ERROR_NONE | Successfully added |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_OUT_OF_MEMORY | Out of memory |
int widget_app_context_get_tag | ( | widget_context_h | context, |
void ** | tag | ||
) |
Gets the tag in the context.
[in] | context | The context for widget instance |
[out] | tag | The value to get |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_FAULT | Unrecoverable error |
int widget_app_context_set_content_info | ( | widget_context_h | context, |
bundle * | content_info | ||
) |
Sets the content info to the widget.
[in] | context | The context for widget instance |
[in] | content_info | The data set to save |
WIDGET_ERROR_NONE | Successfully sent |
WIDGET_ERROR_INVALID_PARAMETER | Invalid argument |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_OUT_OF_MEMORY | Out of memory |
WIDGET_ERROR_FAULT | Unrecoverable error |
int widget_app_context_set_tag | ( | widget_context_h | context, |
void * | tag | ||
) |
Sets a tag in the context.
[in] | context | The context for widget instance |
[in] | tag | The value to save |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_FAULT | Unrecoverable error |
int widget_app_context_set_title | ( | widget_context_h | context, |
const char * | title | ||
) |
Sends the title to the widget.
[in] | context | The context for widget instance |
[in] | title | When an accessibility mode is turned on, this string will be read |
WIDGET_ERROR_NONE | Successfully sent |
WIDGET_ERROR_INVALID_PARAMETER | Invalid argument |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_OUT_OF_MEMORY | Out of memory |
WIDGET_ERROR_FAULT | Unrecoverable error |
int widget_app_exit | ( | void | ) |
Exits the main loop of the application.
The main loop of the application stops and widget_app_terminate_cb() is invoked.
WIDGET_ERROR_NONE | Successful |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_FAULT | Unrecoverable error |
int widget_app_foreach_context | ( | widget_context_cb | callback, |
void * | data | ||
) |
Retrieves all widget contexts in this application.
[in] | callback | The iteration callback function |
[in] | data | The data for the callback function |
WIDGET_ERROR_NONE | Successful |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_CANCELED | The iteration is canceled |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_FAULT | Unrecoverable error |
int widget_app_get_elm_win | ( | widget_context_h | context, |
Evas_Object ** | win | ||
) |
Gets an Evas object for the widget.
[in] | context | The context for widget instance |
[out] | win | evas object for window |
WIDGET_ERROR_NONE | Successful |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_FAULT | Failed to make evas object |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
const char* widget_app_get_id | ( | widget_context_h | context | ) |
Gets a widget instance id.
[in] | context | The context for widget instance |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_FAULT | Unrecoverable error |
int widget_app_main | ( | int | argc, |
char ** | argv, | ||
widget_app_lifecycle_callback_s * | callback, | ||
void * | user_data | ||
) |
Runs the main loop of the application until widget_app_exit() is called.
[in] | argc | The argument count |
[in] | argv | The argument vector |
[in] | callback | The set of callback functions to handle application events |
[in] | user_data | The user data to be passed to the callback functions |
WIDGET_ERROR_NONE | Successful |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_FAULT | Unrecoverable error |
int widget_app_remove_event_handler | ( | app_event_handler_h | event_handler | ) |
Removes registered event handler.
[in] | event_handler | The event handler |
WIDGET_ERROR_NONE | Successful |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_FAULT | Unrecoverable error |
int widget_app_terminate_context | ( | widget_context_h | context | ) |
Finishes context for the widget instance.
[in] | context | The context for widget instance |
WIDGET_ERROR_NONE | Successful |
WIDGET_ERROR_INVALID_PARAMETER | Invalid parameter |
WIDGET_ERROR_NOT_SUPPORTED | Not supported |
WIDGET_ERROR_FAULT | Unrecoverable error |