File Manager / edc /
  1. /*
  2. * Copyright 2014 Samsung Electronics Co., Ltd All Rights Reserved
  3. *
  4. * Licensed under the Apache License, Version 2.0 (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://www.apache.org/licenses/LICENSE-2.0
  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. group
  18. {
  19. name: "navi_layout";
  20. parts
  21. {
  22. part
  23. {
  24. name: "background";
  25. type: SPACER;
  26. mouse_events: 0;
  27. scale: 1;
  28. description
  29. {
  30. state: "default" 0.0;
  31. rel1.relative: 0.0 0.0;
  32. rel2.relative: 1.0 1.0;
  33. }
  34. }
  35.  
  36. part
  37. {
  38. name: "header_box";
  39. type: SWALLOW;
  40. scale: 1;
  41. description
  42. {
  43. state: "default" 0.0;
  44. fixed: 0 0;
  45. align: 0.0 0.0;
  46. rel1
  47. {
  48. relative: 0.0 0.0;
  49. }
  50. rel2.relative: 1.0 0.0;
  51. }
  52. }
  53.  
  54. part
  55. {
  56. name: "content";
  57. type: SWALLOW;
  58. scale: 1;
  59. description
  60. {
  61. state: "default" 0.0;
  62. align: 0.5 0.0;
  63. rel1
  64. {
  65. relative: 0.0 1.0;
  66. to_y:"header_box";
  67. }
  68. rel2
  69. {
  70. relative: 1.0 1.0;
  71. }
  72. }
  73. }
  74. }
  75. }