1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
|
/*
* Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __TIZEN_APPFW_APP_H__
#define __TIZEN_APPFW_APP_H__
#include <app_control.h>
#include <app_common.h>
#include <app_i18n.h>
#include <app_types.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @file app.h
*/
/**
* @addtogroup CAPI_APPLICATION_MODULE
* @{
*/
/**
* @brief Called when the application starts.
*
* @details The callback function is called before the main loop of the application starts.
* In this callback, you can initialize application resources like window creation, data structure, and so on.
* After this callback function returns @c true, the main loop starts up and app_control_cb() is subsequently called.
* If this callback function returns @c false, the main loop doesn't start and app_terminate_cb() is subsequently called.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] user_data The user data passed from the callback registration function
* @return @c true on success,
* otherwise @c false
* @pre ui_app_main() will invoke this callback function.
* @see ui_app_main()
* @see #ui_app_lifecycle_callback_s
*/
typedef bool (*app_create_cb) (void *user_data);
/**
* @brief Called when the application is completely obscured by another application and becomes invisible.
*
* @details The application is not terminated and still running in the paused state.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] user_data The user data passed from the callback registration function
* @see ui_app_main()
* @see #ui_app_lifecycle_callback_s
*/
typedef void (*app_pause_cb) (void *user_data);
/**
* @brief Called when the application becomes visible.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
*
* @param[in] user_data The user data passed from the callback registration function
* @see ui_app_main()
* @see #ui_app_lifecycle_callback_s
*/
typedef void (*app_resume_cb) (void *user_data);
/**
* @brief Called when the application's main loop exits.
* @details You should release the application's resources in this function.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] user_data The user data passed from the callback registration function
* @see ui_app_main()
* @see #ui_app_lifecycle_callback_s
*/
typedef void (*app_terminate_cb) (void *user_data);
/**
* @brief Called when another application sends a launch request to the application.
*
* @details When the application is launched, this callback function is called after the main loop of the application starts up.
* The passed app_control handle describes the launch request and contains the information about why the application is launched.
* If the launch request is sent to the application in the running or pause state,
* this callback function can be called again to notify that the application has been asked to launch.
*
* The application could be explicitly launched by the user from the application launcher or be launched to perform the specific operation by another application.
* The application is responsible for handling each launch request and responding appropriately.
* Using the App Control API, the application can get information about what is to be performed.
* If the application is launched from the application launcher or explicitly launched by another application,
* the passed app_control handle may include only the default operation (#APP_CONTROL_OPERATION_DEFAULT) without any data.
* For more information, see The @ref CAPI_APP_CONTROL_MODULE API description.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] app_control The handle to the app_control
* @param[in] user_data The user data passed from the callback registration function
* @see ui_app_main()
* @see #ui_app_lifecycle_callback_s
* @see @ref CAPI_APP_CONTROL_MODULE API
*/
typedef void (*app_control_cb) (app_control_h app_control, void *user_data);
/**
* @internal
* @brief Called when the system memory is running low.
*
* @details When a low memory event is dispatched, the application should immediately save state and release resources to save as much memory as possible. \n
* If enough memory is not reclaimed during low memory conditions, the system will terminate some of the applications to reclaim the memory.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] user_data The user data passed from the callback registration function
* @see app_main()
* @see #app_event_callback_s
*/
typedef void (*app_low_memory_cb) (void *user_data);
/**
* @internal
* @brief Called when the battery power is running low.
* @details When the battery level falls below 5%, it is called.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] user_data The user data passed from the callback registration function
* @see app_main()
* @see #app_event_callback_s
*/
typedef void (*app_low_battery_cb) (void *user_data);
/**
* @internal
* @brief Called when the orientation of the device changes.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] orientation The orientation of the device
* @param[in] user_data The user data passed from the callback registration function
* @see app_main()
* @see #app_event_callback_s
*/
typedef void (*app_device_orientation_cb) (app_device_orientation_e orientation, void *user_data);
/**
* @internal
* @brief Called when language setting changes.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] user_data The user data passed from the callback registration function
* @see app_main()
* @see #app_event_callback_s
*/
typedef void (*app_language_changed_cb) (void *user_data);
/**
* @internal
* @brief Called when region format setting changes.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] user_data The user data passed from the callback registration function
* @see app_main()
* @see #app_event_callback_s
*/
typedef void (*app_region_format_changed_cb) (void *user_data);
/**
* @internal
* @brief The structure type containing the set of callback functions for handling application events.
* @details It is one of the input parameters of the app_main() function.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @see app_main()
* @see app_create_cb()
* @see app_pause_cb()
* @see app_resume_cb()
* @see app_terminate_cb()
* @see app_control_cb()
* @see app_low_memory_cb()
* @see app_low_battery_cb()
* @see app_device_orientation_cb()
* @see app_language_changed_cb()
* @see app_region_format_changed_cb()
*/
typedef struct
{
app_create_cb create; /**< This callback function is called at the start of the application. */
app_terminate_cb terminate; /**< This callback function is called once after the main loop of the application exits. */
app_pause_cb pause; /**< This callback function is called each time the application is completely obscured by another application and becomes invisible to the user. */
app_resume_cb resume; /**< This callback function is called each time the application becomes visible to the user. */
app_control_cb app_control; /**< This callback function is called when another application sends the launch request to the application. */
app_low_memory_cb low_memory; /**< The registered callback function is called when the system runs low on memory. */
app_low_battery_cb low_battery; /**< The registered callback function is called when the battery is low. */
app_device_orientation_cb device_orientation; /**< The registered callback function is called when the orientation of the device changes */
app_language_changed_cb language_changed; /**< The registered callback function is called when language setting changes. */
app_region_format_changed_cb region_format_changed; /**< The registered callback function is called when region format setting changes. */
} app_event_callback_s;
/**
* @brief The structure type containing the set of callback functions for handling application lifecycle events.
* @details It is one of the input parameters of the ui_app_main() function.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @see ui_app_main()
* @see app_create_cb()
* @see app_pause_cb()
* @see app_resume_cb()
* @see app_terminate_cb()
* @see app_control_cb()
*/
typedef struct
{
app_create_cb create; /**< This callback function is called at the start of the application. */
app_terminate_cb terminate; /**< This callback function is called once after the main loop of the application exits. */
app_pause_cb pause; /**< This callback function is called each time the application is completely obscured by another application and becomes invisible to the user. */
app_resume_cb resume; /**< This callback function is called each time the application becomes visible to the user. */
app_control_cb app_control; /**< This callback function is called when another application sends the launch request to the application. */
} ui_app_lifecycle_callback_s;
/**
* @internal
* @brief Runs the application's main loop until app_exit() is called.
*
* @details This function is the main entry point of the Tizen application.
* The app_create_cb() callback function is called to initialize the application before the main loop of application starts up.
* After the app_create_cb() callback function returns true, the main loop starts up and the app_control_cb() callback function is subsequently called.
* If the app_create_cb() callback function returns false, the main loop doesn't start up and app_terminate_cb() callback function is called.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] argc The argument count
* @param[in] argv The argument vector
* @param[in] callback The set of callback functions to handle application events
* @param[in] user_data The user data to be passed to the callback functions
*
* @return 0 on success, otherwise a negative error value
* @retval #APP_ERROR_NONE Successful
* @retval #APP_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #APP_ERROR_INVALID_CONTEXT The application is illegally launched, not launched by the launch system
* @retval #APP_ERROR_ALREADY_RUNNING The main loop already starts
*
* @see app_create_cb()
* @see app_terminate_cb()
* @see app_pause_cb()
* @see app_resume_cb()
* @see app_control_cb()
* @see app_low_memory_cb()
* @see app_low_battery_cb()
* @see app_device_orientation_cb()
* @see app_language_changed_cb()
* @see app_region_format_changed_cb()
* @see app_exit()
* @see #app_event_callback_s
*/
int app_main(int argc, char **argv, app_event_callback_s *callback, void *user_data);
/**
* @internal
* @brief Runs the application's main loop until app_efl_exit() is called.
*
* @details This function is the main entry point of the Tizen application.
* The app_create_cb() callback function is called to initialize the application before the main loop of the application starts up.
* After the app_create_cb() callback function returns @c true, the main loop starts up and the app_control_cb() callback function is subsequently called.
* If the app_create_cb() callback function returns @c false, the main loop doesn't start up and the app_terminate_cb() callback function is called.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] argc The argument count
* @param[in] argv The argument vector
* @param[in] callback The set of callback functions to handle application events
* @param[in] user_data The user data to be passed to the callback functions
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #APP_ERROR_NONE Successful
* @retval #APP_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #APP_ERROR_INVALID_CONTEXT The application is illegally launched, not launched by the launch system
* @retval #APP_ERROR_ALREADY_RUNNING The main loop has already started
*
* @see app_create_cb()
* @see app_terminate_cb()
* @see app_pause_cb()
* @see app_resume_cb()
* @see app_control_cb()
* @see app_low_memory_cb()
* @see app_low_battery_cb()
* @see app_device_orientation_cb()
* @see app_language_changed_cb()
* @see app_region_format_changed_cb()
* @see app_efl_exit()
* @see #app_event_callback_s
*/
int app_efl_main(int *argc, char ***argv, app_event_callback_s *callback, void *user_data);
/**
* @internal
* @brief Exits the main loop of application.
*
* @details The main loop of application stops and app_terminate_cb() is invoked.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @see app_main()
* @see app_terminate_cb()
*/
void app_exit(void);
/**
* @internal
* @brief Exits the main loop of the application.
*
* @details The main loop of the application stops and app_terminate_cb() is invoked.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @see app_efl_main()
* @see app_terminate_cb()
*/
void app_efl_exit(void);
/**
* @brief Gets the current device orientation.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @return The current device orientation
*/
app_device_orientation_e app_get_device_orientation(void);
/**
* @internal
* @brief Sets whether reclaiming system cache is enabled in the pause state.
*
* @details If reclaiming system cache is enabled, the system caches are released as possible when the application's state changes to the pause state.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @remarks Reclaiming system cache is enabled by default.
*
* @param[in] enable If @c true reclaiming system cache is enabled,
* otherwise @c false
*/
void app_set_reclaiming_system_cache_on_pause(bool enable);
/**
* @internal
* @brief Gets the preinitialized window object.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @remarks This API only supports BASIC type window.
*
* @param[in] win_name The name to be set for the preinitialized window
*
* @return A @a window object on success,
* otherwise @c NULL
*/
void* app_get_preinitialized_window(const char* win_name);
/**
* @internal
* @brief Gets the preinitialized background object added to the preinitialized window.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @remarks This API should be called after calling app_get_preinitizlized_window().
*
* @return A @a background object on success,
* otherwise @c NULL
*/
void* app_get_preinitialized_background(void);
/**
* @internal
* @brief Gets the preinitialized conformant widget added to the preinitialized window.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @remarks This API should be called after calling app_get_preinitizlized_window().
*
* @return A conformant object on success,
* otherwise @c NULL
*/
void* app_get_preinitialized_conformant(void);
/**
* @brief Runs the application's main loop until ui_app_exit() is called.
*
* @details This function is the main entry point of the Tizen application.
* The app_create_cb() callback function is called to initialize the application before the main loop of application starts up.
* After the app_create_cb() callback function returns true, the main loop starts up and the app_control_cb() callback function is subsequently called.
* If the app_create_cb() callback function returns false, the main loop doesn't start up and app_terminate_cb() callback function is called.
* This main loop supports event handling for the Ecore Main Loop.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] argc The argument count
* @param[in] argv The argument vector
* @param[in] callback The set of callback functions to handle application lifecycle events
* @param[in] user_data The user data to be passed to the callback functions
*
* @return 0 on success, otherwise a negative error value
* @retval #APP_ERROR_NONE Successful
* @retval #APP_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #APP_ERROR_INVALID_CONTEXT The application is illegally launched, not launched by the launch system
* @retval #APP_ERROR_ALREADY_RUNNING The main loop already starts
*
* @see app_create_cb()
* @see app_terminate_cb()
* @see app_pause_cb()
* @see app_resume_cb()
* @see app_control_cb()
* @see ui_app_exit()
* @see #ui_app_lifecycle_callback_s
*/
int ui_app_main(int argc, char **argv, ui_app_lifecycle_callback_s *callback, void *user_data);
/**
* @brief Exits the main loop of application.
*
* @details The main loop of application stops and app_terminate_cb() is invoked.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
*
* @see ui_app_main()
* @see app_terminate_cb()
*/
void ui_app_exit(void);
/**
* @brief Adds the system event handler
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[out] event_handler The event handler
* @param[in] event_type The system event type
* @param[in] callback The callback function
* @param[in] user_data The user data to be passed to the callback functions
*
* @return 0 on success, otherwise a negative error value
* @retval #APP_ERROR_NONE Successful
* @retval #APP_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #APP_ERROR_OUT_OF_MEMORY Out of memory
*
* @see app_event_type_e
* @see app_event_cb
* @see ui_app_remove_event_handler
*/
int ui_app_add_event_handler(app_event_handler_h *event_handler, app_event_type_e event_type, app_event_cb callback, void *user_data);
/**
* @brief Removes registered event handler
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
* @param[in] event_handler The event handler
*
* @return 0 on success, otherwise a negative error value
* @retval #APP_ERROR_NONE Successful
* @retval #APP_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see ui_app_add_event_handler
*/
int ui_app_remove_event_handler(app_event_handler_h event_handler);
/**
* @}
*/
#ifdef __cplusplus
}
#endif
#endif /* __TIZEN_APPFW_APP_H__ */
|