Bundles / src / view /

view_common.c

  1. /*
  2. * Copyright (c) 2016 Samsung Electronics Co., Ltd
  3. *
  4. * Licensed under the Flora License, Version 1.1 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://floralicense.org/license/
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16.  
  17. #include <app.h>
  18. #include <efl_extension.h>
  19. #include "$(appName).h"
  20. #include <efl_extension.h>
  21. #include "view/view_common.h"
  22. #include "view_defines.h"
  23.  
  24. static void _close_popup_cb(void *data, Evas_Object *obj, void *event_info);
  25.  
  26. /**
  27. * @brief Function which creates fully qualified path to the provided resource file.
  28. * @param[in] edj_file_in The file name.
  29. * @param[out] edj_path_out The fully qualified path to the edj_file_in file.
  30. */
  31. void view_common_get_app_resource(const char *edj_file_in, char *edj_path_out)
  32. {
  33. char *res_path = app_get_resource_path();
  34. if (res_path) {
  35. snprintf(edj_path_out, PATH_MAX, "%s%s", res_path, edj_file_in);
  36. free(res_path);
  37. }
  38. }
  39.  
  40. /**
  41. * @brief Creates a layout object based on provided EDJE script.
  42. * @param[in] parent The parent object for layout object.
  43. * @param[in] edj_file_name The relative path to the layout EDJE script.
  44. * @param[in] edj_group The name of the group to be loaded from the EDJE script.
  45. * @return The function returns layout object if it was created successfully,
  46. * otherwise 'NULL' is returned.
  47. */
  48. Evas_Object *view_create_layout(Evas_Object *parent, const char *edj_file_name, const char *edj_group)
  49. {
  50. char edj_path[PATH_MAX] = {0, };
  51. Evas_Object *layout = NULL;
  52.  
  53. if (!parent || !edj_file_name || !edj_group) {
  54. dlog_print(DLOG_ERROR, LOG_TAG, "Wrong input arguments.");
  55. return NULL;
  56. }
  57.  
  58. view_common_get_app_resource(edj_file_name, edj_path);
  59.  
  60. layout = elm_layout_add(parent);
  61. if (!layout) {
  62. dlog_print(DLOG_ERROR, LOG_TAG, "Function elm_layout_add() failed.");
  63. return NULL;
  64. }
  65.  
  66. if (!elm_layout_file_set(layout, edj_path, edj_group)) {
  67. dlog_print(DLOG_ERROR, LOG_TAG, "Function elm_layout_file_set() failed.");
  68. evas_object_del(layout);
  69. return NULL;
  70. }
  71.  
  72. evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
  73.  
  74. return layout;
  75. }
  76.  
  77. /**
  78. * @brief Creates a toast popup message.
  79. * @param parent The parent widget.
  80. * @param message The message to display.
  81. */
  82. void view_common_create_popup(Evas_Object *parent, char *message)
  83. {
  84. Evas_Object *popup = elm_popup_add(parent);
  85. if (!popup) {
  86. dlog_print(DLOG_ERROR, LOG_TAG, "[%s:%d] popup == NULL", __FILE__, __LINE__);
  87. return;
  88. }
  89.  
  90. elm_object_style_set(popup, "toast");
  91. elm_object_text_set(popup, message);
  92. elm_popup_timeout_set(popup, 3);
  93. evas_object_smart_callback_add(popup, "timeout", _close_popup_cb, NULL);
  94. evas_object_smart_callback_add(popup, "block,clicked", _close_popup_cb, NULL);
  95. evas_object_show(popup);
  96. }
  97.  
  98. /**
  99. * @brief Callback invoked when a genlist's tree item is contracted.
  100. * @param data User data.
  101. * @param obj genlist object.
  102. * @param event_info The contracted item.
  103. */
  104. void view_common_tree_item_contracted_cb(void *data, Evas_Object *obj, void *event_info)
  105. {
  106. Elm_Object_Item *it_parent = (Elm_Object_Item*) event_info;
  107. Evas_Object *header = elm_object_item_part_content_get(it_parent, "elm.swallow.content");
  108. elm_genlist_item_subitems_clear(it_parent);
  109. elm_layout_signal_emit(header, SIGNAL_ARROW_STATE_CHANGE, "");
  110. }
  111.  
  112. /**
  113. * @brief Internal callback function invoked when the popup is going to be hidden.
  114. * @param data User data.
  115. * @param obj genlist object.
  116. * @param event_info The contracted item.
  117. */
  118. static void _close_popup_cb(void *data, Evas_Object *obj, void *event_info)
  119. {
  120. evas_object_del(obj);
  121. }