Taskmanager / res / edje /

main.edc

  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 "../../inc/defines.h"
  18.  
  19. collections {
  20. group {
  21. name: TASKMGR_MAIN_GROUP;
  22. parts {
  23. part {
  24. name: TASKMGR_PART_CONTENT;
  25. type: SWALLOW;
  26. description {
  27. state: "default" 0.0;
  28. rel1 { relative: 0.0 0.0; }
  29. rel2 { relative: 1.0 1.0; }
  30. }
  31. }
  32. part {
  33. name: TASKMGR_PART_TITLE;
  34. type: TEXT;
  35. description {
  36. state: "default" 0.0;
  37. text { font: "Tizen:style=regular"; size: 60; min: 1 1; ellipsis: -1; align: 0.5 0.5; text: TASMGR_TITLE_NO_APPLICATIONS; }
  38. color: 0 0 0 255;
  39. visible: 0;
  40. }
  41. description {
  42. state: "visible" 0.0;
  43. inherit: "default" 0.0;
  44. visible: 1;
  45. }
  46. }
  47. }
  48. programs {
  49. program {
  50. name: TASKMGR_PROGRAM_NO_APPS_SHOW;
  51. signal: TASKMGR_PROGRAM_NO_APPS_SHOW_SIGNAL;
  52. source: TASKMGR_PROGRAM_NO_APPS_SHOW_SOURCE;
  53. action: STATE_SET "visible" 0.0;
  54. target: TASKMGR_PART_TITLE;
  55. }
  56. program {
  57. name: TASKMGR_PROGRAM_NO_APPS_HODE;
  58. signal: TASKMGR_PROGRAM_NO_APPS_HIDE_SIGNAL;
  59. source: TASKMGR_PROGRAM_NO_APPS_HIDE_SOURCE;
  60. action: STATE_SET "default" 0.0;
  61. target: TASKMGR_PART_TITLE;
  62. }
  63. }
  64. }