Taskmanager / res / edje /
main.edc
- /*
- * Copyright (c) 2016 Samsung Electronics Co., Ltd
- *
- * Licensed under the Flora License, Version 1.1 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://floralicense.org/license/
- *
- * 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.
- */
- #include "../../inc/defines.h"
- collections {
- group {
- name: TASKMGR_MAIN_GROUP;
- parts {
- part {
- name: TASKMGR_PART_CONTENT;
- type: SWALLOW;
- description {
- state: "default" 0.0;
- rel1 { relative: 0.0 0.0; }
- rel2 { relative: 1.0 1.0; }
- }
- }
- part {
- name: TASKMGR_PART_TITLE;
- type: TEXT;
- description {
- state: "default" 0.0;
- text { font: "Tizen:style=regular"; size: 60; min: 1 1; ellipsis: -1; align: 0.5 0.5; text: TASMGR_TITLE_NO_APPLICATIONS; }
- color: 0 0 0 255;
- visible: 0;
- }
- description {
- state: "visible" 0.0;
- inherit: "default" 0.0;
- visible: 1;
- }
- }
- }
- programs {
- program {
- name: TASKMGR_PROGRAM_NO_APPS_SHOW;
- signal: TASKMGR_PROGRAM_NO_APPS_SHOW_SIGNAL;
- source: TASKMGR_PROGRAM_NO_APPS_SHOW_SOURCE;
- action: STATE_SET "visible" 0.0;
- target: TASKMGR_PART_TITLE;
- }
- program {
- name: TASKMGR_PROGRAM_NO_APPS_HODE;
- signal: TASKMGR_PROGRAM_NO_APPS_HIDE_SIGNAL;
- source: TASKMGR_PROGRAM_NO_APPS_HIDE_SOURCE;
- action: STATE_SET "default" 0.0;
- target: TASKMGR_PART_TITLE;
- }
- }
- }