From: Lukasz Stanislawski Date: Tue, 13 Nov 2018 11:46:29 +0000 (+0100) Subject: remove unsued & duplicated resoruces X-Git-Tag: submit/tizen/20190409.085310~1^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=96c71472ef0d998050d37f1b52b681dc03712d7b;p=profile%2Fmobile%2Fapps%2Fnative%2Fsettings.git remove unsued & duplicated resoruces Change-Id: I4eb6a778ec79180ff13a13d4050c6fa3177293e7 --- diff --git a/setting-about/CMakeLists.txt b/setting-about/CMakeLists.txt deleted file mode 100755 index 5c7ada2b..00000000 --- a/setting-about/CMakeLists.txt +++ /dev/null @@ -1,54 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) -SET(PROJECT_SETTING_ABOUT "setting-about") -SET(SETTING_PKG_ABOUT "org.tizen.setting-about") - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_about REQUIRED - capi-appfw-application - capi-network-bluetooth - capi-network-wifi-manager - capi-system-info - capi-system-runtime-info - capi-telephony - storage - dlog - efl-extension - elementary - libtzplatform-config - vconf -) - -FOREACH(flag ${pkgs_about_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -ADD_DEFINITIONS("-DIMAGEDIR=\"${IMAGEDIR}\"") - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_ABOUT} - src/setting-about.c - src/setting-about-main.c - src/setting-about-status.c -) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_ABOUT} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_ABOUT} ${pkgs_about_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_ABOUT} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) - diff --git a/setting-about/res/500.settings_upgrade.sh b/setting-about/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-about/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-about/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-about/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-about/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-about/res/edje/accessibility-settings-set-value.edc b/setting-about/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-about/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-about/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-about/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-about/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-about/res/edje/accessibility-smart-switch-accessory.edc b/setting-about/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-about/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-about/res/edje/common-data-define.edc b/setting-about/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-about/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-about/res/edje/font-slider.edc b/setting-about/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-about/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-about/res/edje/gl-item-entry-main.edc b/setting-about/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-about/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-about/res/edje/setting-theme.edc b/setting-about/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-about/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-about/res/edje/storage-graph.edc b/setting-about/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-about/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-about/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-about/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-about/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-about/res/icons/default_icon_service.png b/setting-about/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-about/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_about_device.png b/setting-about/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-about/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_accessibility.png b/setting-about/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-about/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_account.png b/setting-about/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-about/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_applications.png b/setting-about/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-about/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_backup_and_reset.png b/setting-about/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-about/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_battery.png b/setting-about/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-about/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_bluetooth.png b/setting-about/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-about/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_call_setting.png b/setting-about/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-about/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_convergence.png b/setting-about/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-about/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_data_usage.png b/setting-about/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-about/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_date_and_time.png b/setting-about/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-about/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_decoration.png b/setting-about/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-about/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_developer.png b/setting-about/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-about/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_display.png b/setting-about/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-about/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_flight.png b/setting-about/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-about/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_ic_delete.png b/setting-about/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-about/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_ic_location.png b/setting-about/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-about/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_language_and_input.png b/setting-about/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-about/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_list_developer.png b/setting-about/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-about/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-about/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-about/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_lockscreen.png b/setting-about/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-about/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_mobile_networks.png b/setting-about/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-about/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_more_connections.png b/setting-about/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-about/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_nfc_and_payment.png b/setting-about/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-about/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_privacy_and_safety.png b/setting-about/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-about/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_security.png b/setting-about/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-about/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_sim_card_magager.png b/setting-about/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-about/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_sound_and_notifications.png b/setting-about/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-about/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_special_days.png b/setting-about/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-about/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_storage.png b/setting-about/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-about/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_tethering.png b/setting-about/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-about/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-about/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-about/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_wallpapers.png b/setting-about/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-about/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_wifi.png b/setting-about/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-about/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-about/res/icons/list_icon/settings_wifi_direct.png b/setting-about/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-about/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-about/res/icons/mainmenu.png b/setting-about/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-about/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-about/res/icons/org.tizen.setting.png b/setting-about/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-about/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-about/res/icons/plus.png b/setting-about/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-about/res/icons/plus.png and /dev/null differ diff --git a/setting-about/res/icons/preview_focus.#.png b/setting-about/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-about/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-about/res/icons/preview_focus_effect.#.png b/setting-about/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-about/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-about/res/icons/setting_colortheme_select.#.png b/setting-about/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-about/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-about/res/icons/setting_colortheme_select_ef.#.png b/setting-about/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-about/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-about/res/icons/simple_password_bg.#.png b/setting-about/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-about/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-about/res/icons/slider_point.png b/setting-about/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-about/res/icons/slider_point.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_incoming_call.png b/setting-about/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_notification.png b/setting-about/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_notification_mute.png b/setting-about/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_notification_vibrate.png b/setting-about/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_system.png b/setting-about/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_system_mute.png b/setting-about/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_system_vibrate.png b/setting-about/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_volume.png b/setting-about/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_volume_mute.png b/setting-about/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-about/res/icons/sound_slider_icon_volume_vibrate.png b/setting-about/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-about/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-about/res/icons/sound_volume_ic_setting.png b/setting-about/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-about/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-about/res/icons/sound_volume_popup_bg.#.png b/setting-about/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-about/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-about/res/images/A01-1_progress_pending_01.png b/setting-about/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-about/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-about/res/images/A01-1_progress_pending_01_dim.png b/setting-about/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-about/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-about/res/images/A01-1_progress_pending_02.png b/setting-about/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-about/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-about/res/images/A01-1_progress_pending_02_dim.png b/setting-about/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-about/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-about/res/images/core_progress_bar.#.png b/setting-about/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-about/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-about/res/images/core_slider_handle_normal.png b/setting-about/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-about/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-about/res/images/core_slider_handle_press.png b/setting-about/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-about/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-about/res/images/org.tizen.setting.png b/setting-about/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-about/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-about/res/images/simple_password_bg.#.png b/setting-about/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-about/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-about/res/images/soundalive_progress_point.png b/setting-about/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-about/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-about/res/langlist.india.xml.in b/setting-about/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-about/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-about/res/langlist.xml.in b/setting-about/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-about/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-about/res/langlist_all.xml.in b/setting-about/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-about/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-about/res/media/settings/Alerts/General notification_sdk.wav b/setting-about/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-about/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-about/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-about/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-about/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-about/res/media/settings/Wallpapers/home_001.png b/setting-about/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-about/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-about/res/media/settings/Wallpapers/home_002.png b/setting-about/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-about/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-about/res/media/settings/Wallpapers/home_003.png b/setting-about/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-about/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-about/res/media/settings/Wallpapers/home_004.png b/setting-about/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-about/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-about/res/po/CMakeLists.txt b/setting-about/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-about/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-about/res/ug-setting-shortcut-efl.xml.in b/setting-about/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-about/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-applications/CMakeLists.txt b/setting-applications/CMakeLists.txt deleted file mode 100755 index 35c8139b..00000000 --- a/setting-applications/CMakeLists.txt +++ /dev/null @@ -1,44 +0,0 @@ -SET(PROJECT_SETTING_APPLICATIONS "setting-applications") -SET(SETTING_PKG_APPLICATIONS "org.tizen.setting-applications") - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_apps REQUIRED - aul - capi-appfw-application - dlog - efl-extension - elementary - libtzplatform-config - pkgmgr-info - vconf -) - -FOREACH(flag ${pkgs_apps_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_APPLICATIONS} - ./src/setting-applications.c - ./src/setting-applications-main.c - ./src/setting-applications-defaultapp.c - ) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_APPLICATIONS} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_APPLICATIONS} ${pkgs_apps_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_APPLICATIONS} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-applications/res/500.settings_upgrade.sh b/setting-applications/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-applications/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-applications/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-applications/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-applications/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-applications/res/edje/accessibility-settings-set-value.edc b/setting-applications/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-applications/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-applications/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-applications/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-applications/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-applications/res/edje/accessibility-smart-switch-accessory.edc b/setting-applications/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-applications/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-applications/res/edje/common-data-define.edc b/setting-applications/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-applications/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-applications/res/edje/font-slider.edc b/setting-applications/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-applications/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-applications/res/edje/gl-item-entry-main.edc b/setting-applications/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-applications/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-applications/res/edje/setting-theme.edc b/setting-applications/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-applications/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-applications/res/edje/storage-graph.edc b/setting-applications/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-applications/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-applications/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-applications/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-applications/res/icons/default_icon_service.png b/setting-applications/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-applications/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_about_device.png b/setting-applications/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_accessibility.png b/setting-applications/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_account.png b/setting-applications/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_applications.png b/setting-applications/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_backup_and_reset.png b/setting-applications/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_battery.png b/setting-applications/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_bluetooth.png b/setting-applications/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_call_setting.png b/setting-applications/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_convergence.png b/setting-applications/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_data_usage.png b/setting-applications/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_date_and_time.png b/setting-applications/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_decoration.png b/setting-applications/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_developer.png b/setting-applications/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_display.png b/setting-applications/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_flight.png b/setting-applications/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_ic_delete.png b/setting-applications/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_ic_location.png b/setting-applications/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_language_and_input.png b/setting-applications/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_list_developer.png b/setting-applications/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-applications/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_lockscreen.png b/setting-applications/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_mobile_networks.png b/setting-applications/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_more_connections.png b/setting-applications/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_nfc_and_payment.png b/setting-applications/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_privacy_and_safety.png b/setting-applications/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_security.png b/setting-applications/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_sim_card_magager.png b/setting-applications/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_sound_and_notifications.png b/setting-applications/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_special_days.png b/setting-applications/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_storage.png b/setting-applications/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_tethering.png b/setting-applications/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-applications/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_wallpapers.png b/setting-applications/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_wifi.png b/setting-applications/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-applications/res/icons/list_icon/settings_wifi_direct.png b/setting-applications/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-applications/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-applications/res/icons/mainmenu.png b/setting-applications/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-applications/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-applications/res/icons/org.tizen.setting.png b/setting-applications/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-applications/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-applications/res/icons/plus.png b/setting-applications/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-applications/res/icons/plus.png and /dev/null differ diff --git a/setting-applications/res/icons/preview_focus.#.png b/setting-applications/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-applications/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-applications/res/icons/preview_focus_effect.#.png b/setting-applications/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-applications/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-applications/res/icons/setting_colortheme_select.#.png b/setting-applications/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-applications/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-applications/res/icons/setting_colortheme_select_ef.#.png b/setting-applications/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-applications/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-applications/res/icons/simple_password_bg.#.png b/setting-applications/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-applications/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-applications/res/icons/slider_point.png b/setting-applications/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-applications/res/icons/slider_point.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_incoming_call.png b/setting-applications/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_notification.png b/setting-applications/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_notification_mute.png b/setting-applications/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_notification_vibrate.png b/setting-applications/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_system.png b/setting-applications/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_system_mute.png b/setting-applications/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_system_vibrate.png b/setting-applications/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_volume.png b/setting-applications/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_volume_mute.png b/setting-applications/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_slider_icon_volume_vibrate.png b/setting-applications/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-applications/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_volume_ic_setting.png b/setting-applications/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-applications/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-applications/res/icons/sound_volume_popup_bg.#.png b/setting-applications/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-applications/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-applications/res/images/A01-1_progress_pending_01.png b/setting-applications/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-applications/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-applications/res/images/A01-1_progress_pending_01_dim.png b/setting-applications/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-applications/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-applications/res/images/A01-1_progress_pending_02.png b/setting-applications/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-applications/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-applications/res/images/A01-1_progress_pending_02_dim.png b/setting-applications/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-applications/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-applications/res/images/core_progress_bar.#.png b/setting-applications/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-applications/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-applications/res/images/core_slider_handle_normal.png b/setting-applications/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-applications/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-applications/res/images/core_slider_handle_press.png b/setting-applications/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-applications/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-applications/res/images/org.tizen.setting.png b/setting-applications/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-applications/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-applications/res/images/simple_password_bg.#.png b/setting-applications/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-applications/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-applications/res/images/soundalive_progress_point.png b/setting-applications/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-applications/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-applications/res/langlist.india.xml.in b/setting-applications/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-applications/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-applications/res/langlist.xml.in b/setting-applications/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-applications/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-applications/res/langlist_all.xml.in b/setting-applications/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-applications/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-applications/res/media/settings/Alerts/General notification_sdk.wav b/setting-applications/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-applications/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-applications/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-applications/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-applications/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-applications/res/media/settings/Wallpapers/home_001.png b/setting-applications/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-applications/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-applications/res/media/settings/Wallpapers/home_002.png b/setting-applications/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-applications/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-applications/res/media/settings/Wallpapers/home_003.png b/setting-applications/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-applications/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-applications/res/media/settings/Wallpapers/home_004.png b/setting-applications/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-applications/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-applications/res/po/CMakeLists.txt b/setting-applications/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-applications/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-applications/res/ug-setting-shortcut-efl.xml.in b/setting-applications/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-applications/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-appmgr/CMakeLists.txt b/setting-appmgr/CMakeLists.txt deleted file mode 100755 index 4a00be03..00000000 --- a/setting-appmgr/CMakeLists.txt +++ /dev/null @@ -1,50 +0,0 @@ -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) -INCLUDE_DIRECTORIES(/usr/include/privilegemgr) -SET(PROJECT_SETTING_APPMGR "setting-appmgr") -SET(SETTING_PKG_APPMGR "org.tizen.setting-appmgr") - -FILE(GLOB APPMGR_SRCS src/*.c) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_appmgr REQUIRED - elementary - capi-appfw-application - storage - dlog - glib-2.0 - pkgmgr - appsvc - capi-appfw-app-manager - capi-system-runtime-info - vconf - pkgmgr-info - efl-extension - capi-appfw-package-manager - libtzplatform-config - ) - -FOREACH(flag ${pkgs_appmgr_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") - -ADD_EXECUTABLE(${PROJECT_SETTING_APPMGR} ${APPMGR_SRCS}) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_APPMGR} ${pkgs_appmgr_LDFLAGS} -pie) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_APPMGR} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_APPMGR} privilege-info) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_APPMGR} security-privilege-manager) - -#TARGET_LINK_LIBRARIES(${PROJECT_SETTING_APPMGR} ${LIB_SETTING_COMMON}) - -INSTALL(PROGRAMS ${PROJECT_SETTING_APPMGR} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-appmgr/res/500.settings_upgrade.sh b/setting-appmgr/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-appmgr/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-appmgr/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-appmgr/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-appmgr/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-appmgr/res/edje/accessibility-settings-set-value.edc b/setting-appmgr/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-appmgr/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-appmgr/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-appmgr/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-appmgr/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-appmgr/res/edje/accessibility-smart-switch-accessory.edc b/setting-appmgr/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-appmgr/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-appmgr/res/edje/common-data-define.edc b/setting-appmgr/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-appmgr/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-appmgr/res/edje/font-slider.edc b/setting-appmgr/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-appmgr/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-appmgr/res/edje/gl-item-entry-main.edc b/setting-appmgr/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-appmgr/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-appmgr/res/edje/setting-theme.edc b/setting-appmgr/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-appmgr/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-appmgr/res/edje/storage-graph.edc b/setting-appmgr/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-appmgr/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-appmgr/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-appmgr/res/icons/default_icon_service.png b/setting-appmgr/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-appmgr/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_about_device.png b/setting-appmgr/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_accessibility.png b/setting-appmgr/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_account.png b/setting-appmgr/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_applications.png b/setting-appmgr/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_backup_and_reset.png b/setting-appmgr/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_battery.png b/setting-appmgr/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_bluetooth.png b/setting-appmgr/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_call_setting.png b/setting-appmgr/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_convergence.png b/setting-appmgr/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_data_usage.png b/setting-appmgr/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_date_and_time.png b/setting-appmgr/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_decoration.png b/setting-appmgr/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_developer.png b/setting-appmgr/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_display.png b/setting-appmgr/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_flight.png b/setting-appmgr/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_ic_delete.png b/setting-appmgr/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_ic_location.png b/setting-appmgr/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_language_and_input.png b/setting-appmgr/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_list_developer.png b/setting-appmgr/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-appmgr/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_lockscreen.png b/setting-appmgr/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_mobile_networks.png b/setting-appmgr/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_more_connections.png b/setting-appmgr/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_nfc_and_payment.png b/setting-appmgr/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_privacy_and_safety.png b/setting-appmgr/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_security.png b/setting-appmgr/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_sim_card_magager.png b/setting-appmgr/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_sound_and_notifications.png b/setting-appmgr/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_special_days.png b/setting-appmgr/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_storage.png b/setting-appmgr/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_tethering.png b/setting-appmgr/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-appmgr/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_wallpapers.png b/setting-appmgr/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_wifi.png b/setting-appmgr/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-appmgr/res/icons/list_icon/settings_wifi_direct.png b/setting-appmgr/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-appmgr/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-appmgr/res/icons/mainmenu.png b/setting-appmgr/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-appmgr/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-appmgr/res/icons/org.tizen.setting.png b/setting-appmgr/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-appmgr/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-appmgr/res/icons/plus.png b/setting-appmgr/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-appmgr/res/icons/plus.png and /dev/null differ diff --git a/setting-appmgr/res/icons/preview_focus.#.png b/setting-appmgr/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-appmgr/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-appmgr/res/icons/preview_focus_effect.#.png b/setting-appmgr/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-appmgr/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-appmgr/res/icons/setting_colortheme_select.#.png b/setting-appmgr/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-appmgr/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-appmgr/res/icons/setting_colortheme_select_ef.#.png b/setting-appmgr/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-appmgr/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-appmgr/res/icons/simple_password_bg.#.png b/setting-appmgr/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-appmgr/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-appmgr/res/icons/slider_point.png b/setting-appmgr/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-appmgr/res/icons/slider_point.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_incoming_call.png b/setting-appmgr/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_notification.png b/setting-appmgr/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_notification_mute.png b/setting-appmgr/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_notification_vibrate.png b/setting-appmgr/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_system.png b/setting-appmgr/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_system_mute.png b/setting-appmgr/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_system_vibrate.png b/setting-appmgr/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_volume.png b/setting-appmgr/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_volume_mute.png b/setting-appmgr/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_slider_icon_volume_vibrate.png b/setting-appmgr/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-appmgr/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_volume_ic_setting.png b/setting-appmgr/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-appmgr/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-appmgr/res/icons/sound_volume_popup_bg.#.png b/setting-appmgr/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-appmgr/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-appmgr/res/images/A01-1_progress_pending_01.png b/setting-appmgr/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-appmgr/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-appmgr/res/images/A01-1_progress_pending_01_dim.png b/setting-appmgr/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-appmgr/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-appmgr/res/images/A01-1_progress_pending_02.png b/setting-appmgr/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-appmgr/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-appmgr/res/images/A01-1_progress_pending_02_dim.png b/setting-appmgr/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-appmgr/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-appmgr/res/images/core_progress_bar.#.png b/setting-appmgr/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-appmgr/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-appmgr/res/images/core_slider_handle_normal.png b/setting-appmgr/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-appmgr/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-appmgr/res/images/core_slider_handle_press.png b/setting-appmgr/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-appmgr/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-appmgr/res/images/org.tizen.setting.png b/setting-appmgr/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-appmgr/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-appmgr/res/images/simple_password_bg.#.png b/setting-appmgr/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-appmgr/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-appmgr/res/images/soundalive_progress_point.png b/setting-appmgr/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-appmgr/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-appmgr/res/langlist.india.xml.in b/setting-appmgr/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-appmgr/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-appmgr/res/langlist.xml.in b/setting-appmgr/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-appmgr/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-appmgr/res/langlist_all.xml.in b/setting-appmgr/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-appmgr/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-appmgr/res/media/settings/Alerts/General notification_sdk.wav b/setting-appmgr/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-appmgr/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-appmgr/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-appmgr/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-appmgr/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-appmgr/res/media/settings/Wallpapers/home_001.png b/setting-appmgr/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-appmgr/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-appmgr/res/media/settings/Wallpapers/home_002.png b/setting-appmgr/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-appmgr/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-appmgr/res/media/settings/Wallpapers/home_003.png b/setting-appmgr/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-appmgr/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-appmgr/res/media/settings/Wallpapers/home_004.png b/setting-appmgr/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-appmgr/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-appmgr/res/po/CMakeLists.txt b/setting-appmgr/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-appmgr/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-appmgr/res/ug-setting-shortcut-efl.xml.in b/setting-appmgr/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-appmgr/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-backup-and-reset/CMakeLists.txt b/setting-backup-and-reset/CMakeLists.txt deleted file mode 100755 index 39b98ba6..00000000 --- a/setting-backup-and-reset/CMakeLists.txt +++ /dev/null @@ -1,50 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) -SET(PROJECT_SETTING_BACKUP_AND_RESET "setting-backup-and-reset") -SET(SETTING_PKG_BACKUP_AND_RESET "org.tizen.setting-backup-and-reset") - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_setting_backup_and_reset REQUIRED - auth-fw - capi-appfw-application - dlog - edbus - efl-extension - elementary - libtzplatform-config - storage -) - -FOREACH(flag ${pkgs_setting_backup_and_reset_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -message("############ Backup and reset ############") - -ADD_EXECUTABLE(${PROJECT_SETTING_BACKUP_AND_RESET} - ./src/setting-backup-and-reset.c - ./src/setting-backup-and-reset-main-view.c - ./src/setting-backup-and-reset-cloud-view.c - ./src/setting-backup-and-reset-usb-mass-storage-view.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_BACKUP_AND_RESET} ${pkgs_setting_backup_and_reset_LDFLAGS} -pie) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_BACKUP_AND_RESET} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) - -INSTALL(PROGRAMS ${PROJECT_SETTING_BACKUP_AND_RESET} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-backup-and-reset/res/500.settings_upgrade.sh b/setting-backup-and-reset/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-backup-and-reset/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-backup-and-reset/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-backup-and-reset/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-backup-and-reset/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-backup-and-reset/res/edje/accessibility-settings-set-value.edc b/setting-backup-and-reset/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-backup-and-reset/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-backup-and-reset/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-backup-and-reset/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-backup-and-reset/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-backup-and-reset/res/edje/accessibility-smart-switch-accessory.edc b/setting-backup-and-reset/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-backup-and-reset/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-backup-and-reset/res/edje/common-data-define.edc b/setting-backup-and-reset/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-backup-and-reset/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-backup-and-reset/res/edje/font-slider.edc b/setting-backup-and-reset/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-backup-and-reset/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-backup-and-reset/res/edje/gl-item-entry-main.edc b/setting-backup-and-reset/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-backup-and-reset/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-backup-and-reset/res/edje/setting-theme.edc b/setting-backup-and-reset/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-backup-and-reset/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-backup-and-reset/res/edje/storage-graph.edc b/setting-backup-and-reset/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-backup-and-reset/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-backup-and-reset/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/default_icon_service.png b/setting-backup-and-reset/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-backup-and-reset/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_about_device.png b/setting-backup-and-reset/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_accessibility.png b/setting-backup-and-reset/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_account.png b/setting-backup-and-reset/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_applications.png b/setting-backup-and-reset/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_backup_and_reset.png b/setting-backup-and-reset/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_battery.png b/setting-backup-and-reset/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_bluetooth.png b/setting-backup-and-reset/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_call_setting.png b/setting-backup-and-reset/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_convergence.png b/setting-backup-and-reset/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_data_usage.png b/setting-backup-and-reset/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_date_and_time.png b/setting-backup-and-reset/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_decoration.png b/setting-backup-and-reset/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_developer.png b/setting-backup-and-reset/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_display.png b/setting-backup-and-reset/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_flight.png b/setting-backup-and-reset/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_ic_delete.png b/setting-backup-and-reset/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_ic_location.png b/setting-backup-and-reset/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_language_and_input.png b/setting-backup-and-reset/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_list_developer.png b/setting-backup-and-reset/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-backup-and-reset/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_lockscreen.png b/setting-backup-and-reset/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_mobile_networks.png b/setting-backup-and-reset/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_more_connections.png b/setting-backup-and-reset/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_nfc_and_payment.png b/setting-backup-and-reset/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_privacy_and_safety.png b/setting-backup-and-reset/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_security.png b/setting-backup-and-reset/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_sim_card_magager.png b/setting-backup-and-reset/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_sound_and_notifications.png b/setting-backup-and-reset/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_special_days.png b/setting-backup-and-reset/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_storage.png b/setting-backup-and-reset/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_tethering.png b/setting-backup-and-reset/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-backup-and-reset/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_wallpapers.png b/setting-backup-and-reset/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_wifi.png b/setting-backup-and-reset/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/list_icon/settings_wifi_direct.png b/setting-backup-and-reset/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-backup-and-reset/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/mainmenu.png b/setting-backup-and-reset/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-backup-and-reset/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/org.tizen.setting.png b/setting-backup-and-reset/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-backup-and-reset/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/plus.png b/setting-backup-and-reset/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-backup-and-reset/res/icons/plus.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/preview_focus.#.png b/setting-backup-and-reset/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-backup-and-reset/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/preview_focus_effect.#.png b/setting-backup-and-reset/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-backup-and-reset/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/setting_colortheme_select.#.png b/setting-backup-and-reset/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-backup-and-reset/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/setting_colortheme_select_ef.#.png b/setting-backup-and-reset/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-backup-and-reset/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/simple_password_bg.#.png b/setting-backup-and-reset/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-backup-and-reset/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/slider_point.png b/setting-backup-and-reset/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-backup-and-reset/res/icons/slider_point.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_incoming_call.png b/setting-backup-and-reset/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_notification.png b/setting-backup-and-reset/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_notification_mute.png b/setting-backup-and-reset/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_notification_vibrate.png b/setting-backup-and-reset/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_system.png b/setting-backup-and-reset/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_system_mute.png b/setting-backup-and-reset/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_system_vibrate.png b/setting-backup-and-reset/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_volume.png b/setting-backup-and-reset/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_volume_mute.png b/setting-backup-and-reset/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_slider_icon_volume_vibrate.png b/setting-backup-and-reset/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_volume_ic_setting.png b/setting-backup-and-reset/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-backup-and-reset/res/icons/sound_volume_popup_bg.#.png b/setting-backup-and-reset/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-backup-and-reset/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/A01-1_progress_pending_01.png b/setting-backup-and-reset/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-backup-and-reset/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/A01-1_progress_pending_01_dim.png b/setting-backup-and-reset/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-backup-and-reset/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/A01-1_progress_pending_02.png b/setting-backup-and-reset/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-backup-and-reset/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/A01-1_progress_pending_02_dim.png b/setting-backup-and-reset/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-backup-and-reset/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/core_progress_bar.#.png b/setting-backup-and-reset/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-backup-and-reset/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/core_slider_handle_normal.png b/setting-backup-and-reset/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-backup-and-reset/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/core_slider_handle_press.png b/setting-backup-and-reset/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-backup-and-reset/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/org.tizen.setting.png b/setting-backup-and-reset/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-backup-and-reset/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/simple_password_bg.#.png b/setting-backup-and-reset/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-backup-and-reset/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-backup-and-reset/res/images/soundalive_progress_point.png b/setting-backup-and-reset/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-backup-and-reset/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-backup-and-reset/res/langlist.india.xml.in b/setting-backup-and-reset/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-backup-and-reset/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-backup-and-reset/res/langlist.xml.in b/setting-backup-and-reset/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-backup-and-reset/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-backup-and-reset/res/langlist_all.xml.in b/setting-backup-and-reset/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-backup-and-reset/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-backup-and-reset/res/media/settings/Alerts/General notification_sdk.wav b/setting-backup-and-reset/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-backup-and-reset/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-backup-and-reset/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-backup-and-reset/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-backup-and-reset/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-backup-and-reset/res/media/settings/Wallpapers/home_001.png b/setting-backup-and-reset/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-backup-and-reset/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-backup-and-reset/res/media/settings/Wallpapers/home_002.png b/setting-backup-and-reset/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-backup-and-reset/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-backup-and-reset/res/media/settings/Wallpapers/home_003.png b/setting-backup-and-reset/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-backup-and-reset/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-backup-and-reset/res/media/settings/Wallpapers/home_004.png b/setting-backup-and-reset/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-backup-and-reset/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-backup-and-reset/res/po/CMakeLists.txt b/setting-backup-and-reset/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-backup-and-reset/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-backup-and-reset/res/ug-setting-shortcut-efl.xml.in b/setting-backup-and-reset/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-backup-and-reset/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-common/CMakeLists.txt b/setting-common/CMakeLists.txt deleted file mode 100755 index 607cdb55..00000000 --- a/setting-common/CMakeLists.txt +++ /dev/null @@ -1,59 +0,0 @@ -#set variable -# LIB_SETTING_COMMON - setting-common - -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) -PROJECT(${LIB_SETTING_COMMON}) - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_common_data REQUIRED - capi-system-system-settings - efl-extension - elementary - json-glib-1.0 - libtzplatform-config - notification - pkgmgr-info - vconf - capi-base-utils-i18n -) - -FOREACH(flag ${pkgs_common_data_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIC -Werror-implicit-function-declaration") -#SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIC -Werror") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DDATADIR=\"${DATADIR}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -#SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl, --rpath=/usr/lib") - -#make lib-${LIB_SETTING_COMMON}.so files -ADD_LIBRARY(${LIB_SETTING_COMMON} SHARED - ./src/setting-cfg.c - ./src/setting-common-data-slp-setting.c - ./src/setting-common-draw-genlist.c - ./src/setting-common-draw-naviframe.c - ./src/setting-common-draw-popup.c - ./src/setting-common-draw-searchbar.c - ./src/setting-common-draw-widget.c - ./src/setting-common-general-func.c - ./src/setting-common-init.c - ./src/setting-common-view.c -) - -TARGET_LINK_LIBRARIES(${LIB_SETTING_COMMON} ${pkgs_common_data_LDFLAGS}) -SET_TARGET_PROPERTIES(${LIB_SETTING_COMMON} PROPERTIES VERSION 0.1.0 SOVERSION 1) -INSTALL(TARGETS ${LIB_SETTING_COMMON} DESTINATION ${LIBDIR}) - diff --git a/setting-common/res/500.settings_upgrade.sh b/setting-common/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-common/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-common/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-common/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-common/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-common/res/edje/accessibility-settings-set-value.edc b/setting-common/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-common/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-common/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-common/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-common/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-common/res/edje/accessibility-smart-switch-accessory.edc b/setting-common/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-common/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-common/res/edje/common-data-define.edc b/setting-common/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-common/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-common/res/edje/font-slider.edc b/setting-common/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-common/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-common/res/edje/gl-item-entry-main.edc b/setting-common/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-common/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-common/res/edje/setting-theme.edc b/setting-common/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-common/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-common/res/edje/storage-graph.edc b/setting-common/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-common/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-common/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-common/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-common/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-common/res/icons/default_icon_service.png b/setting-common/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-common/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_about_device.png b/setting-common/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-common/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_accessibility.png b/setting-common/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-common/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_account.png b/setting-common/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-common/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_applications.png b/setting-common/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-common/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_backup_and_reset.png b/setting-common/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-common/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_battery.png b/setting-common/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-common/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_bluetooth.png b/setting-common/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-common/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_call_setting.png b/setting-common/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-common/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_convergence.png b/setting-common/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-common/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_data_usage.png b/setting-common/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-common/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_date_and_time.png b/setting-common/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-common/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_decoration.png b/setting-common/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-common/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_developer.png b/setting-common/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-common/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_display.png b/setting-common/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-common/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_flight.png b/setting-common/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-common/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_ic_delete.png b/setting-common/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-common/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_ic_location.png b/setting-common/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-common/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_language_and_input.png b/setting-common/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-common/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_list_developer.png b/setting-common/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-common/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-common/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-common/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_lockscreen.png b/setting-common/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-common/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_mobile_networks.png b/setting-common/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-common/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_more_connections.png b/setting-common/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-common/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_nfc_and_payment.png b/setting-common/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-common/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_privacy_and_safety.png b/setting-common/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-common/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_security.png b/setting-common/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-common/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_sim_card_magager.png b/setting-common/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-common/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_sound_and_notifications.png b/setting-common/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-common/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_special_days.png b/setting-common/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-common/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_storage.png b/setting-common/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-common/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_tethering.png b/setting-common/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-common/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-common/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-common/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_wallpapers.png b/setting-common/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-common/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_wifi.png b/setting-common/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-common/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-common/res/icons/list_icon/settings_wifi_direct.png b/setting-common/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-common/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-common/res/icons/mainmenu.png b/setting-common/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-common/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-common/res/icons/org.tizen.setting.png b/setting-common/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-common/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-common/res/icons/plus.png b/setting-common/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-common/res/icons/plus.png and /dev/null differ diff --git a/setting-common/res/icons/preview_focus.#.png b/setting-common/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-common/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-common/res/icons/preview_focus_effect.#.png b/setting-common/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-common/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-common/res/icons/setting_colortheme_select.#.png b/setting-common/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-common/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-common/res/icons/setting_colortheme_select_ef.#.png b/setting-common/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-common/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-common/res/icons/simple_password_bg.#.png b/setting-common/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-common/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-common/res/icons/slider_point.png b/setting-common/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-common/res/icons/slider_point.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_incoming_call.png b/setting-common/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_notification.png b/setting-common/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_notification_mute.png b/setting-common/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_notification_vibrate.png b/setting-common/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_system.png b/setting-common/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_system_mute.png b/setting-common/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_system_vibrate.png b/setting-common/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_volume.png b/setting-common/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_volume_mute.png b/setting-common/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-common/res/icons/sound_slider_icon_volume_vibrate.png b/setting-common/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-common/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-common/res/icons/sound_volume_ic_setting.png b/setting-common/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-common/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-common/res/icons/sound_volume_popup_bg.#.png b/setting-common/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-common/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-common/res/images/A01-1_progress_pending_01.png b/setting-common/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-common/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-common/res/images/A01-1_progress_pending_01_dim.png b/setting-common/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-common/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-common/res/images/A01-1_progress_pending_02.png b/setting-common/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-common/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-common/res/images/A01-1_progress_pending_02_dim.png b/setting-common/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-common/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-common/res/images/core_progress_bar.#.png b/setting-common/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-common/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-common/res/images/core_slider_handle_normal.png b/setting-common/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-common/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-common/res/images/core_slider_handle_press.png b/setting-common/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-common/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-common/res/images/org.tizen.setting.png b/setting-common/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-common/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-common/res/images/simple_password_bg.#.png b/setting-common/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-common/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-common/res/images/soundalive_progress_point.png b/setting-common/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-common/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-common/res/langlist.india.xml.in b/setting-common/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-common/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-common/res/langlist.xml.in b/setting-common/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-common/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-common/res/langlist_all.xml.in b/setting-common/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-common/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-common/res/media/settings/Alerts/General notification_sdk.wav b/setting-common/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-common/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-common/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-common/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-common/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-common/res/media/settings/Wallpapers/home_001.png b/setting-common/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-common/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-common/res/media/settings/Wallpapers/home_002.png b/setting-common/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-common/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-common/res/media/settings/Wallpapers/home_003.png b/setting-common/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-common/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-common/res/media/settings/Wallpapers/home_004.png b/setting-common/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-common/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-common/res/po/CMakeLists.txt b/setting-common/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-common/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-common/res/ug-setting-shortcut-efl.xml.in b/setting-common/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-common/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-connectivity/CMakeLists.txt b/setting-connectivity/CMakeLists.txt deleted file mode 100755 index 391b58a9..00000000 --- a/setting-connectivity/CMakeLists.txt +++ /dev/null @@ -1,45 +0,0 @@ -SET(PROJECT_SETTING_CONNECTIVITY "setting-connectivity") -SET(SETTING_PKG_CONNECTIVITY "org.tizen.setting-connectivity") - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_connectivity REQUIRED - capi-appfw-app-manager - glib-2.0 - capi-appfw-application - capi-system-runtime-info - dlog - elementary - libtzplatform-config - vconf -) - -FOREACH(flag ${pkgs_connectivity_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_CONNECTIVITY} - ./src/setting-connectivity.c - ./src/setting-connectivity-usb.c - ./src/setting-connectivity-usb-help.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_CONNECTIVITY} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_CONNECTIVITY} ${pkgs_connectivity_LDFLAGS} -pie) -INSTALL(PROGRAMS ${PROJECT_SETTING_CONNECTIVITY} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-connectivity/res/500.settings_upgrade.sh b/setting-connectivity/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-connectivity/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-connectivity/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-connectivity/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-connectivity/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-connectivity/res/edje/accessibility-settings-set-value.edc b/setting-connectivity/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-connectivity/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-connectivity/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-connectivity/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-connectivity/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-connectivity/res/edje/accessibility-smart-switch-accessory.edc b/setting-connectivity/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-connectivity/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-connectivity/res/edje/common-data-define.edc b/setting-connectivity/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-connectivity/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-connectivity/res/edje/font-slider.edc b/setting-connectivity/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-connectivity/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-connectivity/res/edje/gl-item-entry-main.edc b/setting-connectivity/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-connectivity/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-connectivity/res/edje/setting-theme.edc b/setting-connectivity/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-connectivity/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-connectivity/res/edje/storage-graph.edc b/setting-connectivity/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-connectivity/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-connectivity/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-connectivity/res/icons/default_icon_service.png b/setting-connectivity/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-connectivity/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_about_device.png b/setting-connectivity/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_accessibility.png b/setting-connectivity/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_account.png b/setting-connectivity/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_applications.png b/setting-connectivity/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_backup_and_reset.png b/setting-connectivity/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_battery.png b/setting-connectivity/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_bluetooth.png b/setting-connectivity/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_call_setting.png b/setting-connectivity/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_convergence.png b/setting-connectivity/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_data_usage.png b/setting-connectivity/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_date_and_time.png b/setting-connectivity/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_decoration.png b/setting-connectivity/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_developer.png b/setting-connectivity/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_display.png b/setting-connectivity/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_flight.png b/setting-connectivity/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_ic_delete.png b/setting-connectivity/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_ic_location.png b/setting-connectivity/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_language_and_input.png b/setting-connectivity/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_list_developer.png b/setting-connectivity/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-connectivity/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_lockscreen.png b/setting-connectivity/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_mobile_networks.png b/setting-connectivity/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_more_connections.png b/setting-connectivity/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_nfc_and_payment.png b/setting-connectivity/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_privacy_and_safety.png b/setting-connectivity/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_security.png b/setting-connectivity/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_sim_card_magager.png b/setting-connectivity/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_sound_and_notifications.png b/setting-connectivity/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_special_days.png b/setting-connectivity/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_storage.png b/setting-connectivity/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_tethering.png b/setting-connectivity/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-connectivity/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_wallpapers.png b/setting-connectivity/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_wifi.png b/setting-connectivity/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-connectivity/res/icons/list_icon/settings_wifi_direct.png b/setting-connectivity/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-connectivity/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-connectivity/res/icons/mainmenu.png b/setting-connectivity/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-connectivity/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-connectivity/res/icons/org.tizen.setting.png b/setting-connectivity/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-connectivity/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-connectivity/res/icons/plus.png b/setting-connectivity/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-connectivity/res/icons/plus.png and /dev/null differ diff --git a/setting-connectivity/res/icons/preview_focus.#.png b/setting-connectivity/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-connectivity/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-connectivity/res/icons/preview_focus_effect.#.png b/setting-connectivity/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-connectivity/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-connectivity/res/icons/setting_colortheme_select.#.png b/setting-connectivity/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-connectivity/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-connectivity/res/icons/setting_colortheme_select_ef.#.png b/setting-connectivity/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-connectivity/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-connectivity/res/icons/simple_password_bg.#.png b/setting-connectivity/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-connectivity/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-connectivity/res/icons/slider_point.png b/setting-connectivity/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-connectivity/res/icons/slider_point.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_incoming_call.png b/setting-connectivity/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_notification.png b/setting-connectivity/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_notification_mute.png b/setting-connectivity/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_notification_vibrate.png b/setting-connectivity/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_system.png b/setting-connectivity/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_system_mute.png b/setting-connectivity/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_system_vibrate.png b/setting-connectivity/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_volume.png b/setting-connectivity/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_volume_mute.png b/setting-connectivity/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_slider_icon_volume_vibrate.png b/setting-connectivity/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-connectivity/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_volume_ic_setting.png b/setting-connectivity/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-connectivity/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-connectivity/res/icons/sound_volume_popup_bg.#.png b/setting-connectivity/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-connectivity/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-connectivity/res/images/A01-1_progress_pending_01.png b/setting-connectivity/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-connectivity/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-connectivity/res/images/A01-1_progress_pending_01_dim.png b/setting-connectivity/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-connectivity/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-connectivity/res/images/A01-1_progress_pending_02.png b/setting-connectivity/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-connectivity/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-connectivity/res/images/A01-1_progress_pending_02_dim.png b/setting-connectivity/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-connectivity/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-connectivity/res/images/core_progress_bar.#.png b/setting-connectivity/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-connectivity/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-connectivity/res/images/core_slider_handle_normal.png b/setting-connectivity/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-connectivity/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-connectivity/res/images/core_slider_handle_press.png b/setting-connectivity/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-connectivity/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-connectivity/res/images/org.tizen.setting.png b/setting-connectivity/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-connectivity/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-connectivity/res/images/simple_password_bg.#.png b/setting-connectivity/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-connectivity/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-connectivity/res/images/soundalive_progress_point.png b/setting-connectivity/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-connectivity/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-connectivity/res/langlist.india.xml.in b/setting-connectivity/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-connectivity/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-connectivity/res/langlist.xml.in b/setting-connectivity/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-connectivity/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-connectivity/res/langlist_all.xml.in b/setting-connectivity/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-connectivity/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-connectivity/res/media/settings/Alerts/General notification_sdk.wav b/setting-connectivity/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-connectivity/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-connectivity/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-connectivity/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-connectivity/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-connectivity/res/media/settings/Wallpapers/home_001.png b/setting-connectivity/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-connectivity/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-connectivity/res/media/settings/Wallpapers/home_002.png b/setting-connectivity/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-connectivity/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-connectivity/res/media/settings/Wallpapers/home_003.png b/setting-connectivity/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-connectivity/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-connectivity/res/media/settings/Wallpapers/home_004.png b/setting-connectivity/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-connectivity/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-connectivity/res/po/CMakeLists.txt b/setting-connectivity/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-connectivity/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-connectivity/res/ug-setting-shortcut-efl.xml.in b/setting-connectivity/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-connectivity/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-display/CMakeLists.txt b/setting-display/CMakeLists.txt deleted file mode 100755 index b08d5e6c..00000000 --- a/setting-display/CMakeLists.txt +++ /dev/null @@ -1,47 +0,0 @@ -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) -SET(PROJECT_SETTING_DISPLAY "setting-display") -SET(SETTING_PKG_DISPLAY "org.tizen.setting-display") - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_display REQUIRED elementary - capi-appfw-application - glib-2.0 - dlog - capi-system-device - efl-extension - capi-system-system-settings - libtzplatform-config - dpm - vconf - dbus-glib-1 - ) - -FOREACH(flag ${pkgs_display_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_DISPLAY} - ./src/setting-display.c - ./src/setting-display-main.c - ./src/setting-display-brightness.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_DISPLAY} ${pkgs_display_LDFLAGS} -pie) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_DISPLAY} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) - -INSTALL(PROGRAMS ${PROJECT_SETTING_DISPLAY} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-display/res/500.settings_upgrade.sh b/setting-display/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-display/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-display/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-display/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-display/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-display/res/edje/accessibility-settings-set-value.edc b/setting-display/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-display/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-display/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-display/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-display/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-display/res/edje/accessibility-smart-switch-accessory.edc b/setting-display/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-display/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-display/res/edje/common-data-define.edc b/setting-display/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-display/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-display/res/edje/font-slider.edc b/setting-display/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-display/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-display/res/edje/gl-item-entry-main.edc b/setting-display/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-display/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-display/res/edje/setting-theme.edc b/setting-display/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-display/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-display/res/edje/storage-graph.edc b/setting-display/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-display/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-display/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-display/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-display/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-display/res/icons/default_icon_service.png b/setting-display/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-display/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_about_device.png b/setting-display/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-display/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_accessibility.png b/setting-display/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-display/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_account.png b/setting-display/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-display/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_applications.png b/setting-display/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-display/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_backup_and_reset.png b/setting-display/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-display/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_battery.png b/setting-display/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-display/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_bluetooth.png b/setting-display/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-display/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_call_setting.png b/setting-display/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-display/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_convergence.png b/setting-display/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-display/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_data_usage.png b/setting-display/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-display/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_date_and_time.png b/setting-display/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-display/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_decoration.png b/setting-display/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-display/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_developer.png b/setting-display/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-display/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_display.png b/setting-display/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-display/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_flight.png b/setting-display/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-display/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_ic_delete.png b/setting-display/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-display/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_ic_location.png b/setting-display/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-display/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_language_and_input.png b/setting-display/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-display/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_list_developer.png b/setting-display/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-display/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-display/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-display/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_lockscreen.png b/setting-display/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-display/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_mobile_networks.png b/setting-display/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-display/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_more_connections.png b/setting-display/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-display/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_nfc_and_payment.png b/setting-display/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-display/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_privacy_and_safety.png b/setting-display/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-display/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_security.png b/setting-display/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-display/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_sim_card_magager.png b/setting-display/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-display/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_sound_and_notifications.png b/setting-display/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-display/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_special_days.png b/setting-display/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-display/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_storage.png b/setting-display/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-display/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_tethering.png b/setting-display/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-display/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-display/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-display/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_wallpapers.png b/setting-display/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-display/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_wifi.png b/setting-display/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-display/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-display/res/icons/list_icon/settings_wifi_direct.png b/setting-display/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-display/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-display/res/icons/mainmenu.png b/setting-display/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-display/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-display/res/icons/org.tizen.setting.png b/setting-display/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-display/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-display/res/icons/plus.png b/setting-display/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-display/res/icons/plus.png and /dev/null differ diff --git a/setting-display/res/icons/preview_focus.#.png b/setting-display/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-display/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-display/res/icons/preview_focus_effect.#.png b/setting-display/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-display/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-display/res/icons/setting_colortheme_select.#.png b/setting-display/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-display/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-display/res/icons/setting_colortheme_select_ef.#.png b/setting-display/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-display/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-display/res/icons/simple_password_bg.#.png b/setting-display/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-display/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-display/res/icons/slider_point.png b/setting-display/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-display/res/icons/slider_point.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_incoming_call.png b/setting-display/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_notification.png b/setting-display/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_notification_mute.png b/setting-display/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_notification_vibrate.png b/setting-display/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_system.png b/setting-display/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_system_mute.png b/setting-display/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_system_vibrate.png b/setting-display/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_volume.png b/setting-display/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_volume_mute.png b/setting-display/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-display/res/icons/sound_slider_icon_volume_vibrate.png b/setting-display/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-display/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-display/res/icons/sound_volume_ic_setting.png b/setting-display/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-display/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-display/res/icons/sound_volume_popup_bg.#.png b/setting-display/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-display/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-display/res/images/A01-1_progress_pending_01.png b/setting-display/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-display/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-display/res/images/A01-1_progress_pending_01_dim.png b/setting-display/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-display/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-display/res/images/A01-1_progress_pending_02.png b/setting-display/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-display/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-display/res/images/A01-1_progress_pending_02_dim.png b/setting-display/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-display/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-display/res/images/core_progress_bar.#.png b/setting-display/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-display/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-display/res/images/core_slider_handle_normal.png b/setting-display/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-display/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-display/res/images/core_slider_handle_press.png b/setting-display/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-display/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-display/res/images/org.tizen.setting.png b/setting-display/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-display/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-display/res/images/simple_password_bg.#.png b/setting-display/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-display/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-display/res/images/soundalive_progress_point.png b/setting-display/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-display/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-display/res/langlist.india.xml.in b/setting-display/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-display/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-display/res/langlist.xml.in b/setting-display/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-display/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-display/res/langlist_all.xml.in b/setting-display/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-display/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-display/res/media/settings/Alerts/General notification_sdk.wav b/setting-display/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-display/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-display/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-display/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-display/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-display/res/media/settings/Wallpapers/home_001.png b/setting-display/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-display/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-display/res/media/settings/Wallpapers/home_002.png b/setting-display/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-display/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-display/res/media/settings/Wallpapers/home_003.png b/setting-display/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-display/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-display/res/media/settings/Wallpapers/home_004.png b/setting-display/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-display/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-display/res/po/CMakeLists.txt b/setting-display/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-display/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-display/res/ug-setting-shortcut-efl.xml.in b/setting-display/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-display/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-fileview/CMakeLists.txt b/setting-fileview/CMakeLists.txt deleted file mode 100755 index 6747b10c..00000000 --- a/setting-fileview/CMakeLists.txt +++ /dev/null @@ -1,49 +0,0 @@ -SET(PROJECT_SETTING_FILEVIEW "setting-fileview") -SET(SETTING_PKG_FILEVIEW "org.tizen.setting-fileview") - -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_fileview REQUIRED - appcore-common - appcore-efl - capi-appfw-application - chromium-efl - dlog - ecore - elementary - evas - json-glib-1.0 - libtzplatform-config -) - -FOREACH(flag ${pkgs_fileview_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") -SET(CMAKE_LDFLAGS "-Wl,-z,nodelete") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_FILEVIEW} - src/setting-fileview.c - src/setting-fileview-main.c -) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_FILEVIEW} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON}/ -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_FILEVIEW} ${CMAKE_LDFLAGS} ${pkgs_fileview_LDFLAGS} -pie) -INSTALL(PROGRAMS ${PROJECT_SETTING_FILEVIEW} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-fileview/res/500.settings_upgrade.sh b/setting-fileview/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-fileview/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-fileview/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-fileview/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-fileview/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-fileview/res/edje/accessibility-settings-set-value.edc b/setting-fileview/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-fileview/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-fileview/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-fileview/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-fileview/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-fileview/res/edje/accessibility-smart-switch-accessory.edc b/setting-fileview/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-fileview/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-fileview/res/edje/common-data-define.edc b/setting-fileview/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-fileview/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-fileview/res/edje/font-slider.edc b/setting-fileview/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-fileview/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-fileview/res/edje/gl-item-entry-main.edc b/setting-fileview/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-fileview/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-fileview/res/edje/setting-theme.edc b/setting-fileview/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-fileview/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-fileview/res/edje/storage-graph.edc b/setting-fileview/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-fileview/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-fileview/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-fileview/res/icons/default_icon_service.png b/setting-fileview/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-fileview/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_about_device.png b/setting-fileview/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_accessibility.png b/setting-fileview/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_account.png b/setting-fileview/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_applications.png b/setting-fileview/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_backup_and_reset.png b/setting-fileview/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_battery.png b/setting-fileview/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_bluetooth.png b/setting-fileview/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_call_setting.png b/setting-fileview/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_convergence.png b/setting-fileview/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_data_usage.png b/setting-fileview/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_date_and_time.png b/setting-fileview/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_decoration.png b/setting-fileview/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_developer.png b/setting-fileview/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_display.png b/setting-fileview/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_flight.png b/setting-fileview/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_ic_delete.png b/setting-fileview/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_ic_location.png b/setting-fileview/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_language_and_input.png b/setting-fileview/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_list_developer.png b/setting-fileview/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-fileview/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_lockscreen.png b/setting-fileview/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_mobile_networks.png b/setting-fileview/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_more_connections.png b/setting-fileview/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_nfc_and_payment.png b/setting-fileview/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_privacy_and_safety.png b/setting-fileview/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_security.png b/setting-fileview/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_sim_card_magager.png b/setting-fileview/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_sound_and_notifications.png b/setting-fileview/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_special_days.png b/setting-fileview/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_storage.png b/setting-fileview/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_tethering.png b/setting-fileview/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-fileview/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_wallpapers.png b/setting-fileview/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_wifi.png b/setting-fileview/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-fileview/res/icons/list_icon/settings_wifi_direct.png b/setting-fileview/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-fileview/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-fileview/res/icons/mainmenu.png b/setting-fileview/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-fileview/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-fileview/res/icons/org.tizen.setting.png b/setting-fileview/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-fileview/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-fileview/res/icons/plus.png b/setting-fileview/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-fileview/res/icons/plus.png and /dev/null differ diff --git a/setting-fileview/res/icons/preview_focus.#.png b/setting-fileview/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-fileview/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-fileview/res/icons/preview_focus_effect.#.png b/setting-fileview/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-fileview/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-fileview/res/icons/setting_colortheme_select.#.png b/setting-fileview/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-fileview/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-fileview/res/icons/setting_colortheme_select_ef.#.png b/setting-fileview/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-fileview/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-fileview/res/icons/simple_password_bg.#.png b/setting-fileview/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-fileview/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-fileview/res/icons/slider_point.png b/setting-fileview/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-fileview/res/icons/slider_point.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_incoming_call.png b/setting-fileview/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_notification.png b/setting-fileview/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_notification_mute.png b/setting-fileview/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_notification_vibrate.png b/setting-fileview/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_system.png b/setting-fileview/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_system_mute.png b/setting-fileview/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_system_vibrate.png b/setting-fileview/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_volume.png b/setting-fileview/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_volume_mute.png b/setting-fileview/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_slider_icon_volume_vibrate.png b/setting-fileview/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-fileview/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_volume_ic_setting.png b/setting-fileview/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-fileview/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-fileview/res/icons/sound_volume_popup_bg.#.png b/setting-fileview/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-fileview/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-fileview/res/images/A01-1_progress_pending_01.png b/setting-fileview/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-fileview/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-fileview/res/images/A01-1_progress_pending_01_dim.png b/setting-fileview/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-fileview/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-fileview/res/images/A01-1_progress_pending_02.png b/setting-fileview/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-fileview/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-fileview/res/images/A01-1_progress_pending_02_dim.png b/setting-fileview/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-fileview/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-fileview/res/images/core_progress_bar.#.png b/setting-fileview/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-fileview/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-fileview/res/images/core_slider_handle_normal.png b/setting-fileview/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-fileview/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-fileview/res/images/core_slider_handle_press.png b/setting-fileview/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-fileview/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-fileview/res/images/org.tizen.setting.png b/setting-fileview/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-fileview/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-fileview/res/images/simple_password_bg.#.png b/setting-fileview/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-fileview/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-fileview/res/images/soundalive_progress_point.png b/setting-fileview/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-fileview/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-fileview/res/langlist.india.xml.in b/setting-fileview/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-fileview/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-fileview/res/langlist.xml.in b/setting-fileview/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-fileview/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-fileview/res/langlist_all.xml.in b/setting-fileview/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-fileview/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-fileview/res/media/settings/Alerts/General notification_sdk.wav b/setting-fileview/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-fileview/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-fileview/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-fileview/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-fileview/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-fileview/res/media/settings/Wallpapers/home_001.png b/setting-fileview/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-fileview/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-fileview/res/media/settings/Wallpapers/home_002.png b/setting-fileview/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-fileview/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-fileview/res/media/settings/Wallpapers/home_003.png b/setting-fileview/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-fileview/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-fileview/res/media/settings/Wallpapers/home_004.png b/setting-fileview/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-fileview/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-fileview/res/po/CMakeLists.txt b/setting-fileview/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-fileview/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-fileview/res/ug-setting-shortcut-efl.xml.in b/setting-fileview/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-fileview/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-flightmode/CMakeLists.txt b/setting-flightmode/CMakeLists.txt deleted file mode 100755 index bf3b1bdf..00000000 --- a/setting-flightmode/CMakeLists.txt +++ /dev/null @@ -1,44 +0,0 @@ -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) -SET(PROJECT_SETTING_FLIGHTMODE "setting-flightmode") -SET(SETTING_PKG_FLIGHTMODE "org.tizen.setting-flightmode") - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_flightmode REQUIRED - capi-appfw-application - elementary - dlog - efl-extension - vconf - tapi - notification - libtzplatform-config - ) - -FOREACH(flag ${pkgs_flightmode_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_FLIGHTMODE} - ./src/setting-flightmode.c - ./src/setting-flightmode-main.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_FLIGHTMODE} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_FLIGHTMODE} ${pkgs_flightmode_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_FLIGHTMODE} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-flightmode/res/500.settings_upgrade.sh b/setting-flightmode/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-flightmode/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-flightmode/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-flightmode/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-flightmode/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-flightmode/res/edje/accessibility-settings-set-value.edc b/setting-flightmode/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-flightmode/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-flightmode/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-flightmode/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-flightmode/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-flightmode/res/edje/accessibility-smart-switch-accessory.edc b/setting-flightmode/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-flightmode/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-flightmode/res/edje/common-data-define.edc b/setting-flightmode/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-flightmode/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-flightmode/res/edje/font-slider.edc b/setting-flightmode/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-flightmode/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-flightmode/res/edje/gl-item-entry-main.edc b/setting-flightmode/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-flightmode/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-flightmode/res/edje/setting-theme.edc b/setting-flightmode/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-flightmode/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-flightmode/res/edje/storage-graph.edc b/setting-flightmode/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-flightmode/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-flightmode/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-flightmode/res/icons/default_icon_service.png b/setting-flightmode/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-flightmode/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_about_device.png b/setting-flightmode/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_accessibility.png b/setting-flightmode/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_account.png b/setting-flightmode/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_applications.png b/setting-flightmode/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_backup_and_reset.png b/setting-flightmode/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_battery.png b/setting-flightmode/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_bluetooth.png b/setting-flightmode/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_call_setting.png b/setting-flightmode/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_convergence.png b/setting-flightmode/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_data_usage.png b/setting-flightmode/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_date_and_time.png b/setting-flightmode/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_decoration.png b/setting-flightmode/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_developer.png b/setting-flightmode/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_display.png b/setting-flightmode/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_flight.png b/setting-flightmode/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_ic_delete.png b/setting-flightmode/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_ic_location.png b/setting-flightmode/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_language_and_input.png b/setting-flightmode/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_list_developer.png b/setting-flightmode/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-flightmode/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_lockscreen.png b/setting-flightmode/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_mobile_networks.png b/setting-flightmode/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_more_connections.png b/setting-flightmode/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_nfc_and_payment.png b/setting-flightmode/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_privacy_and_safety.png b/setting-flightmode/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_security.png b/setting-flightmode/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_sim_card_magager.png b/setting-flightmode/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_sound_and_notifications.png b/setting-flightmode/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_special_days.png b/setting-flightmode/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_storage.png b/setting-flightmode/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_tethering.png b/setting-flightmode/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-flightmode/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_wallpapers.png b/setting-flightmode/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_wifi.png b/setting-flightmode/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-flightmode/res/icons/list_icon/settings_wifi_direct.png b/setting-flightmode/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-flightmode/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-flightmode/res/icons/mainmenu.png b/setting-flightmode/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-flightmode/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-flightmode/res/icons/org.tizen.setting.png b/setting-flightmode/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-flightmode/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-flightmode/res/icons/plus.png b/setting-flightmode/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-flightmode/res/icons/plus.png and /dev/null differ diff --git a/setting-flightmode/res/icons/preview_focus.#.png b/setting-flightmode/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-flightmode/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-flightmode/res/icons/preview_focus_effect.#.png b/setting-flightmode/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-flightmode/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-flightmode/res/icons/setting_colortheme_select.#.png b/setting-flightmode/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-flightmode/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-flightmode/res/icons/setting_colortheme_select_ef.#.png b/setting-flightmode/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-flightmode/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-flightmode/res/icons/simple_password_bg.#.png b/setting-flightmode/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-flightmode/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-flightmode/res/icons/slider_point.png b/setting-flightmode/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-flightmode/res/icons/slider_point.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_incoming_call.png b/setting-flightmode/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_notification.png b/setting-flightmode/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_notification_mute.png b/setting-flightmode/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_notification_vibrate.png b/setting-flightmode/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_system.png b/setting-flightmode/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_system_mute.png b/setting-flightmode/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_system_vibrate.png b/setting-flightmode/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_volume.png b/setting-flightmode/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_volume_mute.png b/setting-flightmode/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_slider_icon_volume_vibrate.png b/setting-flightmode/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-flightmode/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_volume_ic_setting.png b/setting-flightmode/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-flightmode/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-flightmode/res/icons/sound_volume_popup_bg.#.png b/setting-flightmode/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-flightmode/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-flightmode/res/images/A01-1_progress_pending_01.png b/setting-flightmode/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-flightmode/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-flightmode/res/images/A01-1_progress_pending_01_dim.png b/setting-flightmode/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-flightmode/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-flightmode/res/images/A01-1_progress_pending_02.png b/setting-flightmode/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-flightmode/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-flightmode/res/images/A01-1_progress_pending_02_dim.png b/setting-flightmode/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-flightmode/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-flightmode/res/images/core_progress_bar.#.png b/setting-flightmode/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-flightmode/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-flightmode/res/images/core_slider_handle_normal.png b/setting-flightmode/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-flightmode/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-flightmode/res/images/core_slider_handle_press.png b/setting-flightmode/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-flightmode/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-flightmode/res/images/org.tizen.setting.png b/setting-flightmode/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-flightmode/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-flightmode/res/images/simple_password_bg.#.png b/setting-flightmode/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-flightmode/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-flightmode/res/images/soundalive_progress_point.png b/setting-flightmode/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-flightmode/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-flightmode/res/langlist.india.xml.in b/setting-flightmode/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-flightmode/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-flightmode/res/langlist.xml.in b/setting-flightmode/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-flightmode/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-flightmode/res/langlist_all.xml.in b/setting-flightmode/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-flightmode/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-flightmode/res/media/settings/Alerts/General notification_sdk.wav b/setting-flightmode/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-flightmode/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-flightmode/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-flightmode/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-flightmode/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-flightmode/res/media/settings/Wallpapers/home_001.png b/setting-flightmode/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-flightmode/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-flightmode/res/media/settings/Wallpapers/home_002.png b/setting-flightmode/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-flightmode/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-flightmode/res/media/settings/Wallpapers/home_003.png b/setting-flightmode/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-flightmode/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-flightmode/res/media/settings/Wallpapers/home_004.png b/setting-flightmode/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-flightmode/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-flightmode/res/po/CMakeLists.txt b/setting-flightmode/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-flightmode/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-flightmode/res/ug-setting-shortcut-efl.xml.in b/setting-flightmode/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-flightmode/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-font/CMakeLists.txt b/setting-font/CMakeLists.txt deleted file mode 100755 index 818ef4fb..00000000 --- a/setting-font/CMakeLists.txt +++ /dev/null @@ -1,48 +0,0 @@ -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -SET(PROJECT_SETTING_FONT "setting-font") -SET(SETTING_PKG_FONT "org.tizen.setting-font") - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_font REQUIRED - elementary - efl-extension - capi-appfw-application - capi-system-system-settings - dlog - glib-2.0 - fontconfig - libtzplatform-config - vconf -) - -FOREACH(flag ${pkgs_font_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_FONT} - ./src/setting-font.c - ./src/setting-font-main.c - ./src/setting-font-font-size.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_FONT} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_FONT} ${pkgs_font_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_FONT} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) - diff --git a/setting-font/res/500.settings_upgrade.sh b/setting-font/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-font/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-font/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-font/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-font/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-font/res/edje/accessibility-settings-set-value.edc b/setting-font/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-font/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-font/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-font/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-font/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-font/res/edje/accessibility-smart-switch-accessory.edc b/setting-font/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-font/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-font/res/edje/common-data-define.edc b/setting-font/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-font/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-font/res/edje/font-slider.edc b/setting-font/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-font/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-font/res/edje/gl-item-entry-main.edc b/setting-font/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-font/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-font/res/edje/setting-theme.edc b/setting-font/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-font/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-font/res/edje/storage-graph.edc b/setting-font/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-font/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-font/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-font/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-font/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-font/res/icons/default_icon_service.png b/setting-font/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-font/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_about_device.png b/setting-font/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-font/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_accessibility.png b/setting-font/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-font/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_account.png b/setting-font/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-font/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_applications.png b/setting-font/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-font/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_backup_and_reset.png b/setting-font/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-font/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_battery.png b/setting-font/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-font/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_bluetooth.png b/setting-font/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-font/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_call_setting.png b/setting-font/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-font/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_convergence.png b/setting-font/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-font/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_data_usage.png b/setting-font/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-font/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_date_and_time.png b/setting-font/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-font/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_decoration.png b/setting-font/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-font/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_developer.png b/setting-font/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-font/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_display.png b/setting-font/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-font/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_flight.png b/setting-font/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-font/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_ic_delete.png b/setting-font/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-font/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_ic_location.png b/setting-font/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-font/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_language_and_input.png b/setting-font/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-font/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_list_developer.png b/setting-font/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-font/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-font/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-font/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_lockscreen.png b/setting-font/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-font/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_mobile_networks.png b/setting-font/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-font/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_more_connections.png b/setting-font/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-font/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_nfc_and_payment.png b/setting-font/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-font/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_privacy_and_safety.png b/setting-font/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-font/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_security.png b/setting-font/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-font/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_sim_card_magager.png b/setting-font/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-font/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_sound_and_notifications.png b/setting-font/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-font/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_special_days.png b/setting-font/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-font/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_storage.png b/setting-font/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-font/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_tethering.png b/setting-font/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-font/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-font/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-font/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_wallpapers.png b/setting-font/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-font/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_wifi.png b/setting-font/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-font/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-font/res/icons/list_icon/settings_wifi_direct.png b/setting-font/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-font/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-font/res/icons/mainmenu.png b/setting-font/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-font/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-font/res/icons/org.tizen.setting.png b/setting-font/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-font/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-font/res/icons/plus.png b/setting-font/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-font/res/icons/plus.png and /dev/null differ diff --git a/setting-font/res/icons/preview_focus.#.png b/setting-font/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-font/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-font/res/icons/preview_focus_effect.#.png b/setting-font/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-font/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-font/res/icons/setting_colortheme_select.#.png b/setting-font/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-font/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-font/res/icons/setting_colortheme_select_ef.#.png b/setting-font/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-font/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-font/res/icons/simple_password_bg.#.png b/setting-font/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-font/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-font/res/icons/slider_point.png b/setting-font/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-font/res/icons/slider_point.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_incoming_call.png b/setting-font/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_notification.png b/setting-font/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_notification_mute.png b/setting-font/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_notification_vibrate.png b/setting-font/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_system.png b/setting-font/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_system_mute.png b/setting-font/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_system_vibrate.png b/setting-font/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_volume.png b/setting-font/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_volume_mute.png b/setting-font/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-font/res/icons/sound_slider_icon_volume_vibrate.png b/setting-font/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-font/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-font/res/icons/sound_volume_ic_setting.png b/setting-font/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-font/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-font/res/icons/sound_volume_popup_bg.#.png b/setting-font/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-font/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-font/res/images/A01-1_progress_pending_01.png b/setting-font/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-font/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-font/res/images/A01-1_progress_pending_01_dim.png b/setting-font/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-font/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-font/res/images/A01-1_progress_pending_02.png b/setting-font/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-font/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-font/res/images/A01-1_progress_pending_02_dim.png b/setting-font/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-font/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-font/res/images/core_progress_bar.#.png b/setting-font/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-font/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-font/res/images/core_slider_handle_normal.png b/setting-font/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-font/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-font/res/images/core_slider_handle_press.png b/setting-font/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-font/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-font/res/images/org.tizen.setting.png b/setting-font/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-font/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-font/res/images/simple_password_bg.#.png b/setting-font/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-font/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-font/res/images/soundalive_progress_point.png b/setting-font/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-font/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-font/res/langlist.india.xml.in b/setting-font/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-font/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-font/res/langlist.xml.in b/setting-font/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-font/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-font/res/langlist_all.xml.in b/setting-font/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-font/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-font/res/media/settings/Alerts/General notification_sdk.wav b/setting-font/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-font/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-font/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-font/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-font/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-font/res/media/settings/Wallpapers/home_001.png b/setting-font/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-font/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-font/res/media/settings/Wallpapers/home_002.png b/setting-font/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-font/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-font/res/media/settings/Wallpapers/home_003.png b/setting-font/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-font/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-font/res/media/settings/Wallpapers/home_004.png b/setting-font/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-font/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-font/res/po/CMakeLists.txt b/setting-font/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-font/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-font/res/ug-setting-shortcut-efl.xml.in b/setting-font/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-font/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-language-and-input/CMakeLists.txt b/setting-language-and-input/CMakeLists.txt deleted file mode 100755 index 94a000f6..00000000 --- a/setting-language-and-input/CMakeLists.txt +++ /dev/null @@ -1,49 +0,0 @@ -SET(PROJECT_SETTING_LANGUAGE_AND_INPUT "setting-language-and-input") -SET(SETTING_PKG_LANGUAGE_AND_INPUT "org.tizen.setting-language-and-input") - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_language_and_input REQUIRED - capi-appfw-application - capi-base-utils-i18n - capi-system-system-settings - dlog - elementary - libtzplatform-config - pkgmgr-info - tapi - vconf -) - -FOREACH(flag ${pkgs_language_and_input_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-D_FILE_OFFSET_BITS=64") -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -#SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_LANGUAGE_AND_INPUT} - ./src/setting-language-and-input.c - ./src/setting-language-and-input-view.c - ./src/setting-display-language-view.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_LANGUAGE_AND_INPUT} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} - -lsetting-common -licui18n -licudata -licuuc) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_LANGUAGE_AND_INPUT} ${pkgs_language_and_input_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_LANGUAGE_AND_INPUT} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-language-and-input/res/500.settings_upgrade.sh b/setting-language-and-input/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-language-and-input/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-language-and-input/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-language-and-input/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-language-and-input/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-language-and-input/res/edje/accessibility-settings-set-value.edc b/setting-language-and-input/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-language-and-input/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-language-and-input/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-language-and-input/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-language-and-input/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-language-and-input/res/edje/accessibility-smart-switch-accessory.edc b/setting-language-and-input/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-language-and-input/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-language-and-input/res/edje/common-data-define.edc b/setting-language-and-input/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-language-and-input/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-language-and-input/res/edje/font-slider.edc b/setting-language-and-input/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-language-and-input/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-language-and-input/res/edje/gl-item-entry-main.edc b/setting-language-and-input/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-language-and-input/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-language-and-input/res/edje/setting-theme.edc b/setting-language-and-input/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-language-and-input/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-language-and-input/res/edje/storage-graph.edc b/setting-language-and-input/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-language-and-input/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-language-and-input/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/default_icon_service.png b/setting-language-and-input/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-language-and-input/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_about_device.png b/setting-language-and-input/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_accessibility.png b/setting-language-and-input/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_account.png b/setting-language-and-input/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_applications.png b/setting-language-and-input/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_backup_and_reset.png b/setting-language-and-input/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_battery.png b/setting-language-and-input/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_bluetooth.png b/setting-language-and-input/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_call_setting.png b/setting-language-and-input/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_convergence.png b/setting-language-and-input/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_data_usage.png b/setting-language-and-input/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_date_and_time.png b/setting-language-and-input/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_decoration.png b/setting-language-and-input/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_developer.png b/setting-language-and-input/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_display.png b/setting-language-and-input/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_flight.png b/setting-language-and-input/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_ic_delete.png b/setting-language-and-input/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_ic_location.png b/setting-language-and-input/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_language_and_input.png b/setting-language-and-input/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_list_developer.png b/setting-language-and-input/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-language-and-input/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_lockscreen.png b/setting-language-and-input/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_mobile_networks.png b/setting-language-and-input/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_more_connections.png b/setting-language-and-input/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_nfc_and_payment.png b/setting-language-and-input/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_privacy_and_safety.png b/setting-language-and-input/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_security.png b/setting-language-and-input/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_sim_card_magager.png b/setting-language-and-input/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_sound_and_notifications.png b/setting-language-and-input/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_special_days.png b/setting-language-and-input/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_storage.png b/setting-language-and-input/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_tethering.png b/setting-language-and-input/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-language-and-input/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_wallpapers.png b/setting-language-and-input/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_wifi.png b/setting-language-and-input/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/list_icon/settings_wifi_direct.png b/setting-language-and-input/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-language-and-input/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/mainmenu.png b/setting-language-and-input/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-language-and-input/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/org.tizen.setting.png b/setting-language-and-input/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-language-and-input/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/plus.png b/setting-language-and-input/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-language-and-input/res/icons/plus.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/preview_focus.#.png b/setting-language-and-input/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-language-and-input/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/preview_focus_effect.#.png b/setting-language-and-input/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-language-and-input/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/setting_colortheme_select.#.png b/setting-language-and-input/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-language-and-input/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/setting_colortheme_select_ef.#.png b/setting-language-and-input/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-language-and-input/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/simple_password_bg.#.png b/setting-language-and-input/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-language-and-input/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/slider_point.png b/setting-language-and-input/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-language-and-input/res/icons/slider_point.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_incoming_call.png b/setting-language-and-input/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_notification.png b/setting-language-and-input/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_notification_mute.png b/setting-language-and-input/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_notification_vibrate.png b/setting-language-and-input/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_system.png b/setting-language-and-input/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_system_mute.png b/setting-language-and-input/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_system_vibrate.png b/setting-language-and-input/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_volume.png b/setting-language-and-input/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_volume_mute.png b/setting-language-and-input/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_slider_icon_volume_vibrate.png b/setting-language-and-input/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-language-and-input/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_volume_ic_setting.png b/setting-language-and-input/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-language-and-input/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-language-and-input/res/icons/sound_volume_popup_bg.#.png b/setting-language-and-input/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-language-and-input/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-language-and-input/res/images/A01-1_progress_pending_01.png b/setting-language-and-input/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-language-and-input/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-language-and-input/res/images/A01-1_progress_pending_01_dim.png b/setting-language-and-input/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-language-and-input/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-language-and-input/res/images/A01-1_progress_pending_02.png b/setting-language-and-input/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-language-and-input/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-language-and-input/res/images/A01-1_progress_pending_02_dim.png b/setting-language-and-input/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-language-and-input/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-language-and-input/res/images/core_progress_bar.#.png b/setting-language-and-input/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-language-and-input/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-language-and-input/res/images/core_slider_handle_normal.png b/setting-language-and-input/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-language-and-input/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-language-and-input/res/images/core_slider_handle_press.png b/setting-language-and-input/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-language-and-input/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-language-and-input/res/images/org.tizen.setting.png b/setting-language-and-input/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-language-and-input/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-language-and-input/res/images/simple_password_bg.#.png b/setting-language-and-input/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-language-and-input/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-language-and-input/res/images/soundalive_progress_point.png b/setting-language-and-input/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-language-and-input/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-language-and-input/res/media/settings/Alerts/General notification_sdk.wav b/setting-language-and-input/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-language-and-input/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-language-and-input/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-language-and-input/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-language-and-input/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-language-and-input/res/media/settings/Wallpapers/home_001.png b/setting-language-and-input/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-language-and-input/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-language-and-input/res/media/settings/Wallpapers/home_002.png b/setting-language-and-input/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-language-and-input/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-language-and-input/res/media/settings/Wallpapers/home_003.png b/setting-language-and-input/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-language-and-input/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-language-and-input/res/media/settings/Wallpapers/home_004.png b/setting-language-and-input/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-language-and-input/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-language-and-input/res/po/CMakeLists.txt b/setting-language-and-input/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-language-and-input/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-language-and-input/res/ug-setting-shortcut-efl.xml.in b/setting-language-and-input/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-language-and-input/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-license/CMakeLists.txt b/setting-license/CMakeLists.txt deleted file mode 100755 index 4973a8fd..00000000 --- a/setting-license/CMakeLists.txt +++ /dev/null @@ -1,41 +0,0 @@ -SET(PROJECT_SETTING_LICENSE "setting-license") -SET(SETTING_PKG_LICENSE "org.tizen.setting-license") - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_license REQUIRED - capi-appfw-application - dlog - elementary - minizip -) - -FOREACH(flag ${pkgs_license_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-D_FILE_OFFSET_BITS=64") -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -ADD_EXECUTABLE(${PROJECT_SETTING_LICENSE} - ./src/setting-license.c - ./src/setting-license-view.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_LICENSE} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} - -lsetting-common -licui18n -licudata -licuuc) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_LICENSE} ${pkgs_license_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_LICENSE} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-license/res/500.settings_upgrade.sh b/setting-license/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-license/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-license/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-license/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-license/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-license/res/edje/accessibility-settings-set-value.edc b/setting-license/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-license/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-license/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-license/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-license/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-license/res/edje/accessibility-smart-switch-accessory.edc b/setting-license/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-license/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-license/res/edje/common-data-define.edc b/setting-license/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-license/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-license/res/edje/font-slider.edc b/setting-license/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-license/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-license/res/edje/gl-item-entry-main.edc b/setting-license/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-license/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-license/res/edje/setting-theme.edc b/setting-license/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-license/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-license/res/edje/storage-graph.edc b/setting-license/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-license/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-license/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-license/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-license/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-license/res/icons/default_icon_service.png b/setting-license/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-license/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_about_device.png b/setting-license/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-license/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_accessibility.png b/setting-license/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-license/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_account.png b/setting-license/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-license/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_applications.png b/setting-license/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-license/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_backup_and_reset.png b/setting-license/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-license/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_battery.png b/setting-license/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-license/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_bluetooth.png b/setting-license/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-license/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_call_setting.png b/setting-license/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-license/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_convergence.png b/setting-license/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-license/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_data_usage.png b/setting-license/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-license/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_date_and_time.png b/setting-license/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-license/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_decoration.png b/setting-license/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-license/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_developer.png b/setting-license/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-license/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_display.png b/setting-license/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-license/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_flight.png b/setting-license/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-license/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_ic_delete.png b/setting-license/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-license/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_ic_location.png b/setting-license/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-license/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_language_and_input.png b/setting-license/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-license/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_list_developer.png b/setting-license/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-license/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-license/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-license/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_lockscreen.png b/setting-license/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-license/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_mobile_networks.png b/setting-license/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-license/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_more_connections.png b/setting-license/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-license/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_nfc_and_payment.png b/setting-license/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-license/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_privacy_and_safety.png b/setting-license/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-license/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_security.png b/setting-license/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-license/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_sim_card_magager.png b/setting-license/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-license/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_sound_and_notifications.png b/setting-license/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-license/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_special_days.png b/setting-license/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-license/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_storage.png b/setting-license/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-license/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_tethering.png b/setting-license/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-license/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-license/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-license/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_wallpapers.png b/setting-license/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-license/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_wifi.png b/setting-license/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-license/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-license/res/icons/list_icon/settings_wifi_direct.png b/setting-license/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-license/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-license/res/icons/mainmenu.png b/setting-license/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-license/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-license/res/icons/org.tizen.setting.png b/setting-license/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-license/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-license/res/icons/plus.png b/setting-license/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-license/res/icons/plus.png and /dev/null differ diff --git a/setting-license/res/icons/preview_focus.#.png b/setting-license/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-license/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-license/res/icons/preview_focus_effect.#.png b/setting-license/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-license/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-license/res/icons/setting_colortheme_select.#.png b/setting-license/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-license/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-license/res/icons/setting_colortheme_select_ef.#.png b/setting-license/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-license/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-license/res/icons/simple_password_bg.#.png b/setting-license/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-license/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-license/res/icons/slider_point.png b/setting-license/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-license/res/icons/slider_point.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_incoming_call.png b/setting-license/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_notification.png b/setting-license/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_notification_mute.png b/setting-license/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_notification_vibrate.png b/setting-license/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_system.png b/setting-license/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_system_mute.png b/setting-license/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_system_vibrate.png b/setting-license/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_volume.png b/setting-license/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_volume_mute.png b/setting-license/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-license/res/icons/sound_slider_icon_volume_vibrate.png b/setting-license/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-license/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-license/res/icons/sound_volume_ic_setting.png b/setting-license/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-license/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-license/res/icons/sound_volume_popup_bg.#.png b/setting-license/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-license/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-license/res/images/A01-1_progress_pending_01.png b/setting-license/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-license/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-license/res/images/A01-1_progress_pending_01_dim.png b/setting-license/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-license/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-license/res/images/A01-1_progress_pending_02.png b/setting-license/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-license/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-license/res/images/A01-1_progress_pending_02_dim.png b/setting-license/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-license/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-license/res/images/core_progress_bar.#.png b/setting-license/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-license/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-license/res/images/core_slider_handle_normal.png b/setting-license/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-license/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-license/res/images/core_slider_handle_press.png b/setting-license/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-license/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-license/res/images/org.tizen.setting.png b/setting-license/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-license/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-license/res/images/simple_password_bg.#.png b/setting-license/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-license/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-license/res/images/soundalive_progress_point.png b/setting-license/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-license/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-license/res/langlist.india.xml.in b/setting-license/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-license/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-license/res/langlist.xml.in b/setting-license/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-license/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-license/res/langlist_all.xml.in b/setting-license/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-license/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-license/res/media/settings/Alerts/General notification_sdk.wav b/setting-license/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-license/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-license/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-license/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-license/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-license/res/media/settings/Wallpapers/home_001.png b/setting-license/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-license/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-license/res/media/settings/Wallpapers/home_002.png b/setting-license/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-license/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-license/res/media/settings/Wallpapers/home_003.png b/setting-license/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-license/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-license/res/media/settings/Wallpapers/home_004.png b/setting-license/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-license/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-license/res/po/CMakeLists.txt b/setting-license/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-license/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-license/res/ug-setting-shortcut-efl.xml.in b/setting-license/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-license/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-locktype/CMakeLists.txt b/setting-locktype/CMakeLists.txt deleted file mode 100755 index 8e2b3f37..00000000 --- a/setting-locktype/CMakeLists.txt +++ /dev/null @@ -1,45 +0,0 @@ -SET(PROJECT_SETTING_LOCKTYPE "setting-locktype") -SET(SETTING_PKG_LOCKTYPE "org.tizen.setting-locktype") - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_locktype REQUIRED - auth-fw - capi-appfw-application - dlog - dpm - efl-extension - elementary - vconf -) - -FOREACH(flag ${pkgs_locktype_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_LOCKTYPE} - ./src/setting-locktype.c - ./src/setting-locktype-main.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_LOCKTYPE} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_LOCKTYPE} ${pkgs_locktype_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_LOCKTYPE} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) - diff --git a/setting-locktype/edje/accessibility-settings-set-value.edc b/setting-locktype/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-locktype/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-locktype/edje/accessibility-smart-switch-accessory-popup.edc b/setting-locktype/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-locktype/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-locktype/edje/accessibility-smart-switch-accessory.edc b/setting-locktype/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-locktype/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-locktype/edje/common-data-define.edc b/setting-locktype/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-locktype/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-locktype/edje/font-slider.edc b/setting-locktype/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-locktype/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-locktype/edje/gl-item-entry-main.edc b/setting-locktype/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-locktype/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-locktype/edje/setting-theme.edc b/setting-locktype/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-locktype/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-locktype/edje/storage-graph.edc b/setting-locktype/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-locktype/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-locktype/res/500.settings_upgrade.sh b/setting-locktype/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-locktype/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-locktype/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-locktype/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-locktype/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-locktype/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-locktype/res/icons/default_icon_service.png b/setting-locktype/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-locktype/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_about_device.png b/setting-locktype/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_accessibility.png b/setting-locktype/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_account.png b/setting-locktype/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_applications.png b/setting-locktype/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_backup_and_reset.png b/setting-locktype/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_battery.png b/setting-locktype/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_bluetooth.png b/setting-locktype/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_call_setting.png b/setting-locktype/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_convergence.png b/setting-locktype/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_data_usage.png b/setting-locktype/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_date_and_time.png b/setting-locktype/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_decoration.png b/setting-locktype/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_developer.png b/setting-locktype/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_display.png b/setting-locktype/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_flight.png b/setting-locktype/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_ic_delete.png b/setting-locktype/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_ic_location.png b/setting-locktype/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_language_and_input.png b/setting-locktype/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_list_developer.png b/setting-locktype/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-locktype/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_lockscreen.png b/setting-locktype/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_mobile_networks.png b/setting-locktype/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_more_connections.png b/setting-locktype/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_nfc_and_payment.png b/setting-locktype/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_privacy_and_safety.png b/setting-locktype/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_security.png b/setting-locktype/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_sim_card_magager.png b/setting-locktype/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_sound_and_notifications.png b/setting-locktype/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_special_days.png b/setting-locktype/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_storage.png b/setting-locktype/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_tethering.png b/setting-locktype/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-locktype/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_wallpapers.png b/setting-locktype/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_wifi.png b/setting-locktype/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-locktype/res/icons/list_icon/settings_wifi_direct.png b/setting-locktype/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-locktype/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-locktype/res/icons/mainmenu.png b/setting-locktype/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-locktype/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-locktype/res/icons/org.tizen.setting.png b/setting-locktype/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-locktype/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-locktype/res/icons/plus.png b/setting-locktype/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-locktype/res/icons/plus.png and /dev/null differ diff --git a/setting-locktype/res/icons/preview_focus.#.png b/setting-locktype/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-locktype/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-locktype/res/icons/preview_focus_effect.#.png b/setting-locktype/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-locktype/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-locktype/res/icons/setting_colortheme_select.#.png b/setting-locktype/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-locktype/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-locktype/res/icons/setting_colortheme_select_ef.#.png b/setting-locktype/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-locktype/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-locktype/res/icons/simple_password_bg.#.png b/setting-locktype/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-locktype/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-locktype/res/icons/slider_point.png b/setting-locktype/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-locktype/res/icons/slider_point.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_incoming_call.png b/setting-locktype/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_notification.png b/setting-locktype/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_notification_mute.png b/setting-locktype/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_notification_vibrate.png b/setting-locktype/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_system.png b/setting-locktype/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_system_mute.png b/setting-locktype/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_system_vibrate.png b/setting-locktype/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_volume.png b/setting-locktype/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_volume_mute.png b/setting-locktype/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_slider_icon_volume_vibrate.png b/setting-locktype/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-locktype/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_volume_ic_setting.png b/setting-locktype/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-locktype/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-locktype/res/icons/sound_volume_popup_bg.#.png b/setting-locktype/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-locktype/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-locktype/res/images/A01-1_progress_pending_01.png b/setting-locktype/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-locktype/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-locktype/res/images/A01-1_progress_pending_01_dim.png b/setting-locktype/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-locktype/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-locktype/res/images/A01-1_progress_pending_02.png b/setting-locktype/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-locktype/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-locktype/res/images/A01-1_progress_pending_02_dim.png b/setting-locktype/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-locktype/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-locktype/res/images/core_progress_bar.#.png b/setting-locktype/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-locktype/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-locktype/res/images/core_slider_handle_normal.png b/setting-locktype/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-locktype/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-locktype/res/images/core_slider_handle_press.png b/setting-locktype/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-locktype/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-locktype/res/images/org.tizen.setting.png b/setting-locktype/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-locktype/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-locktype/res/images/simple_password_bg.#.png b/setting-locktype/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-locktype/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-locktype/res/images/soundalive_progress_point.png b/setting-locktype/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-locktype/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-locktype/res/langlist.india.xml.in b/setting-locktype/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-locktype/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-locktype/res/langlist.xml.in b/setting-locktype/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-locktype/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-locktype/res/langlist_all.xml.in b/setting-locktype/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-locktype/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-locktype/res/media/settings/Alerts/General notification_sdk.wav b/setting-locktype/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-locktype/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-locktype/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-locktype/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-locktype/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-locktype/res/media/settings/Wallpapers/home_001.png b/setting-locktype/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-locktype/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-locktype/res/media/settings/Wallpapers/home_002.png b/setting-locktype/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-locktype/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-locktype/res/media/settings/Wallpapers/home_003.png b/setting-locktype/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-locktype/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-locktype/res/media/settings/Wallpapers/home_004.png b/setting-locktype/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-locktype/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-locktype/res/po/CMakeLists.txt b/setting-locktype/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-locktype/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-locktype/res/ug-setting-shortcut-efl.xml.in b/setting-locktype/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-locktype/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-main/res/500.settings_upgrade.sh b/setting-main/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-main/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-main/res/edje/accessibility-settings-set-value.edc b/setting-main/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-main/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-main/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-main/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-main/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-main/res/edje/accessibility-smart-switch-accessory.edc b/setting-main/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-main/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-main/res/langlist.india.xml.in b/setting-main/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-main/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-main/res/langlist.xml.in b/setting-main/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-main/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-main/res/langlist_all.xml.in b/setting-main/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-main/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-main/res/media/settings/Alerts/General notification_sdk.wav b/setting-main/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-main/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-main/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-main/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-main/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-main/res/media/settings/Wallpapers/home_001.png b/setting-main/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-main/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-main/res/media/settings/Wallpapers/home_002.png b/setting-main/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-main/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-main/res/media/settings/Wallpapers/home_003.png b/setting-main/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-main/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-main/res/media/settings/Wallpapers/home_004.png b/setting-main/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-main/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-main/res/po/CMakeLists.txt b/setting-main/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-main/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-main/res/ug-setting-shortcut-efl.xml.in b/setting-main/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-main/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-network/CMakeLists.txt b/setting-network/CMakeLists.txt deleted file mode 100755 index 99b51d08..00000000 --- a/setting-network/CMakeLists.txt +++ /dev/null @@ -1,53 +0,0 @@ -SET(PROJECT_SETTING_NETWORK "setting-network") -SET(SETTING_PKG_NETWORK "org.tizen.setting-network") - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_network REQUIRED - callmgr_client - capi-appfw-application - capi-network-connection - capi-system-system-settings - dlog - efl-extension - elementary - tapi - vconf -) - -FOREACH(flag ${pkgs_network_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_NETWORK} - ./src/setting-network.c - ./src/setting-network-main.c - ./src/setting-network-service-providers.c - ./src/setting-network-con.c - ./src/setting-network-con-list.c - ./src/setting-network-profile-delete.c - ./src/setting-network-connection-create.c - ./src/setting-network-mode.c - ) - - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_NETWORK} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_NETWORK} ${pkgs_network_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_NETWORK} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-network/res/500.settings_upgrade.sh b/setting-network/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-network/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-network/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-network/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-network/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-network/res/edje/accessibility-settings-set-value.edc b/setting-network/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-network/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-network/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-network/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-network/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-network/res/edje/accessibility-smart-switch-accessory.edc b/setting-network/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-network/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-network/res/edje/common-data-define.edc b/setting-network/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-network/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-network/res/edje/font-slider.edc b/setting-network/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-network/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-network/res/edje/gl-item-entry-main.edc b/setting-network/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-network/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-network/res/edje/setting-theme.edc b/setting-network/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-network/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-network/res/edje/storage-graph.edc b/setting-network/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-network/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-network/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-network/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-network/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-network/res/icons/default_icon_service.png b/setting-network/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-network/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_about_device.png b/setting-network/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-network/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_accessibility.png b/setting-network/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-network/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_account.png b/setting-network/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-network/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_applications.png b/setting-network/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-network/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_backup_and_reset.png b/setting-network/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-network/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_battery.png b/setting-network/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-network/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_bluetooth.png b/setting-network/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-network/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_call_setting.png b/setting-network/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-network/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_convergence.png b/setting-network/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-network/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_data_usage.png b/setting-network/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-network/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_date_and_time.png b/setting-network/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-network/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_decoration.png b/setting-network/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-network/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_developer.png b/setting-network/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-network/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_display.png b/setting-network/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-network/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_flight.png b/setting-network/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-network/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_ic_delete.png b/setting-network/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-network/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_ic_location.png b/setting-network/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-network/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_language_and_input.png b/setting-network/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-network/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_list_developer.png b/setting-network/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-network/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-network/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-network/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_lockscreen.png b/setting-network/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-network/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_mobile_networks.png b/setting-network/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-network/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_more_connections.png b/setting-network/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-network/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_nfc_and_payment.png b/setting-network/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-network/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_privacy_and_safety.png b/setting-network/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-network/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_security.png b/setting-network/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-network/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_sim_card_magager.png b/setting-network/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-network/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_sound_and_notifications.png b/setting-network/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-network/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_special_days.png b/setting-network/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-network/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_storage.png b/setting-network/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-network/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_tethering.png b/setting-network/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-network/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-network/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-network/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_wallpapers.png b/setting-network/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-network/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_wifi.png b/setting-network/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-network/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-network/res/icons/list_icon/settings_wifi_direct.png b/setting-network/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-network/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-network/res/icons/mainmenu.png b/setting-network/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-network/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-network/res/icons/org.tizen.setting.png b/setting-network/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-network/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-network/res/icons/plus.png b/setting-network/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-network/res/icons/plus.png and /dev/null differ diff --git a/setting-network/res/icons/preview_focus.#.png b/setting-network/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-network/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-network/res/icons/preview_focus_effect.#.png b/setting-network/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-network/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-network/res/icons/setting_colortheme_select.#.png b/setting-network/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-network/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-network/res/icons/setting_colortheme_select_ef.#.png b/setting-network/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-network/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-network/res/icons/simple_password_bg.#.png b/setting-network/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-network/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-network/res/icons/slider_point.png b/setting-network/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-network/res/icons/slider_point.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_incoming_call.png b/setting-network/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_notification.png b/setting-network/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_notification_mute.png b/setting-network/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_notification_vibrate.png b/setting-network/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_system.png b/setting-network/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_system_mute.png b/setting-network/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_system_vibrate.png b/setting-network/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_volume.png b/setting-network/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_volume_mute.png b/setting-network/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-network/res/icons/sound_slider_icon_volume_vibrate.png b/setting-network/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-network/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-network/res/icons/sound_volume_ic_setting.png b/setting-network/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-network/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-network/res/icons/sound_volume_popup_bg.#.png b/setting-network/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-network/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-network/res/images/A01-1_progress_pending_01.png b/setting-network/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-network/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-network/res/images/A01-1_progress_pending_01_dim.png b/setting-network/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-network/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-network/res/images/A01-1_progress_pending_02.png b/setting-network/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-network/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-network/res/images/A01-1_progress_pending_02_dim.png b/setting-network/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-network/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-network/res/images/core_progress_bar.#.png b/setting-network/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-network/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-network/res/images/core_slider_handle_normal.png b/setting-network/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-network/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-network/res/images/core_slider_handle_press.png b/setting-network/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-network/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-network/res/images/org.tizen.setting.png b/setting-network/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-network/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-network/res/images/simple_password_bg.#.png b/setting-network/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-network/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-network/res/images/soundalive_progress_point.png b/setting-network/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-network/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-network/res/langlist.india.xml.in b/setting-network/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-network/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-network/res/langlist.xml.in b/setting-network/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-network/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-network/res/langlist_all.xml.in b/setting-network/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-network/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-network/res/media/settings/Alerts/General notification_sdk.wav b/setting-network/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-network/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-network/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-network/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-network/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-network/res/media/settings/Wallpapers/home_001.png b/setting-network/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-network/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-network/res/media/settings/Wallpapers/home_002.png b/setting-network/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-network/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-network/res/media/settings/Wallpapers/home_003.png b/setting-network/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-network/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-network/res/media/settings/Wallpapers/home_004.png b/setting-network/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-network/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-network/res/po/CMakeLists.txt b/setting-network/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-network/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-network/res/ug-setting-shortcut-efl.xml.in b/setting-network/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-network/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-password/CMakeLists.txt b/setting-password/CMakeLists.txt deleted file mode 100755 index c4c832af..00000000 --- a/setting-password/CMakeLists.txt +++ /dev/null @@ -1,48 +0,0 @@ -SET(PROJECT_SETTING_PASSWORD "setting-password") -SET(SETTING_PKG_PASSWORD "org.tizen.setting-password") - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - - -INCLUDE(FindPkgConfig) - -pkg_check_modules(pkgs_password REQUIRED - auth-fw - capi-appfw-application - dlog - elementary - ode - tapi - vconf -) - -FOREACH(flag ${pkgs_password_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib -pie") - -ADD_EXECUTABLE(${PROJECT_SETTING_PASSWORD} - ./src/setting-password.c - ./src/setting-password-sim.c - ./src/setting-password-normal.c - ./src/setting-password-simple.c -) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_PASSWORD} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_PASSWORD} ${pkgs_password_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_PASSWORD} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-password/res/500.settings_upgrade.sh b/setting-password/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-password/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-password/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-password/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-password/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-password/res/edje/accessibility-settings-set-value.edc b/setting-password/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-password/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-password/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-password/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-password/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-password/res/edje/accessibility-smart-switch-accessory.edc b/setting-password/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-password/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-password/res/edje/common-data-define.edc b/setting-password/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-password/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-password/res/edje/font-slider.edc b/setting-password/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-password/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-password/res/edje/gl-item-entry-main.edc b/setting-password/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-password/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-password/res/edje/setting-theme.edc b/setting-password/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-password/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-password/res/edje/storage-graph.edc b/setting-password/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-password/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-password/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-password/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-password/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-password/res/icons/default_icon_service.png b/setting-password/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-password/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_about_device.png b/setting-password/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-password/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_accessibility.png b/setting-password/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-password/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_account.png b/setting-password/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-password/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_applications.png b/setting-password/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-password/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_backup_and_reset.png b/setting-password/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-password/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_battery.png b/setting-password/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-password/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_bluetooth.png b/setting-password/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-password/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_call_setting.png b/setting-password/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-password/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_convergence.png b/setting-password/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-password/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_data_usage.png b/setting-password/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-password/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_date_and_time.png b/setting-password/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-password/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_decoration.png b/setting-password/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-password/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_developer.png b/setting-password/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-password/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_display.png b/setting-password/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-password/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_flight.png b/setting-password/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-password/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_ic_delete.png b/setting-password/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-password/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_ic_location.png b/setting-password/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-password/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_language_and_input.png b/setting-password/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-password/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_list_developer.png b/setting-password/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-password/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-password/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-password/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_lockscreen.png b/setting-password/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-password/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_mobile_networks.png b/setting-password/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-password/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_more_connections.png b/setting-password/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-password/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_nfc_and_payment.png b/setting-password/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-password/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_privacy_and_safety.png b/setting-password/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-password/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_security.png b/setting-password/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-password/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_sim_card_magager.png b/setting-password/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-password/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_sound_and_notifications.png b/setting-password/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-password/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_special_days.png b/setting-password/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-password/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_storage.png b/setting-password/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-password/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_tethering.png b/setting-password/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-password/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-password/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-password/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_wallpapers.png b/setting-password/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-password/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_wifi.png b/setting-password/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-password/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-password/res/icons/list_icon/settings_wifi_direct.png b/setting-password/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-password/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-password/res/icons/mainmenu.png b/setting-password/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-password/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-password/res/icons/org.tizen.setting.png b/setting-password/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-password/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-password/res/icons/plus.png b/setting-password/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-password/res/icons/plus.png and /dev/null differ diff --git a/setting-password/res/icons/preview_focus.#.png b/setting-password/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-password/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-password/res/icons/preview_focus_effect.#.png b/setting-password/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-password/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-password/res/icons/setting_colortheme_select.#.png b/setting-password/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-password/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-password/res/icons/setting_colortheme_select_ef.#.png b/setting-password/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-password/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-password/res/icons/simple_password_bg.#.png b/setting-password/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-password/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-password/res/icons/slider_point.png b/setting-password/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-password/res/icons/slider_point.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_incoming_call.png b/setting-password/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_notification.png b/setting-password/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_notification_mute.png b/setting-password/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_notification_vibrate.png b/setting-password/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_system.png b/setting-password/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_system_mute.png b/setting-password/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_system_vibrate.png b/setting-password/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_volume.png b/setting-password/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_volume_mute.png b/setting-password/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-password/res/icons/sound_slider_icon_volume_vibrate.png b/setting-password/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-password/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-password/res/icons/sound_volume_ic_setting.png b/setting-password/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-password/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-password/res/icons/sound_volume_popup_bg.#.png b/setting-password/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-password/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-password/res/images/A01-1_progress_pending_01.png b/setting-password/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-password/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-password/res/images/A01-1_progress_pending_01_dim.png b/setting-password/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-password/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-password/res/images/A01-1_progress_pending_02.png b/setting-password/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-password/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-password/res/images/A01-1_progress_pending_02_dim.png b/setting-password/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-password/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-password/res/images/core_progress_bar.#.png b/setting-password/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-password/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-password/res/images/core_slider_handle_normal.png b/setting-password/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-password/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-password/res/images/core_slider_handle_press.png b/setting-password/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-password/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-password/res/images/org.tizen.setting.png b/setting-password/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-password/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-password/res/images/simple_password_bg.#.png b/setting-password/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-password/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-password/res/images/soundalive_progress_point.png b/setting-password/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-password/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-password/res/langlist.india.xml.in b/setting-password/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-password/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-password/res/langlist.xml.in b/setting-password/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-password/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-password/res/langlist_all.xml.in b/setting-password/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-password/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-password/res/media/settings/Alerts/General notification_sdk.wav b/setting-password/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-password/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-password/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-password/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-password/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-password/res/media/settings/Wallpapers/home_001.png b/setting-password/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-password/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-password/res/media/settings/Wallpapers/home_002.png b/setting-password/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-password/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-password/res/media/settings/Wallpapers/home_003.png b/setting-password/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-password/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-password/res/media/settings/Wallpapers/home_004.png b/setting-password/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-password/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-password/res/po/CMakeLists.txt b/setting-password/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-password/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-password/res/ug-setting-shortcut-efl.xml.in b/setting-password/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-password/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-privacy/CMakeLists.txt b/setting-privacy/CMakeLists.txt deleted file mode 100755 index d262bd24..00000000 --- a/setting-privacy/CMakeLists.txt +++ /dev/null @@ -1,42 +0,0 @@ -SET(PROJECT_SETTING_PRIVACY "setting-privacy") -SET(SETTING_PKG_PRIVACY "org.tizen.setting-privacy") - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_privacy REQUIRED - capi-appfw-application - dlog - efl-extension - elementary - vconf -) - -FOREACH(flag ${pkgs_privacy_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_PRIVACY} - ./src/setting-privacy.c - ./src/setting-privacy-main.c -) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_PRIVACY} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common -pie) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_PRIVACY} ${pkgs_privacy_LDFLAGS}) - -INSTALL(PROGRAMS ${PROJECT_SETTING_PRIVACY} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) - diff --git a/setting-privacy/res/500.settings_upgrade.sh b/setting-privacy/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-privacy/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-privacy/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-privacy/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-privacy/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-privacy/res/edje/accessibility-settings-set-value.edc b/setting-privacy/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-privacy/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-privacy/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-privacy/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-privacy/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-privacy/res/edje/accessibility-smart-switch-accessory.edc b/setting-privacy/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-privacy/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-privacy/res/edje/common-data-define.edc b/setting-privacy/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-privacy/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-privacy/res/edje/font-slider.edc b/setting-privacy/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-privacy/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-privacy/res/edje/gl-item-entry-main.edc b/setting-privacy/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-privacy/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-privacy/res/edje/setting-theme.edc b/setting-privacy/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-privacy/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-privacy/res/edje/storage-graph.edc b/setting-privacy/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-privacy/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-privacy/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-privacy/res/icons/default_icon_service.png b/setting-privacy/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-privacy/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_about_device.png b/setting-privacy/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_accessibility.png b/setting-privacy/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_account.png b/setting-privacy/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_applications.png b/setting-privacy/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_backup_and_reset.png b/setting-privacy/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_battery.png b/setting-privacy/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_bluetooth.png b/setting-privacy/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_call_setting.png b/setting-privacy/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_convergence.png b/setting-privacy/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_data_usage.png b/setting-privacy/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_date_and_time.png b/setting-privacy/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_decoration.png b/setting-privacy/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_developer.png b/setting-privacy/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_display.png b/setting-privacy/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_flight.png b/setting-privacy/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_ic_delete.png b/setting-privacy/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_ic_location.png b/setting-privacy/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_language_and_input.png b/setting-privacy/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_list_developer.png b/setting-privacy/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-privacy/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_lockscreen.png b/setting-privacy/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_mobile_networks.png b/setting-privacy/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_more_connections.png b/setting-privacy/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_nfc_and_payment.png b/setting-privacy/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_privacy_and_safety.png b/setting-privacy/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_security.png b/setting-privacy/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_sim_card_magager.png b/setting-privacy/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_sound_and_notifications.png b/setting-privacy/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_special_days.png b/setting-privacy/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_storage.png b/setting-privacy/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_tethering.png b/setting-privacy/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-privacy/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_wallpapers.png b/setting-privacy/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_wifi.png b/setting-privacy/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-privacy/res/icons/list_icon/settings_wifi_direct.png b/setting-privacy/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-privacy/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-privacy/res/icons/mainmenu.png b/setting-privacy/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-privacy/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-privacy/res/icons/org.tizen.setting.png b/setting-privacy/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-privacy/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-privacy/res/icons/plus.png b/setting-privacy/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-privacy/res/icons/plus.png and /dev/null differ diff --git a/setting-privacy/res/icons/preview_focus.#.png b/setting-privacy/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-privacy/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-privacy/res/icons/preview_focus_effect.#.png b/setting-privacy/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-privacy/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-privacy/res/icons/setting_colortheme_select.#.png b/setting-privacy/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-privacy/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-privacy/res/icons/setting_colortheme_select_ef.#.png b/setting-privacy/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-privacy/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-privacy/res/icons/simple_password_bg.#.png b/setting-privacy/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-privacy/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-privacy/res/icons/slider_point.png b/setting-privacy/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-privacy/res/icons/slider_point.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_incoming_call.png b/setting-privacy/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_notification.png b/setting-privacy/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_notification_mute.png b/setting-privacy/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_notification_vibrate.png b/setting-privacy/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_system.png b/setting-privacy/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_system_mute.png b/setting-privacy/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_system_vibrate.png b/setting-privacy/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_volume.png b/setting-privacy/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_volume_mute.png b/setting-privacy/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_slider_icon_volume_vibrate.png b/setting-privacy/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-privacy/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_volume_ic_setting.png b/setting-privacy/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-privacy/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-privacy/res/icons/sound_volume_popup_bg.#.png b/setting-privacy/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-privacy/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-privacy/res/images/A01-1_progress_pending_01.png b/setting-privacy/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-privacy/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-privacy/res/images/A01-1_progress_pending_01_dim.png b/setting-privacy/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-privacy/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-privacy/res/images/A01-1_progress_pending_02.png b/setting-privacy/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-privacy/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-privacy/res/images/A01-1_progress_pending_02_dim.png b/setting-privacy/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-privacy/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-privacy/res/images/core_progress_bar.#.png b/setting-privacy/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-privacy/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-privacy/res/images/core_slider_handle_normal.png b/setting-privacy/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-privacy/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-privacy/res/images/core_slider_handle_press.png b/setting-privacy/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-privacy/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-privacy/res/images/org.tizen.setting.png b/setting-privacy/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-privacy/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-privacy/res/images/simple_password_bg.#.png b/setting-privacy/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-privacy/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-privacy/res/images/soundalive_progress_point.png b/setting-privacy/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-privacy/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-privacy/res/langlist.india.xml.in b/setting-privacy/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-privacy/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-privacy/res/langlist.xml.in b/setting-privacy/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-privacy/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-privacy/res/langlist_all.xml.in b/setting-privacy/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-privacy/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-privacy/res/media/settings/Alerts/General notification_sdk.wav b/setting-privacy/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-privacy/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-privacy/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-privacy/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-privacy/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-privacy/res/media/settings/Wallpapers/home_001.png b/setting-privacy/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-privacy/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-privacy/res/media/settings/Wallpapers/home_002.png b/setting-privacy/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-privacy/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-privacy/res/media/settings/Wallpapers/home_003.png b/setting-privacy/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-privacy/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-privacy/res/media/settings/Wallpapers/home_004.png b/setting-privacy/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-privacy/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-privacy/res/po/CMakeLists.txt b/setting-privacy/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-privacy/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-privacy/res/ug-setting-shortcut-efl.xml.in b/setting-privacy/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-privacy/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-profile-common/res/500.settings_upgrade.sh b/setting-profile-common/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-profile-common/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-profile-common/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-profile-common/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-profile-common/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-profile-common/res/edje/accessibility-settings-set-value.edc b/setting-profile-common/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-profile-common/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-profile-common/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-profile-common/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-profile-common/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-profile-common/res/edje/accessibility-smart-switch-accessory.edc b/setting-profile-common/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-profile-common/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-profile-common/res/edje/common-data-define.edc b/setting-profile-common/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-profile-common/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-profile-common/res/edje/font-slider.edc b/setting-profile-common/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-profile-common/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-profile-common/res/edje/gl-item-entry-main.edc b/setting-profile-common/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-profile-common/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-profile-common/res/edje/setting-theme.edc b/setting-profile-common/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-profile-common/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-profile-common/res/edje/storage-graph.edc b/setting-profile-common/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-profile-common/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-profile-common/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-profile-common/res/icons/default_icon_service.png b/setting-profile-common/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-profile-common/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_about_device.png b/setting-profile-common/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_accessibility.png b/setting-profile-common/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_account.png b/setting-profile-common/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_applications.png b/setting-profile-common/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_backup_and_reset.png b/setting-profile-common/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_battery.png b/setting-profile-common/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_bluetooth.png b/setting-profile-common/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_call_setting.png b/setting-profile-common/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_convergence.png b/setting-profile-common/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_data_usage.png b/setting-profile-common/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_date_and_time.png b/setting-profile-common/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_decoration.png b/setting-profile-common/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_developer.png b/setting-profile-common/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_display.png b/setting-profile-common/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_flight.png b/setting-profile-common/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_ic_delete.png b/setting-profile-common/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_ic_location.png b/setting-profile-common/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_language_and_input.png b/setting-profile-common/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_list_developer.png b/setting-profile-common/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-profile-common/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_lockscreen.png b/setting-profile-common/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_mobile_networks.png b/setting-profile-common/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_more_connections.png b/setting-profile-common/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_nfc_and_payment.png b/setting-profile-common/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_privacy_and_safety.png b/setting-profile-common/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_security.png b/setting-profile-common/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_sim_card_magager.png b/setting-profile-common/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_sound_and_notifications.png b/setting-profile-common/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_special_days.png b/setting-profile-common/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_storage.png b/setting-profile-common/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_tethering.png b/setting-profile-common/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-profile-common/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_wallpapers.png b/setting-profile-common/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_wifi.png b/setting-profile-common/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-profile-common/res/icons/list_icon/settings_wifi_direct.png b/setting-profile-common/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-profile-common/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-profile-common/res/icons/mainmenu.png b/setting-profile-common/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-profile-common/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-profile-common/res/icons/org.tizen.setting.png b/setting-profile-common/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-profile-common/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-profile-common/res/icons/plus.png b/setting-profile-common/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-profile-common/res/icons/plus.png and /dev/null differ diff --git a/setting-profile-common/res/icons/preview_focus.#.png b/setting-profile-common/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-profile-common/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-profile-common/res/icons/preview_focus_effect.#.png b/setting-profile-common/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-profile-common/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-profile-common/res/icons/setting_colortheme_select.#.png b/setting-profile-common/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-profile-common/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-profile-common/res/icons/setting_colortheme_select_ef.#.png b/setting-profile-common/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-profile-common/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-profile-common/res/icons/simple_password_bg.#.png b/setting-profile-common/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-profile-common/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-profile-common/res/icons/slider_point.png b/setting-profile-common/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-profile-common/res/icons/slider_point.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_incoming_call.png b/setting-profile-common/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_notification.png b/setting-profile-common/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_notification_mute.png b/setting-profile-common/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_notification_vibrate.png b/setting-profile-common/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_system.png b/setting-profile-common/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_system_mute.png b/setting-profile-common/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_system_vibrate.png b/setting-profile-common/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_volume.png b/setting-profile-common/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_volume_mute.png b/setting-profile-common/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_slider_icon_volume_vibrate.png b/setting-profile-common/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-profile-common/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_volume_ic_setting.png b/setting-profile-common/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-profile-common/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-profile-common/res/icons/sound_volume_popup_bg.#.png b/setting-profile-common/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-profile-common/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-profile-common/res/images/A01-1_progress_pending_01.png b/setting-profile-common/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-profile-common/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-profile-common/res/images/A01-1_progress_pending_01_dim.png b/setting-profile-common/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-profile-common/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-profile-common/res/images/A01-1_progress_pending_02.png b/setting-profile-common/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-profile-common/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-profile-common/res/images/A01-1_progress_pending_02_dim.png b/setting-profile-common/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-profile-common/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-profile-common/res/images/core_progress_bar.#.png b/setting-profile-common/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-profile-common/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-profile-common/res/images/core_slider_handle_normal.png b/setting-profile-common/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-profile-common/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-profile-common/res/images/core_slider_handle_press.png b/setting-profile-common/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-profile-common/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-profile-common/res/images/org.tizen.setting.png b/setting-profile-common/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-profile-common/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-profile-common/res/images/simple_password_bg.#.png b/setting-profile-common/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-profile-common/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-profile-common/res/images/soundalive_progress_point.png b/setting-profile-common/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-profile-common/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-profile-common/res/langlist.india.xml.in b/setting-profile-common/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-profile-common/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-profile-common/res/langlist.xml.in b/setting-profile-common/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-profile-common/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-profile-common/res/langlist_all.xml.in b/setting-profile-common/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-profile-common/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-profile-common/res/media/settings/Alerts/General notification_sdk.wav b/setting-profile-common/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-profile-common/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-profile-common/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-profile-common/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-profile-common/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-profile-common/res/media/settings/Wallpapers/home_001.png b/setting-profile-common/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-profile-common/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-profile-common/res/media/settings/Wallpapers/home_002.png b/setting-profile-common/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-profile-common/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-profile-common/res/media/settings/Wallpapers/home_003.png b/setting-profile-common/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-profile-common/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-profile-common/res/media/settings/Wallpapers/home_004.png b/setting-profile-common/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-profile-common/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-profile-common/res/po/CMakeLists.txt b/setting-profile-common/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-profile-common/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-profile-common/res/ug-setting-shortcut-efl.xml.in b/setting-profile-common/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-profile-common/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-profile/CMakeLists.txt b/setting-profile/CMakeLists.txt deleted file mode 100755 index 50071b2f..00000000 --- a/setting-profile/CMakeLists.txt +++ /dev/null @@ -1,60 +0,0 @@ -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -SET(PROJECT_SETTING_PROFILE "setting-profile") -SET(SETTING_PKG_PROFILE "org.tizen.setting-profile") - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_profile REQUIRED - callmgr_client - capi-appfw-application - capi-media-metadata-extractor - capi-media-player - capi-media-sound-manager - capi-system-system-settings - dlog - efl-extension - elementary - feedback - notification - vconf -) - -FOREACH(flag ${pkgs_profile_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_PROFILE} - ./src/setting-profile.c - ./src/setting-profile-common.c - ./src/setting-profile-sound-main.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_PROFILE} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_PROFILE} ${pkgs_profile_LDFLAGS} -pie) -INSTALL(PROGRAMS ${PROJECT_SETTING_PROFILE} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) - -# support volume popup -SET(SETTING_VOLUME_POPUP setting_volume_popup) -ADD_EXECUTABLE(${SETTING_VOLUME_POPUP} - ./src/volume_popup.c - ./src/setting-profile-common.c - ./src/setting-profile-sound-main.c - ) - -TARGET_LINK_LIBRARIES(${SETTING_VOLUME_POPUP} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${SETTING_VOLUME_POPUP} ${pkgs_profile_LDFLAGS} -pie) -INSTALL(TARGETS ${SETTING_VOLUME_POPUP} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-profile/res/500.settings_upgrade.sh b/setting-profile/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-profile/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-profile/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-profile/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-profile/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-profile/res/edje/accessibility-settings-set-value.edc b/setting-profile/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-profile/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-profile/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-profile/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-profile/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-profile/res/edje/accessibility-smart-switch-accessory.edc b/setting-profile/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-profile/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-profile/res/edje/common-data-define.edc b/setting-profile/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-profile/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-profile/res/edje/font-slider.edc b/setting-profile/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-profile/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-profile/res/edje/gl-item-entry-main.edc b/setting-profile/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-profile/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-profile/res/edje/setting-theme.edc b/setting-profile/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-profile/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-profile/res/edje/storage-graph.edc b/setting-profile/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-profile/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-profile/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-profile/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-profile/res/icons/default_icon_service.png b/setting-profile/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-profile/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_about_device.png b/setting-profile/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_accessibility.png b/setting-profile/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_account.png b/setting-profile/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_applications.png b/setting-profile/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_backup_and_reset.png b/setting-profile/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_battery.png b/setting-profile/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_bluetooth.png b/setting-profile/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_call_setting.png b/setting-profile/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_convergence.png b/setting-profile/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_data_usage.png b/setting-profile/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_date_and_time.png b/setting-profile/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_decoration.png b/setting-profile/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_developer.png b/setting-profile/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_display.png b/setting-profile/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_flight.png b/setting-profile/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_ic_delete.png b/setting-profile/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_ic_location.png b/setting-profile/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_language_and_input.png b/setting-profile/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_list_developer.png b/setting-profile/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-profile/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_lockscreen.png b/setting-profile/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_mobile_networks.png b/setting-profile/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_more_connections.png b/setting-profile/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_nfc_and_payment.png b/setting-profile/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_privacy_and_safety.png b/setting-profile/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_security.png b/setting-profile/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_sim_card_magager.png b/setting-profile/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_sound_and_notifications.png b/setting-profile/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_special_days.png b/setting-profile/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_storage.png b/setting-profile/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_tethering.png b/setting-profile/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-profile/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_wallpapers.png b/setting-profile/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_wifi.png b/setting-profile/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-profile/res/icons/list_icon/settings_wifi_direct.png b/setting-profile/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-profile/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-profile/res/icons/mainmenu.png b/setting-profile/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-profile/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-profile/res/icons/org.tizen.setting.png b/setting-profile/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-profile/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-profile/res/icons/plus.png b/setting-profile/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-profile/res/icons/plus.png and /dev/null differ diff --git a/setting-profile/res/icons/preview_focus.#.png b/setting-profile/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-profile/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-profile/res/icons/preview_focus_effect.#.png b/setting-profile/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-profile/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-profile/res/icons/setting_colortheme_select.#.png b/setting-profile/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-profile/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-profile/res/icons/setting_colortheme_select_ef.#.png b/setting-profile/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-profile/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-profile/res/icons/simple_password_bg.#.png b/setting-profile/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-profile/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-profile/res/icons/slider_point.png b/setting-profile/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-profile/res/icons/slider_point.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_incoming_call.png b/setting-profile/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_notification.png b/setting-profile/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_notification_mute.png b/setting-profile/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_notification_vibrate.png b/setting-profile/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_system.png b/setting-profile/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_system_mute.png b/setting-profile/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_system_vibrate.png b/setting-profile/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_volume.png b/setting-profile/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_volume_mute.png b/setting-profile/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_slider_icon_volume_vibrate.png b/setting-profile/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-profile/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_volume_ic_setting.png b/setting-profile/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-profile/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-profile/res/icons/sound_volume_popup_bg.#.png b/setting-profile/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-profile/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-profile/res/images/A01-1_progress_pending_01.png b/setting-profile/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-profile/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-profile/res/images/A01-1_progress_pending_01_dim.png b/setting-profile/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-profile/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-profile/res/images/A01-1_progress_pending_02.png b/setting-profile/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-profile/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-profile/res/images/A01-1_progress_pending_02_dim.png b/setting-profile/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-profile/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-profile/res/images/core_progress_bar.#.png b/setting-profile/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-profile/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-profile/res/images/core_slider_handle_normal.png b/setting-profile/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-profile/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-profile/res/images/core_slider_handle_press.png b/setting-profile/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-profile/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-profile/res/images/org.tizen.setting.png b/setting-profile/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-profile/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-profile/res/images/simple_password_bg.#.png b/setting-profile/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-profile/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-profile/res/images/soundalive_progress_point.png b/setting-profile/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-profile/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-profile/res/langlist.india.xml.in b/setting-profile/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-profile/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-profile/res/langlist.xml.in b/setting-profile/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-profile/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-profile/res/langlist_all.xml.in b/setting-profile/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-profile/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-profile/res/media/settings/Alerts/General notification_sdk.wav b/setting-profile/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-profile/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-profile/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-profile/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-profile/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-profile/res/media/settings/Wallpapers/home_001.png b/setting-profile/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-profile/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-profile/res/media/settings/Wallpapers/home_002.png b/setting-profile/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-profile/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-profile/res/media/settings/Wallpapers/home_003.png b/setting-profile/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-profile/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-profile/res/media/settings/Wallpapers/home_004.png b/setting-profile/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-profile/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-profile/res/po/CMakeLists.txt b/setting-profile/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-profile/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-profile/res/ug-setting-shortcut-efl.xml.in b/setting-profile/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-profile/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-ringtone/CMakeLists.txt b/setting-ringtone/CMakeLists.txt deleted file mode 100755 index 61a21cd3..00000000 --- a/setting-ringtone/CMakeLists.txt +++ /dev/null @@ -1,50 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) - -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -SET(PROJECT_SETTING_RINGTONE "setting-ringtone") -SET(SETTING_PKG_RINGTONE "org.tizen.setting-ringtone") - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_ringtone REQUIRED - elementary - capi-appfw-application - capi-system-system-settings - capi-media-metadata-extractor - dlog - efl-extension - callmgr_client - capi-media-player -) - -FOREACH(flag ${pkgs_ringtone_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") -SET(CMAKE_LDFLAGS "-Wl,-z,nodelete -pie") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_RINGTONE} - src/setting-ringtone.c - src/setting-ringtone-main.c - src/setting-ringtone-util.c - src/setting-ringtone-remove.c -) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_RINGTONE} ${pkgs_ringtone_LDFLAGS} -pie) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_RINGTONE} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) - -INSTALL(PROGRAMS ${PROJECT_SETTING_RINGTONE} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-ringtone/res/500.settings_upgrade.sh b/setting-ringtone/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-ringtone/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-ringtone/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-ringtone/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-ringtone/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-ringtone/res/edje/accessibility-settings-set-value.edc b/setting-ringtone/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-ringtone/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-ringtone/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-ringtone/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-ringtone/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-ringtone/res/edje/accessibility-smart-switch-accessory.edc b/setting-ringtone/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-ringtone/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-ringtone/res/edje/common-data-define.edc b/setting-ringtone/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-ringtone/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-ringtone/res/edje/font-slider.edc b/setting-ringtone/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-ringtone/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-ringtone/res/edje/gl-item-entry-main.edc b/setting-ringtone/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-ringtone/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-ringtone/res/edje/setting-theme.edc b/setting-ringtone/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-ringtone/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-ringtone/res/edje/storage-graph.edc b/setting-ringtone/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-ringtone/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-ringtone/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-ringtone/res/icons/default_icon_service.png b/setting-ringtone/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-ringtone/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_about_device.png b/setting-ringtone/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_accessibility.png b/setting-ringtone/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_account.png b/setting-ringtone/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_applications.png b/setting-ringtone/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_backup_and_reset.png b/setting-ringtone/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_battery.png b/setting-ringtone/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_bluetooth.png b/setting-ringtone/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_call_setting.png b/setting-ringtone/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_convergence.png b/setting-ringtone/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_data_usage.png b/setting-ringtone/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_date_and_time.png b/setting-ringtone/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_decoration.png b/setting-ringtone/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_developer.png b/setting-ringtone/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_display.png b/setting-ringtone/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_flight.png b/setting-ringtone/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_ic_delete.png b/setting-ringtone/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_ic_location.png b/setting-ringtone/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_language_and_input.png b/setting-ringtone/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_list_developer.png b/setting-ringtone/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-ringtone/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_lockscreen.png b/setting-ringtone/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_mobile_networks.png b/setting-ringtone/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_more_connections.png b/setting-ringtone/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_nfc_and_payment.png b/setting-ringtone/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_privacy_and_safety.png b/setting-ringtone/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_security.png b/setting-ringtone/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_sim_card_magager.png b/setting-ringtone/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_sound_and_notifications.png b/setting-ringtone/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_special_days.png b/setting-ringtone/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_storage.png b/setting-ringtone/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_tethering.png b/setting-ringtone/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-ringtone/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_wallpapers.png b/setting-ringtone/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_wifi.png b/setting-ringtone/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-ringtone/res/icons/list_icon/settings_wifi_direct.png b/setting-ringtone/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-ringtone/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-ringtone/res/icons/mainmenu.png b/setting-ringtone/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-ringtone/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-ringtone/res/icons/org.tizen.setting.png b/setting-ringtone/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-ringtone/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-ringtone/res/icons/plus.png b/setting-ringtone/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-ringtone/res/icons/plus.png and /dev/null differ diff --git a/setting-ringtone/res/icons/preview_focus.#.png b/setting-ringtone/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-ringtone/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-ringtone/res/icons/preview_focus_effect.#.png b/setting-ringtone/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-ringtone/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-ringtone/res/icons/setting_colortheme_select.#.png b/setting-ringtone/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-ringtone/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-ringtone/res/icons/setting_colortheme_select_ef.#.png b/setting-ringtone/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-ringtone/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-ringtone/res/icons/simple_password_bg.#.png b/setting-ringtone/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-ringtone/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-ringtone/res/icons/slider_point.png b/setting-ringtone/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-ringtone/res/icons/slider_point.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_incoming_call.png b/setting-ringtone/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_notification.png b/setting-ringtone/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_notification_mute.png b/setting-ringtone/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_notification_vibrate.png b/setting-ringtone/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_system.png b/setting-ringtone/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_system_mute.png b/setting-ringtone/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_system_vibrate.png b/setting-ringtone/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_volume.png b/setting-ringtone/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_volume_mute.png b/setting-ringtone/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_slider_icon_volume_vibrate.png b/setting-ringtone/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-ringtone/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_volume_ic_setting.png b/setting-ringtone/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-ringtone/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-ringtone/res/icons/sound_volume_popup_bg.#.png b/setting-ringtone/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-ringtone/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-ringtone/res/images/A01-1_progress_pending_01.png b/setting-ringtone/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-ringtone/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-ringtone/res/images/A01-1_progress_pending_01_dim.png b/setting-ringtone/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-ringtone/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-ringtone/res/images/A01-1_progress_pending_02.png b/setting-ringtone/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-ringtone/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-ringtone/res/images/A01-1_progress_pending_02_dim.png b/setting-ringtone/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-ringtone/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-ringtone/res/images/core_progress_bar.#.png b/setting-ringtone/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-ringtone/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-ringtone/res/images/core_slider_handle_normal.png b/setting-ringtone/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-ringtone/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-ringtone/res/images/core_slider_handle_press.png b/setting-ringtone/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-ringtone/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-ringtone/res/images/org.tizen.setting.png b/setting-ringtone/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-ringtone/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-ringtone/res/images/simple_password_bg.#.png b/setting-ringtone/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-ringtone/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-ringtone/res/images/soundalive_progress_point.png b/setting-ringtone/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-ringtone/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-ringtone/res/langlist.india.xml.in b/setting-ringtone/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-ringtone/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-ringtone/res/langlist.xml.in b/setting-ringtone/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-ringtone/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-ringtone/res/langlist_all.xml.in b/setting-ringtone/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-ringtone/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-ringtone/res/media/settings/Alerts/General notification_sdk.wav b/setting-ringtone/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-ringtone/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-ringtone/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-ringtone/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-ringtone/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-ringtone/res/media/settings/Wallpapers/home_001.png b/setting-ringtone/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-ringtone/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-ringtone/res/media/settings/Wallpapers/home_002.png b/setting-ringtone/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-ringtone/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-ringtone/res/media/settings/Wallpapers/home_003.png b/setting-ringtone/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-ringtone/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-ringtone/res/media/settings/Wallpapers/home_004.png b/setting-ringtone/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-ringtone/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-ringtone/res/po/CMakeLists.txt b/setting-ringtone/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-ringtone/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-ringtone/res/ug-setting-shortcut-efl.xml.in b/setting-ringtone/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-ringtone/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-smartmanager/CMakeLists.txt b/setting-smartmanager/CMakeLists.txt deleted file mode 100644 index 8c78c96e..00000000 --- a/setting-smartmanager/CMakeLists.txt +++ /dev/null @@ -1,8 +0,0 @@ -SET(SETTING_SMARTMANAGER_BATTERY ../smartmanager-battery) -SET(SETTING_SMARTMANAGER_DATA smartmanager-data) -SET(SETTING_SMARTMANAGER_STORAGE ../smartmanager-storage) -message("############ SETTING SMARTMANAGER ############") - -#ADD_SUBDIRECTORY(${SETTING_SMARTMANAGER_BATTERY}) -ADD_SUBDIRECTORY(${SETTING_SMARTMANAGER_DATA}) -#ADD_SUBDIRECTORY(${SETTING_SMARTMANAGER_STORAGE}) diff --git a/setting-smartmanager/res/500.settings_upgrade.sh b/setting-smartmanager/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-smartmanager/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-smartmanager/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-smartmanager/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-smartmanager/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-smartmanager/res/edje/accessibility-settings-set-value.edc b/setting-smartmanager/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-smartmanager/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-smartmanager/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-smartmanager/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-smartmanager/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-smartmanager/res/edje/accessibility-smart-switch-accessory.edc b/setting-smartmanager/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-smartmanager/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-smartmanager/res/edje/common-data-define.edc b/setting-smartmanager/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-smartmanager/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-smartmanager/res/edje/font-slider.edc b/setting-smartmanager/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-smartmanager/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-smartmanager/res/edje/gl-item-entry-main.edc b/setting-smartmanager/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-smartmanager/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-smartmanager/res/edje/setting-theme.edc b/setting-smartmanager/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-smartmanager/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-smartmanager/res/edje/storage-graph.edc b/setting-smartmanager/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-smartmanager/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-smartmanager/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/default_icon_service.png b/setting-smartmanager/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-smartmanager/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_about_device.png b/setting-smartmanager/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_accessibility.png b/setting-smartmanager/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_account.png b/setting-smartmanager/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_applications.png b/setting-smartmanager/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_backup_and_reset.png b/setting-smartmanager/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_battery.png b/setting-smartmanager/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_bluetooth.png b/setting-smartmanager/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_call_setting.png b/setting-smartmanager/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_convergence.png b/setting-smartmanager/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_data_usage.png b/setting-smartmanager/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_date_and_time.png b/setting-smartmanager/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_decoration.png b/setting-smartmanager/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_developer.png b/setting-smartmanager/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_display.png b/setting-smartmanager/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_flight.png b/setting-smartmanager/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_ic_delete.png b/setting-smartmanager/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_ic_location.png b/setting-smartmanager/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_language_and_input.png b/setting-smartmanager/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_list_developer.png b/setting-smartmanager/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-smartmanager/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_lockscreen.png b/setting-smartmanager/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_mobile_networks.png b/setting-smartmanager/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_more_connections.png b/setting-smartmanager/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_nfc_and_payment.png b/setting-smartmanager/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_privacy_and_safety.png b/setting-smartmanager/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_security.png b/setting-smartmanager/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_sim_card_magager.png b/setting-smartmanager/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_sound_and_notifications.png b/setting-smartmanager/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_special_days.png b/setting-smartmanager/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_storage.png b/setting-smartmanager/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_tethering.png b/setting-smartmanager/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-smartmanager/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_wallpapers.png b/setting-smartmanager/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_wifi.png b/setting-smartmanager/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/list_icon/settings_wifi_direct.png b/setting-smartmanager/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-smartmanager/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/mainmenu.png b/setting-smartmanager/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-smartmanager/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/org.tizen.setting.png b/setting-smartmanager/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-smartmanager/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/plus.png b/setting-smartmanager/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-smartmanager/res/icons/plus.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/preview_focus.#.png b/setting-smartmanager/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-smartmanager/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/preview_focus_effect.#.png b/setting-smartmanager/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-smartmanager/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/setting_colortheme_select.#.png b/setting-smartmanager/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-smartmanager/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/setting_colortheme_select_ef.#.png b/setting-smartmanager/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-smartmanager/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/simple_password_bg.#.png b/setting-smartmanager/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-smartmanager/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/slider_point.png b/setting-smartmanager/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-smartmanager/res/icons/slider_point.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_incoming_call.png b/setting-smartmanager/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_notification.png b/setting-smartmanager/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_notification_mute.png b/setting-smartmanager/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_notification_vibrate.png b/setting-smartmanager/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_system.png b/setting-smartmanager/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_system_mute.png b/setting-smartmanager/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_system_vibrate.png b/setting-smartmanager/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_volume.png b/setting-smartmanager/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_volume_mute.png b/setting-smartmanager/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_slider_icon_volume_vibrate.png b/setting-smartmanager/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-smartmanager/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_volume_ic_setting.png b/setting-smartmanager/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-smartmanager/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-smartmanager/res/icons/sound_volume_popup_bg.#.png b/setting-smartmanager/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-smartmanager/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-smartmanager/res/images/A01-1_progress_pending_01.png b/setting-smartmanager/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-smartmanager/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-smartmanager/res/images/A01-1_progress_pending_01_dim.png b/setting-smartmanager/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-smartmanager/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-smartmanager/res/images/A01-1_progress_pending_02.png b/setting-smartmanager/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-smartmanager/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-smartmanager/res/images/A01-1_progress_pending_02_dim.png b/setting-smartmanager/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-smartmanager/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-smartmanager/res/images/core_progress_bar.#.png b/setting-smartmanager/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-smartmanager/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-smartmanager/res/images/core_slider_handle_normal.png b/setting-smartmanager/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-smartmanager/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-smartmanager/res/images/core_slider_handle_press.png b/setting-smartmanager/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-smartmanager/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-smartmanager/res/images/org.tizen.setting.png b/setting-smartmanager/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-smartmanager/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-smartmanager/res/images/simple_password_bg.#.png b/setting-smartmanager/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-smartmanager/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-smartmanager/res/images/soundalive_progress_point.png b/setting-smartmanager/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-smartmanager/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-smartmanager/res/langlist.india.xml.in b/setting-smartmanager/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-smartmanager/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-smartmanager/res/langlist.xml.in b/setting-smartmanager/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-smartmanager/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-smartmanager/res/langlist_all.xml.in b/setting-smartmanager/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-smartmanager/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-smartmanager/res/media/settings/Alerts/General notification_sdk.wav b/setting-smartmanager/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-smartmanager/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-smartmanager/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-smartmanager/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-smartmanager/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-smartmanager/res/media/settings/Wallpapers/home_001.png b/setting-smartmanager/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-smartmanager/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-smartmanager/res/media/settings/Wallpapers/home_002.png b/setting-smartmanager/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-smartmanager/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-smartmanager/res/media/settings/Wallpapers/home_003.png b/setting-smartmanager/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-smartmanager/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-smartmanager/res/media/settings/Wallpapers/home_004.png b/setting-smartmanager/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-smartmanager/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-smartmanager/res/po/CMakeLists.txt b/setting-smartmanager/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-smartmanager/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-smartmanager/res/ug-setting-shortcut-efl.xml.in b/setting-smartmanager/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-smartmanager/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-storage/CMakeLists.txt b/setting-storage/CMakeLists.txt deleted file mode 100755 index 8717f874..00000000 --- a/setting-storage/CMakeLists.txt +++ /dev/null @@ -1,46 +0,0 @@ -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) -SET(PROJECT_SETTING_STORAGE "setting-storage") -SET(SETTING_PKG_STORAGE "org.tizen.setting-storage") - -FILE(GLOB STORAGE_SRCS src/*.c) -MESSAGE(">>>>>>>>>>>>>>>--- STORAGE --- <<<<<<<<<<<<<<<<<<<<<<<") -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_storage REQUIRED - appcore-efl - capi-appfw-application - capi-appfw-package-manager - capi-content-media-content - deviced - glib-2.0 - storage - dpm - efl-extension - elementary - pkgmgr - vconf -) - -FOREACH(flag ${pkgs_storage_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-D_FILE_OFFSET_BITS=64") - -ADD_EXECUTABLE(${PROJECT_SETTING_STORAGE} ${STORAGE_SRCS}) - -#TARGET_LINK_LIBRARIES(${PROJECT_SETTING_STORAGE} ${LIB_SETTING_COMMON}) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_STORAGE} ${pkgs_storage_LDFLAGS} -pie) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_STORAGE} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) - -INSTALL(PROGRAMS ${PROJECT_SETTING_STORAGE} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-storage/res/500.settings_upgrade.sh b/setting-storage/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-storage/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-storage/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-storage/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-storage/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-storage/res/edje/accessibility-settings-set-value.edc b/setting-storage/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-storage/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-storage/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-storage/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-storage/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-storage/res/edje/accessibility-smart-switch-accessory.edc b/setting-storage/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-storage/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-storage/res/edje/common-data-define.edc b/setting-storage/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-storage/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-storage/res/edje/font-slider.edc b/setting-storage/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-storage/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-storage/res/edje/gl-item-entry-main.edc b/setting-storage/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-storage/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-storage/res/edje/setting-theme.edc b/setting-storage/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-storage/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-storage/res/edje/storage-graph.edc b/setting-storage/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-storage/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-storage/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-storage/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-storage/res/icons/default_icon_service.png b/setting-storage/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-storage/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_about_device.png b/setting-storage/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_accessibility.png b/setting-storage/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_account.png b/setting-storage/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_applications.png b/setting-storage/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_backup_and_reset.png b/setting-storage/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_battery.png b/setting-storage/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_bluetooth.png b/setting-storage/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_call_setting.png b/setting-storage/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_convergence.png b/setting-storage/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_data_usage.png b/setting-storage/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_date_and_time.png b/setting-storage/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_decoration.png b/setting-storage/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_developer.png b/setting-storage/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_display.png b/setting-storage/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_flight.png b/setting-storage/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_ic_delete.png b/setting-storage/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_ic_location.png b/setting-storage/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_language_and_input.png b/setting-storage/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_list_developer.png b/setting-storage/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-storage/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_lockscreen.png b/setting-storage/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_mobile_networks.png b/setting-storage/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_more_connections.png b/setting-storage/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_nfc_and_payment.png b/setting-storage/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_privacy_and_safety.png b/setting-storage/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_security.png b/setting-storage/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_sim_card_magager.png b/setting-storage/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_sound_and_notifications.png b/setting-storage/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_special_days.png b/setting-storage/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_storage.png b/setting-storage/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_tethering.png b/setting-storage/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-storage/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_wallpapers.png b/setting-storage/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_wifi.png b/setting-storage/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-storage/res/icons/list_icon/settings_wifi_direct.png b/setting-storage/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-storage/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-storage/res/icons/mainmenu.png b/setting-storage/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-storage/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-storage/res/icons/org.tizen.setting.png b/setting-storage/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-storage/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-storage/res/icons/plus.png b/setting-storage/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-storage/res/icons/plus.png and /dev/null differ diff --git a/setting-storage/res/icons/preview_focus.#.png b/setting-storage/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-storage/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-storage/res/icons/preview_focus_effect.#.png b/setting-storage/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-storage/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-storage/res/icons/setting_colortheme_select.#.png b/setting-storage/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-storage/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-storage/res/icons/setting_colortheme_select_ef.#.png b/setting-storage/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-storage/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-storage/res/icons/simple_password_bg.#.png b/setting-storage/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-storage/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-storage/res/icons/slider_point.png b/setting-storage/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-storage/res/icons/slider_point.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_incoming_call.png b/setting-storage/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_notification.png b/setting-storage/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_notification_mute.png b/setting-storage/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_notification_vibrate.png b/setting-storage/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_system.png b/setting-storage/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_system_mute.png b/setting-storage/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_system_vibrate.png b/setting-storage/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_volume.png b/setting-storage/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_volume_mute.png b/setting-storage/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_slider_icon_volume_vibrate.png b/setting-storage/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-storage/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_volume_ic_setting.png b/setting-storage/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-storage/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-storage/res/icons/sound_volume_popup_bg.#.png b/setting-storage/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-storage/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-storage/res/images/A01-1_progress_pending_01.png b/setting-storage/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-storage/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-storage/res/images/A01-1_progress_pending_01_dim.png b/setting-storage/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-storage/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-storage/res/images/A01-1_progress_pending_02.png b/setting-storage/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-storage/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-storage/res/images/A01-1_progress_pending_02_dim.png b/setting-storage/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-storage/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-storage/res/images/core_progress_bar.#.png b/setting-storage/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-storage/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-storage/res/images/core_slider_handle_normal.png b/setting-storage/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-storage/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-storage/res/images/core_slider_handle_press.png b/setting-storage/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-storage/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-storage/res/images/org.tizen.setting.png b/setting-storage/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-storage/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-storage/res/images/simple_password_bg.#.png b/setting-storage/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-storage/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-storage/res/images/soundalive_progress_point.png b/setting-storage/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-storage/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-storage/res/langlist.india.xml.in b/setting-storage/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-storage/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-storage/res/langlist.xml.in b/setting-storage/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-storage/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-storage/res/langlist_all.xml.in b/setting-storage/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-storage/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-storage/res/media/settings/Alerts/General notification_sdk.wav b/setting-storage/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-storage/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-storage/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-storage/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-storage/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-storage/res/media/settings/Wallpapers/home_001.png b/setting-storage/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-storage/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-storage/res/media/settings/Wallpapers/home_002.png b/setting-storage/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-storage/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-storage/res/media/settings/Wallpapers/home_003.png b/setting-storage/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-storage/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-storage/res/media/settings/Wallpapers/home_004.png b/setting-storage/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-storage/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-storage/res/po/CMakeLists.txt b/setting-storage/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-storage/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-storage/res/ug-setting-shortcut-efl.xml.in b/setting-storage/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-storage/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-time/CMakeLists.txt b/setting-time/CMakeLists.txt deleted file mode 100755 index 8141c127..00000000 --- a/setting-time/CMakeLists.txt +++ /dev/null @@ -1,46 +0,0 @@ -INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/${SETTING_COMMON}/include) - -SET(PROJECT_SETTING_TIME "setting-time") -SET(SETTING_PKG_TIME "org.tizen.setting-time") - -INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs_time REQUIRED - elementary - efl-extension - sqlite3 - capi-appfw-application - alarm-service - capi-system-system-settings - capi-base-utils-i18n - vconf -) - -FOREACH(flag ${pkgs_time_CFLAGS}) - SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") -ENDFOREACH(flag) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIE -Werror-implicit-function-declaration") -SET(CMAKE_C_FLAGS_DEBUG "-O0 -g") - -IF("${ARCH}" STREQUAL "arm") - ADD_DEFINITIONS("-DTARGET") - MESSAGE("add -DTARGET") -ENDIF("${ARCH}" STREQUAL "arm") - -ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"") -ADD_DEFINITIONS("-DSLP_DEBUG") -ADD_DEFINITIONS("-shared") - -SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib") - -ADD_EXECUTABLE(${PROJECT_SETTING_TIME} - ./src/setting-time.c - ./src/setting-time-main.c - ./src/setting-time-engine.c - ) - -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_TIME} -L${CMAKE_BINARY_DIR}/${SETTING_COMMON} -lsetting-common) -TARGET_LINK_LIBRARIES(${PROJECT_SETTING_TIME} ${pkgs_time_LDFLAGS} -pie) - -INSTALL(PROGRAMS ${PROJECT_SETTING_TIME} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/bin) diff --git a/setting-time/res/500.settings_upgrade.sh b/setting-time/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/setting-time/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/setting-time/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-time/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-time/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-time/res/edje/accessibility-settings-set-value.edc b/setting-time/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-time/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-time/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-time/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-time/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-time/res/edje/accessibility-smart-switch-accessory.edc b/setting-time/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-time/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-time/res/edje/common-data-define.edc b/setting-time/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-time/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-time/res/edje/font-slider.edc b/setting-time/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-time/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-time/res/edje/gl-item-entry-main.edc b/setting-time/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-time/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-time/res/edje/setting-theme.edc b/setting-time/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-time/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-time/res/edje/storage-graph.edc b/setting-time/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-time/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-time/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-time/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-time/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-time/res/icons/default_icon_service.png b/setting-time/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-time/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_about_device.png b/setting-time/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-time/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_accessibility.png b/setting-time/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-time/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_account.png b/setting-time/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-time/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_applications.png b/setting-time/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-time/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_backup_and_reset.png b/setting-time/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-time/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_battery.png b/setting-time/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-time/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_bluetooth.png b/setting-time/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-time/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_call_setting.png b/setting-time/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-time/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_convergence.png b/setting-time/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-time/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_data_usage.png b/setting-time/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-time/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_date_and_time.png b/setting-time/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-time/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_decoration.png b/setting-time/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-time/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_developer.png b/setting-time/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-time/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_display.png b/setting-time/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-time/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_flight.png b/setting-time/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-time/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_ic_delete.png b/setting-time/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-time/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_ic_location.png b/setting-time/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-time/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_language_and_input.png b/setting-time/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-time/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_list_developer.png b/setting-time/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-time/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-time/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-time/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_lockscreen.png b/setting-time/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-time/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_mobile_networks.png b/setting-time/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-time/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_more_connections.png b/setting-time/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-time/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_nfc_and_payment.png b/setting-time/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-time/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_privacy_and_safety.png b/setting-time/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-time/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_security.png b/setting-time/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-time/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_sim_card_magager.png b/setting-time/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-time/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_sound_and_notifications.png b/setting-time/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-time/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_special_days.png b/setting-time/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-time/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_storage.png b/setting-time/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-time/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_tethering.png b/setting-time/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-time/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-time/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-time/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_wallpapers.png b/setting-time/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-time/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_wifi.png b/setting-time/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-time/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-time/res/icons/list_icon/settings_wifi_direct.png b/setting-time/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-time/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-time/res/icons/mainmenu.png b/setting-time/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-time/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-time/res/icons/org.tizen.setting.png b/setting-time/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-time/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-time/res/icons/plus.png b/setting-time/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-time/res/icons/plus.png and /dev/null differ diff --git a/setting-time/res/icons/preview_focus.#.png b/setting-time/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-time/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-time/res/icons/preview_focus_effect.#.png b/setting-time/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-time/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-time/res/icons/setting_colortheme_select.#.png b/setting-time/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-time/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-time/res/icons/setting_colortheme_select_ef.#.png b/setting-time/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-time/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-time/res/icons/simple_password_bg.#.png b/setting-time/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-time/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-time/res/icons/slider_point.png b/setting-time/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-time/res/icons/slider_point.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_incoming_call.png b/setting-time/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_notification.png b/setting-time/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_notification_mute.png b/setting-time/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_notification_vibrate.png b/setting-time/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_system.png b/setting-time/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_system_mute.png b/setting-time/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_system_vibrate.png b/setting-time/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_volume.png b/setting-time/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_volume_mute.png b/setting-time/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-time/res/icons/sound_slider_icon_volume_vibrate.png b/setting-time/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-time/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-time/res/icons/sound_volume_ic_setting.png b/setting-time/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-time/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-time/res/icons/sound_volume_popup_bg.#.png b/setting-time/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-time/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-time/res/images/A01-1_progress_pending_01.png b/setting-time/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-time/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-time/res/images/A01-1_progress_pending_01_dim.png b/setting-time/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-time/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-time/res/images/A01-1_progress_pending_02.png b/setting-time/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-time/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-time/res/images/A01-1_progress_pending_02_dim.png b/setting-time/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-time/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-time/res/images/core_progress_bar.#.png b/setting-time/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-time/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-time/res/images/core_slider_handle_normal.png b/setting-time/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-time/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-time/res/images/core_slider_handle_press.png b/setting-time/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-time/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-time/res/images/org.tizen.setting.png b/setting-time/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-time/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-time/res/images/simple_password_bg.#.png b/setting-time/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-time/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-time/res/images/soundalive_progress_point.png b/setting-time/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-time/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-time/res/langlist.india.xml.in b/setting-time/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/setting-time/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/setting-time/res/langlist.xml.in b/setting-time/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/setting-time/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-time/res/langlist_all.xml.in b/setting-time/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/setting-time/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setting-time/res/media/settings/Alerts/General notification_sdk.wav b/setting-time/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-time/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-time/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-time/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-time/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-time/res/media/settings/Wallpapers/home_001.png b/setting-time/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-time/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-time/res/media/settings/Wallpapers/home_002.png b/setting-time/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-time/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-time/res/media/settings/Wallpapers/home_003.png b/setting-time/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-time/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-time/res/media/settings/Wallpapers/home_004.png b/setting-time/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-time/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-time/res/po/CMakeLists.txt b/setting-time/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-time/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-time/res/ug-setting-shortcut-efl.xml.in b/setting-time/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/setting-time/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/setting-volume/res/edc_resource/genlist_item_mobile_data_usage.edc b/setting-volume/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/setting-volume/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/setting-volume/res/edje/accessibility-settings-set-value.edc b/setting-volume/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/setting-volume/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/setting-volume/res/edje/accessibility-smart-switch-accessory-popup.edc b/setting-volume/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/setting-volume/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/setting-volume/res/edje/accessibility-smart-switch-accessory.edc b/setting-volume/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/setting-volume/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/setting-volume/res/edje/common-data-define.edc b/setting-volume/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/setting-volume/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/setting-volume/res/edje/font-slider.edc b/setting-volume/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/setting-volume/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/setting-volume/res/edje/gl-item-entry-main.edc b/setting-volume/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/setting-volume/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/setting-volume/res/edje/setting-theme.edc b/setting-volume/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/setting-volume/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/setting-volume/res/edje/storage-graph.edc b/setting-volume/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/setting-volume/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_00.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_01.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_02.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_03.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_04.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_05.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_06.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_07.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_08.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_09.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_10.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_11.png b/setting-volume/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/setting-volume/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/setting-volume/res/icons/default_icon_service.png b/setting-volume/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/setting-volume/res/icons/default_icon_service.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_about_device.png b/setting-volume/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_accessibility.png b/setting-volume/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_account.png b/setting-volume/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_applications.png b/setting-volume/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_backup_and_reset.png b/setting-volume/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_battery.png b/setting-volume/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_bluetooth.png b/setting-volume/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_call_setting.png b/setting-volume/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_convergence.png b/setting-volume/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_data_usage.png b/setting-volume/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_date_and_time.png b/setting-volume/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_decoration.png b/setting-volume/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_developer.png b/setting-volume/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_display.png b/setting-volume/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_flight.png b/setting-volume/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_ic_delete.png b/setting-volume/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_ic_location.png b/setting-volume/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_language_and_input.png b/setting-volume/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_list_developer.png b/setting-volume/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_lock_screen_and_security.png b/setting-volume/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_lockscreen.png b/setting-volume/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_mobile_networks.png b/setting-volume/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_more_connections.png b/setting-volume/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_nfc_and_payment.png b/setting-volume/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_privacy_and_safety.png b/setting-volume/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_security.png b/setting-volume/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_sim_card_magager.png b/setting-volume/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_sound_and_notifications.png b/setting-volume/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_special_days.png b/setting-volume/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_storage.png b/setting-volume/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_tethering.png b/setting-volume/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_ultra_data_saving_mode.png b/setting-volume/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_wallpapers.png b/setting-volume/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_wifi.png b/setting-volume/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/setting-volume/res/icons/list_icon/settings_wifi_direct.png b/setting-volume/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/setting-volume/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/setting-volume/res/icons/mainmenu.png b/setting-volume/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/setting-volume/res/icons/mainmenu.png and /dev/null differ diff --git a/setting-volume/res/icons/org.tizen.setting.png b/setting-volume/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/setting-volume/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/setting-volume/res/icons/plus.png b/setting-volume/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/setting-volume/res/icons/plus.png and /dev/null differ diff --git a/setting-volume/res/icons/preview_focus.#.png b/setting-volume/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/setting-volume/res/icons/preview_focus.#.png and /dev/null differ diff --git a/setting-volume/res/icons/preview_focus_effect.#.png b/setting-volume/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/setting-volume/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/setting-volume/res/icons/setting_colortheme_select.#.png b/setting-volume/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/setting-volume/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/setting-volume/res/icons/setting_colortheme_select_ef.#.png b/setting-volume/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/setting-volume/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/setting-volume/res/icons/simple_password_bg.#.png b/setting-volume/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-volume/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/setting-volume/res/icons/slider_point.png b/setting-volume/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/setting-volume/res/icons/slider_point.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_incoming_call.png b/setting-volume/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_notification.png b/setting-volume/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_notification_mute.png b/setting-volume/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_notification_vibrate.png b/setting-volume/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_system.png b/setting-volume/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_system_mute.png b/setting-volume/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_system_vibrate.png b/setting-volume/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_volume.png b/setting-volume/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_volume_mute.png b/setting-volume/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_slider_icon_volume_vibrate.png b/setting-volume/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/setting-volume/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_volume_ic_setting.png b/setting-volume/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/setting-volume/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/setting-volume/res/icons/sound_volume_popup_bg.#.png b/setting-volume/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/setting-volume/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/setting-volume/res/images/A01-1_progress_pending_01.png b/setting-volume/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/setting-volume/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/setting-volume/res/images/A01-1_progress_pending_01_dim.png b/setting-volume/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/setting-volume/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/setting-volume/res/images/A01-1_progress_pending_02.png b/setting-volume/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/setting-volume/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/setting-volume/res/images/A01-1_progress_pending_02_dim.png b/setting-volume/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/setting-volume/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/setting-volume/res/images/core_progress_bar.#.png b/setting-volume/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/setting-volume/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/setting-volume/res/images/core_slider_handle_normal.png b/setting-volume/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/setting-volume/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/setting-volume/res/images/core_slider_handle_press.png b/setting-volume/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/setting-volume/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/setting-volume/res/images/org.tizen.setting.png b/setting-volume/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/setting-volume/res/images/org.tizen.setting.png and /dev/null differ diff --git a/setting-volume/res/images/simple_password_bg.#.png b/setting-volume/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/setting-volume/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/setting-volume/res/images/soundalive_progress_point.png b/setting-volume/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/setting-volume/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/setting-volume/res/media/settings/Alerts/General notification_sdk.wav b/setting-volume/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/setting-volume/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/setting-volume/res/media/settings/Ringtones/ringtone_sdk.mp3 b/setting-volume/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/setting-volume/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/setting-volume/res/media/settings/Wallpapers/home_001.png b/setting-volume/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/setting-volume/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/setting-volume/res/media/settings/Wallpapers/home_002.png b/setting-volume/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/setting-volume/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/setting-volume/res/media/settings/Wallpapers/home_003.png b/setting-volume/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/setting-volume/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/setting-volume/res/media/settings/Wallpapers/home_004.png b/setting-volume/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/setting-volume/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/setting-volume/res/po/CMakeLists.txt b/setting-volume/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/setting-volume/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/setting-volume/shared/res/setting-volume.png b/setting-volume/shared/res/setting-volume.png deleted file mode 100644 index 9765b1bd..00000000 Binary files a/setting-volume/shared/res/setting-volume.png and /dev/null differ diff --git a/smartmanager-battery/res/500.settings_upgrade.sh b/smartmanager-battery/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/smartmanager-battery/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/smartmanager-battery/res/edc_resource/genlist_item_mobile_data_usage.edc b/smartmanager-battery/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/smartmanager-battery/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/smartmanager-battery/res/edje/accessibility-settings-set-value.edc b/smartmanager-battery/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/smartmanager-battery/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/smartmanager-battery/res/edje/accessibility-smart-switch-accessory-popup.edc b/smartmanager-battery/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/smartmanager-battery/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/smartmanager-battery/res/edje/accessibility-smart-switch-accessory.edc b/smartmanager-battery/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/smartmanager-battery/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/smartmanager-battery/res/edje/common-data-define.edc b/smartmanager-battery/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/smartmanager-battery/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/smartmanager-battery/res/edje/font-slider.edc b/smartmanager-battery/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/smartmanager-battery/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/smartmanager-battery/res/edje/gl-item-entry-main.edc b/smartmanager-battery/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/smartmanager-battery/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/smartmanager-battery/res/edje/setting-theme.edc b/smartmanager-battery/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/smartmanager-battery/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/smartmanager-battery/res/edje/storage-graph.edc b/smartmanager-battery/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/smartmanager-battery/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_00.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_01.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_02.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_03.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_04.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_05.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_06.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_07.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_08.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_09.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_10.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_11.png b/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/smartmanager-battery/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/default_icon_service.png b/smartmanager-battery/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/smartmanager-battery/res/icons/default_icon_service.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_about_device.png b/smartmanager-battery/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_accessibility.png b/smartmanager-battery/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_account.png b/smartmanager-battery/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_applications.png b/smartmanager-battery/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_backup_and_reset.png b/smartmanager-battery/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_battery.png b/smartmanager-battery/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_bluetooth.png b/smartmanager-battery/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_call_setting.png b/smartmanager-battery/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_convergence.png b/smartmanager-battery/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_data_usage.png b/smartmanager-battery/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_date_and_time.png b/smartmanager-battery/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_decoration.png b/smartmanager-battery/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_developer.png b/smartmanager-battery/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_display.png b/smartmanager-battery/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_flight.png b/smartmanager-battery/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_ic_delete.png b/smartmanager-battery/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_ic_location.png b/smartmanager-battery/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_language_and_input.png b/smartmanager-battery/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_list_developer.png b/smartmanager-battery/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_lock_screen_and_security.png b/smartmanager-battery/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_lockscreen.png b/smartmanager-battery/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_mobile_networks.png b/smartmanager-battery/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_more_connections.png b/smartmanager-battery/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_nfc_and_payment.png b/smartmanager-battery/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_privacy_and_safety.png b/smartmanager-battery/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_security.png b/smartmanager-battery/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_sim_card_magager.png b/smartmanager-battery/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_sound_and_notifications.png b/smartmanager-battery/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_special_days.png b/smartmanager-battery/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_storage.png b/smartmanager-battery/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_tethering.png b/smartmanager-battery/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_ultra_data_saving_mode.png b/smartmanager-battery/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_wallpapers.png b/smartmanager-battery/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_wifi.png b/smartmanager-battery/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/list_icon/settings_wifi_direct.png b/smartmanager-battery/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/smartmanager-battery/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/mainmenu.png b/smartmanager-battery/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/smartmanager-battery/res/icons/mainmenu.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/org.tizen.setting.png b/smartmanager-battery/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/smartmanager-battery/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/plus.png b/smartmanager-battery/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/smartmanager-battery/res/icons/plus.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/preview_focus.#.png b/smartmanager-battery/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/smartmanager-battery/res/icons/preview_focus.#.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/preview_focus_effect.#.png b/smartmanager-battery/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/smartmanager-battery/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/setting_colortheme_select.#.png b/smartmanager-battery/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/smartmanager-battery/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/setting_colortheme_select_ef.#.png b/smartmanager-battery/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/smartmanager-battery/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/simple_password_bg.#.png b/smartmanager-battery/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/smartmanager-battery/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/slider_point.png b/smartmanager-battery/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/smartmanager-battery/res/icons/slider_point.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_incoming_call.png b/smartmanager-battery/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_notification.png b/smartmanager-battery/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_notification_mute.png b/smartmanager-battery/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_notification_vibrate.png b/smartmanager-battery/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_system.png b/smartmanager-battery/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_system_mute.png b/smartmanager-battery/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_system_vibrate.png b/smartmanager-battery/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_volume.png b/smartmanager-battery/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_volume_mute.png b/smartmanager-battery/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_slider_icon_volume_vibrate.png b/smartmanager-battery/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/smartmanager-battery/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_volume_ic_setting.png b/smartmanager-battery/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/smartmanager-battery/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/smartmanager-battery/res/icons/sound_volume_popup_bg.#.png b/smartmanager-battery/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/smartmanager-battery/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/smartmanager-battery/res/images/A01-1_progress_pending_01.png b/smartmanager-battery/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/smartmanager-battery/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/smartmanager-battery/res/images/A01-1_progress_pending_01_dim.png b/smartmanager-battery/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/smartmanager-battery/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/smartmanager-battery/res/images/A01-1_progress_pending_02.png b/smartmanager-battery/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/smartmanager-battery/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/smartmanager-battery/res/images/A01-1_progress_pending_02_dim.png b/smartmanager-battery/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/smartmanager-battery/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/smartmanager-battery/res/images/core_progress_bar.#.png b/smartmanager-battery/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/smartmanager-battery/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/smartmanager-battery/res/images/core_slider_handle_normal.png b/smartmanager-battery/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/smartmanager-battery/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/smartmanager-battery/res/images/core_slider_handle_press.png b/smartmanager-battery/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/smartmanager-battery/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/smartmanager-battery/res/images/org.tizen.setting.png b/smartmanager-battery/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/smartmanager-battery/res/images/org.tizen.setting.png and /dev/null differ diff --git a/smartmanager-battery/res/images/simple_password_bg.#.png b/smartmanager-battery/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/smartmanager-battery/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/smartmanager-battery/res/images/soundalive_progress_point.png b/smartmanager-battery/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/smartmanager-battery/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/smartmanager-battery/res/langlist.india.xml.in b/smartmanager-battery/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/smartmanager-battery/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/smartmanager-battery/res/langlist.xml.in b/smartmanager-battery/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/smartmanager-battery/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/smartmanager-battery/res/langlist_all.xml.in b/smartmanager-battery/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/smartmanager-battery/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/smartmanager-battery/res/media/settings/Alerts/General notification_sdk.wav b/smartmanager-battery/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/smartmanager-battery/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/smartmanager-battery/res/media/settings/Ringtones/ringtone_sdk.mp3 b/smartmanager-battery/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/smartmanager-battery/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/smartmanager-battery/res/media/settings/Wallpapers/home_001.png b/smartmanager-battery/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/smartmanager-battery/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/smartmanager-battery/res/media/settings/Wallpapers/home_002.png b/smartmanager-battery/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/smartmanager-battery/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/smartmanager-battery/res/media/settings/Wallpapers/home_003.png b/smartmanager-battery/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/smartmanager-battery/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/smartmanager-battery/res/media/settings/Wallpapers/home_004.png b/smartmanager-battery/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/smartmanager-battery/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/smartmanager-battery/res/po/CMakeLists.txt b/smartmanager-battery/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/smartmanager-battery/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/smartmanager-battery/res/ug-setting-shortcut-efl.xml.in b/smartmanager-battery/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/smartmanager-battery/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - - diff --git a/smartmanager-data/res/500.settings_upgrade.sh b/smartmanager-data/res/500.settings_upgrade.sh deleted file mode 100644 index d18843c0..00000000 --- a/smartmanager-data/res/500.settings_upgrade.sh +++ /dev/null @@ -1 +0,0 @@ -rm /opt/usr/apps/org.tizen.setting/data/setting.cfg diff --git a/smartmanager-data/res/edc_resource/genlist_item_mobile_data_usage.edc b/smartmanager-data/res/edc_resource/genlist_item_mobile_data_usage.edc deleted file mode 100644 index 30b32bfd..00000000 --- a/smartmanager-data/res/edc_resource/genlist_item_mobile_data_usage.edc +++ /dev/null @@ -1,270 +0,0 @@ -#define MSG_ID_TEXTS 1 /* String set of: timespan, quantity, warn, limit; If warn is NULL; limit part will take its position */ -#define MSG_ID_BAR_LIMITS 2 /* Float set of: warn, limit; If limit or warn < 0.0 it means they are not set */ -#define MSG_ID_BAR_VALUES 3 - -styles { - style { - name: "small_text_style"; - base: "font=default font_size=20 color=#ffffffff align=left wrap=mixed"; - } - style { - name: "value_style"; - base: "font=default font_size=32 align=left color=#000000ff style=shadow,bottom shadow_color=#000000ff wrap=mixed"; - } -} - - -collections -{ - base_scale: 2.4; - - group - { - name: "genlist_item_mobile_data_usage"; - - parts - { - part - { - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - min: 0 260; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part - { - name: "timespan_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 173 173 173 255; - visible: 1; - rel1.relative: 0.0375 0.079310345; - rel2.relative: 0.9625 0.182758621; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "quantity_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 255 255 255; - visible: 1; - rel1.relative: 0.0375 0.24137931; - rel2.relative: 0.9625 0.389310345; - text - { - style: "value_style"; - text: ""; - } - } - } - - part - { - name: "progress_bar_bg"; - type: RECT; - - part - { - name: "progress_bar"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 0 0 255 255; - visible: 1; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "warning_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - min: 12 1; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 255 255 0 255; - } - description - { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 255 0 0 255; - } - } - part - { - name: "limit_indicator"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - min: 12 1; - rel1.relative: 0.5 0.0; - rel2.relative: 0.5 1.0; - } - } - - description { - state: "default" 0.0; - color: 128 128 128 255; - visible: 1; - rel1.relative: 0.029166667 0.475517241; - rel2.relative: 0.970833333 0.544482759; - } - description { - state: "warning" 0.0; - inherit: "default" 0.0; - color: 128 128 64 255; - } - description { - state: "limit" 0.0; - inherit: "default" 0.0; - color: 128 64 64 255; - } - - } - - part - { - name: "warning_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 255 204 50 255; - visible: 1; - rel1.relative: 0.0375 0.675517241; - rel2.relative: 0.9625 0.778965517; - text - { - style: "small_text_style"; - text: ""; - } - } - } - - part - { - name: "limit_txt"; - type: TEXTBLOCK; - description - { - state: "default" 0.0; - color: 194 8 8 255; - visible: 1; - rel1.relative: 0.0375 0.806551724; - rel2.relative: 0.9625 0.91; - text - { - style: "small_text_style"; - text: ""; - } - } - } - } - - script - { - public warn_g; - public limit_g; - - public message(Msg_Type:type, id, ...) - { - if(type == MSG_FLOAT_SET && id == MSG_ID_BAR_LIMITS) { - new Float:warn = getfarg(2); - new Float:limit = getfarg(3); - - custom_state(PART:"warning_indicator", "default", 0.0); - custom_state(PART:"limit_indicator", "default", 0.0); - - if(warn >= 0.0) { - set_state_val(PART:"warning_indicator", STATE_REL1, warn, 0.0); - set_state_val(PART:"warning_indicator", STATE_REL2, warn, 1.0); - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"warning_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"warning_indicator", "custom", 0.0); - - if(limit >= 0.0) { - set_state_val(PART:"limit_indicator", STATE_REL1, limit, 0.0); - set_state_val(PART:"limit_indicator", STATE_REL2, limit, 1.0); - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 1); - } else { - set_state_val(PART:"limit_indicator", STATE_VISIBLE, 0); - } - set_state(PART:"limit_indicator", "custom", 0.0); - - set_float (warn_g, warn); - set_float (limit_g, limit); - } else if (type == MSG_FLOAT && id == MSG_ID_BAR_VALUES) { - new Float: warn = get_float(warn_g); - new Float: limit = get_float(limit_g); - - new Float: value = getfarg(2); - new state_name[32]; - - if (value >= limit && get_float(limit_g) > 0) - strncpy(state_name, "limit", 32); - else if (value >= warn && get_float(warn_g) > 0) - strncpy(state_name, "warning", 32); - else - strncpy(state_name, "default", 32); - - custom_state(PART:"progress_bar", state_name, 0.0); - if (value > 1.0) - value = 1.0; - set_state_val(PART:"progress_bar", STATE_REL2, value, 1.0); - set_state(PART:"progress_bar", "custom", 0.0); - } - } - } - } -} diff --git a/smartmanager-data/res/edje/accessibility-settings-set-value.edc b/smartmanager-data/res/edje/accessibility-settings-set-value.edc deleted file mode 100644 index 0305ff28..00000000 --- a/smartmanager-data/res/edje/accessibility-settings-set-value.edc +++ /dev/null @@ -1,591 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define SELECTOR_ITEM_COUNT 5 -#define SELECTOR_ITEM_HEIGHT 65 - -#define TXT_STYLE_SWITCH "style,switch" -#define TXT_STYLE_VALUE "style,value" -#define TXT_STYLE_RANGE "style,range" -#define TXT_STYLE_DESC "style,desc" - -#define GRP_SET_VALUE_NUMERIC "set-value-numeric" -#define GRP_SET_VALUE_NUMERIC_SWITCH "set-value-numeric-switch" -#define GRP_SET_VALUE_RADIOS "set-value-radios" -#define GRP_SET_VALUE_SWITCHES "set-value-switches" -#define GRP_SET_VALUE_LIST_SWITCH "set-value-list-switch" -#define GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH "set-value-update-accessories-switch" -#define PRT_SET_VALUE_BG "set-value-bg" -#define PRT_SET_VALUE_SWITCH_BG "set-value-switch-bg" -#define PRT_SET_VALUE_SWITCH "set-value-switch" -#define PRT_SET_VALUE_SWITCH_LABEL "set-value-switch-label" -#define PRT_SET_VALUE_VALUE "set-value-value" -#define PRT_SET_VALUE_SEP_1 "set-value-sep-1" -#define PRT_SET_VALUE_SEP_2 "set-value-sep-2" -#define PRT_SET_VALUE_SEP_3 "set-value-sep-3" -#define PRT_SET_VALUE_SELECTOR "set-value-selector" -#define PRT_SET_VALUE_HIGHLIGHT "set-value-highlight" -#define PRT_SET_VALUE_RANGE "set-value-range" -#define PRT_SET_VALUE_DESC "set-value-desc" -#define PRT_SET_VALUE_LIST "set-value-list" -#define PRT_SET_VALUE_ENTRY "set-value-entry" - -styles { - style { - name: TXT_STYLE_SWITCH; - base: "font=BreezeSans:style=medium font_size=35 color=#000000 wrap=mixed align=left valign=top"; - } - style { - name: TXT_STYLE_VALUE; - base: "font=BreezeSans:style=bold font_size=35 color=#000000 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_RANGE; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=center valign=top"; - } - style { - name: TXT_STYLE_DESC; - base: "font=BreezeSans:style=medium font_size=29 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_SET_VALUE_NUMERIC; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 0.1; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 1.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_1; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_1; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_NUMERIC_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_VALUE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_VALUE; - text.text: ""; - } - } - - part { - name: PRT_SET_VALUE_SEP_2; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_VALUE; - rel2.relative: 0.95 0.0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_2; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_2; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - max: -1 SELECTOR_ITEM_HEIGHT*SELECTOR_ITEM_COUNT; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_HIGHLIGHT; - type: RECT; - repeat_events: 1; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.4; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.6; - rel2.to: PRT_SET_VALUE_SELECTOR; - color: 127 127 127 32; - } - } - - part { - name: PRT_SET_VALUE_SEP_3; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SELECTOR; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SELECTOR; - rel2.to_y: PRT_SET_VALUE_BG; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_RANGE; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SEP_3; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_SEP_3; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_RANGE; - text.text: ""; - align: 0 0; - fixed: 0 1; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.00 1.0; - rel1.to: PRT_SET_VALUE_RANGE; - rel2.relative: 1.0 1.0; - rel2.to_x: PRT_SET_VALUE_RANGE; - rel2.to_y: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_RADIOS; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SELECTOR; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.03; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_SWITCHES; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - align: 0.0 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - } - } - - group { - name: GRP_SET_VALUE_LIST_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0; - rel2.relative: 1.0 0; - min: 0 180; - color: 224 224 224 255; - } - - part { - name: PRT_SET_VALUE_SWITCH; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.9 0.5; - rel2.relative: 0.9 1.0; - } - } - - part { - name: PRT_SET_VALUE_SWITCH_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel2.relative: 0.5 1.0; - text.style: TXT_STYLE_SWITCH; - text.text: ""; - text.align: 0.0 0.5; - } - } - } - - part { - name: PRT_SET_VALUE_SEP_1; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to: PRT_SET_VALUE_SWITCH; - rel2.relative: 1.0 0.0; - rel2.to_x: PRT_SET_VALUE_SWITCH; - rel2.to_y: PRT_SET_VALUE_BG; - visible: 0; - align: 0 0; - min: 0 1; - max: -1 1; - fixed: 0 1; - color: 127 127 127 192; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_SEP_1; - rel2.relative: 0.95 1.5; - min: 0 100; - rel2.to: PRT_SET_VALUE_SWITCH_BG; - text.style: TXT_STYLE_DESC; - text.text: "Description text"; - text.align: 0.0 0.5; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_DESC; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } - - group { - name: GRP_SET_VALUE_UPDATE_ACCESSORIES_SWITCH; - parts { - part { - name: PRT_SET_VALUE_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_SET_VALUE_DESC; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.offset: 40 5; - rel1.to: PRT_SET_VALUE_BG; - text.style: TXT_STYLE_DESC; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_SET_VALUE_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.offset: 40 150; - rel1.to_x: PRT_SET_VALUE_BG; - rel2.relative: 1.0 0.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - - part { - name: PRT_SET_VALUE_LIST; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.0 1.0; - rel1.to_x: PRT_SET_VALUE_BG; - rel1.to_y: PRT_SET_VALUE_ENTRY; - rel2.relative: 1.0 1.0; - rel2.to: PRT_SET_VALUE_BG; - } - } - } - } -} \ No newline at end of file diff --git a/smartmanager-data/res/edje/accessibility-smart-switch-accessory-popup.edc b/smartmanager-data/res/edje/accessibility-smart-switch-accessory-popup.edc deleted file mode 100644 index 202a82ed..00000000 --- a/smartmanager-data/res/edje/accessibility-smart-switch-accessory-popup.edc +++ /dev/null @@ -1,83 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY_POPUP "accessory_popup" -#define PRT_ACCESSORY_POPUP_BG "accessory_popup_bg" -#define PRT_ACCESSORY_POPUP_LABEL "accessory_popup_label" -#define PRT_ACCESSORY_POPUP_ENTRY "accessory_popup_entry" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY_POPUP; - parts { - part { - name: PRT_ACCESSORY_POPUP_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - min: 0 150; - max: -1 150; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_POPUP_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.0; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 0.5; - rel2.to: PRT_ACCESSORY_POPUP_BG; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - - part { - name: PRT_ACCESSORY_POPUP_ENTRY; - type: SWALLOW; - description { - state: "default" 0.0; - rel1.relative: 0.1 0.5; - rel1.to: PRT_ACCESSORY_POPUP_BG; - rel2.relative: 1.0 1.0; - rel2.to: PRT_ACCESSORY_POPUP_BG; - } - } - } - } -} diff --git a/smartmanager-data/res/edje/accessibility-smart-switch-accessory.edc b/smartmanager-data/res/edje/accessibility-smart-switch-accessory.edc deleted file mode 100644 index 6ab93b54..00000000 --- a/smartmanager-data/res/edje/accessibility-smart-switch-accessory.edc +++ /dev/null @@ -1,66 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: Michal Pawluk - * - * 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. - * - */ - -#define TXT_STYLE_LABEL "style,switch" - -#define GRP_ACCESSORY "accessory" -#define PRT_ACCESSORY_BG "accessory_bg" -#define PRT_ACCESSORY_LABEL "accessory_label" - -styles { - style { - name: TXT_STYLE_LABEL; - base: "font=BreezeSans:style=medium font_size=31 color=#404040 wrap=mixed align=left valign=top"; - } -} - -collections { - base_scale: 1.8; - - group { - name: GRP_ACCESSORY; - parts { - part { - name: PRT_ACCESSORY_BG; - type: RECT; - description { - state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - color: 255 255 255 255; - } - } - - part { - name: PRT_ACCESSORY_LABEL; - type: TEXTBLOCK; - description { - state: "default" 0.0; - rel1.relative: 0.05 0.0; - rel2.relative: 0.95 1.0; - text.style: TXT_STYLE_LABEL; - text.text: ""; - text.align: 0.0 0.0; - } - } - } - } -} diff --git a/smartmanager-data/res/edje/common-data-define.edc b/smartmanager-data/res/edje/common-data-define.edc deleted file mode 100644 index ab99c5bc..00000000 --- a/smartmanager-data/res/edje/common-data-define.edc +++ /dev/null @@ -1,29 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#define STORAGE_APPS_COLOR 192 80 77 -#define STORAGE_IMAGES_COLOR 255 204 0 -#define STORAGE_VIDEOS_COLOR 255 255 0 -#define STORAGE_AUDIO_COLOR 146 208 80 -#define STORAGE_DOCUMENTS_COLOR 0 176 240 -#define STORAGE_MISC_COLOR 127 127 127 -#define STORAGE_CACHED_COLOR 112 48 160 -#define STORAGE_SYSTEM_COLOR 0 32 96 diff --git a/smartmanager-data/res/edje/font-slider.edc b/smartmanager-data/res/edje/font-slider.edc deleted file mode 100644 index 93a36ec9..00000000 --- a/smartmanager-data/res/edje/font-slider.edc +++ /dev/null @@ -1,563 +0,0 @@ -/* -* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved -* -* PROPRIETARY/CONFIDENTIAL -* -* This software is the confidential and proprietary information of SAMSUNG -* ELECTRONICS ("Confidential Information"). You agree and acknowledge that this -* software is owned by Samsung and you shall not disclose such Confidential -* Information and shall use it only in accordance with the terms of the license -* agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no -* representations or warranties about the suitability of the software, either -* express or implied, including but not limited to the implied warranties of -* merchantability, fitness for a particular purpose, or non-infringement. -* SAMSUNG shall not be liable for any damages suffered by licensee arising out -* of or releated to this software. -* -*/ - -#define SLIDER_HEIGHT 84 -#define SLIDER_BASE_HEIGHT_INC 6 -#define SLIDER_INDICATOR_SIZE_INC 42 -#define SLIDER_SWALLOWBAR_HEIGHT_INC 42 -#define SLIDER_LEFT_RIGHT_PADDING_SIZE_INC 21 0 -#define SLIDER_ICON_PADDING_SIZE_INC 21 0 -#define SLIDER_CENTER_POINT_SIZE_INC 2 16 - -collections { - base_scale: 1.8; - - group { name: "elm/slider/horizontal/music/indicator/soundalive"; - images { - image: "core_slider_handle_normal.png" COMP; - image: "core_slider_handle_press.png" COMP; - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_SIZE_INC 1.5*SLIDER_INDICATOR_SIZE_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { - name: "button0"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_normal.png"; - } - color: 61 185 204 255; - } - } - part { - name: "button0_press"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - max: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - image { - normal: "core_slider_handle_press.png"; - } - color: 61 185 204 255; - visible: 0; - } - description { - state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - } - programs { - program { - name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0_press"; - } - program { - name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0_press"; - } - } - } - - group { - name: "elm/slider/horizontal/music/soundalive"; - //alias: "elm/slider/horizontal/disabled"; - images { - image: "core_progress_bar.#.png" COMP; - image: "soundalive_progress_point.png" COMP; - } - script { - public invert_on = 0; - public set_invert_on() { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - } - public drag_state() { - new Float:dx, Float:dy; - get_drag(PART:"elm.dragable.slider", dx, dy); - if(dx > 0.5) { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - else { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - } - } - parts { - part { - name: "access"; - type: RECT; - description { - state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part { - name: "bg"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_HEIGHT; - max: -1 SLIDER_HEIGHT; - } - } - part { - name: "bar_image_left_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "bg"; - rel2 { - relative: 0.0 1.0; - to: "bg"; - } - align: 0.0 0.5; - } - } - part { - name: "elm.swallow.icon"; - type: SWALLOW; - clip_to: "icon_clipper"; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 { - relative: 1.0 0.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - rel2 { - relative: 1.0 1.0; - to_x: "bar_image_left_padding"; - to_y: "bg"; - } - color: 61 185 204 255; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "bar_icon_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: 0 0; - max: 0 0; - rel1 { - relative: 1.0 0.0; - to: "elm.swallow.icon"; - } - rel2 { - relative: 1.0 1.0; - to: "elm.swallow.icon"; - } - fixed: 1 1; - } - description { - state: "visible"; - inherit: "default" 0.0; - min: SLIDER_ICON_PADDING_SIZE_INC; - max: SLIDER_ICON_PADDING_SIZE_INC; - } - } - part { - name: "base"; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - fixed: 0 1; - image.normal: "core_progress_bar.#.png"; - color: 181 173 181 255; - } - } - part { - name: "drag_base"; - type: "SPACER"; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - rel1 { - to_x: "bar_image_left_padding"; - to_y: "bg"; - relative: 0.0 0.0; - } - rel2.to: "bg"; - fixed: 1 1; - } - description { - state: "visible" 0.0; - inherit: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - to_y: "bg"; - relative: 0.5 0.0; - } - rel2.to: "bg"; - } - } - part { - name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - rel1 { - to_x: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.dragable.slider"; - relative: 0.5 1.0; - } - fixed: 1 1; - min: 0 SLIDER_BASE_HEIGHT_INC; - max: -1 SLIDER_BASE_HEIGHT_INC; - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description { - state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 { - to_y: "base"; - to_x: "elm.dragable.slider"; - relative: 0.5 0.0; - } - rel2 { - to_y: "base"; - to_x: "bar_image_left_padding"; - relative: 0.0 1.0; - } - image.normal: "core_progress_bar.#.png"; - color: 61 185 204 255; - } - } - part { - name: "bar_image_right_padding"; - type: SPACER; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - max: SLIDER_LEFT_RIGHT_PADDING_SIZE_INC; - fixed: 1 0; - rel1 { - relative: 1.0 0.0; - to: "bg"; - } - rel2 { - relative: 1.0 1.0; - to: "bg"; - } - align: 1.0 0.5; - } - } - part { - name: "icon_clipper"; - scale: 1; - type: RECT; - description { - state: "default" 0.0; - color: 61 185 204 255; - } - } - part { - name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description { - state: "default" 0.0; - min: 0 SLIDER_SWALLOWBAR_HEIGHT_INC; - max: -1 SLIDER_SWALLOWBAR_HEIGHT_INC; - fixed: 0 1; - rel1 { - to: "bar_icon_right_padding"; - relative: 1.0 0.0; - } - rel2 { - to: "bar_image_right_padding"; - relative: 0.0 1.0; - } - } - } - part { - name:"center_point_1"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.0 0.0; to: "base"; } - rel2 { relative: 0.0 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - //color_class: "AO001"; - } - } - part { - name:"center_point_2"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.25 0.0; to: "base"; } - rel2 { relative: 0.25 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_3"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.5 0.0; to: "base"; } - rel2 { relative: 0.5 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_4"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 0.75 0.0; to: "base";} - rel2 { relative: 0.75 1.0; to: "base"; } - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - part { - name:"center_point_5"; - scale: 1; - description { - state: "default" 0.0; - min: SLIDER_CENTER_POINT_SIZE_INC; - max: SLIDER_CENTER_POINT_SIZE_INC; - visible: 1; - image.normal: "soundalive_progress_point.png"; - rel1 { relative: 1.0 0.0; to: "base";} - rel2 { relative: 1.0 1.0; to: "base";} - align: 0.5 0.5; - fixed: 1 1; - //color_class: "AO007"; - color: 181 173 181 255; - } - } - - part { - name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/music/indicator/soundalive"; - mouse_events: 1; - scale: 1; - dragable { - x: 1 1 0; - y: 0 0 0; - confine: "drag_base"; - } - description { - state: "default" 0.0; - min: SLIDER_INDICATOR_SIZE_INC SLIDER_INDICATOR_SIZE_INC; - fixed: 1 1; - align: 0.5 0.5; - rel1.to: "base"; - rel2.to: "base"; - color: 0 0 0 0; - } - } - part { - name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description { - state: "default" 0.0; - visible: 0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part { - name: "clipper"; - type: RECT; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - description { - state: "pressed" 0.0; - color: 0 0 0 0; - } - description { - state: "disabled" 0.0; - color: 0 0 0 0; - } - - } - } - programs { - program { - name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script { - set_invert_on(); - } - } - program { - name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script { - set_invert_off(); - } - } - program { - name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - target: "bar_icon_right_padding"; - target: "drag_base"; - } - } - } -} diff --git a/smartmanager-data/res/edje/gl-item-entry-main.edc b/smartmanager-data/res/edje/gl-item-entry-main.edc deleted file mode 100644 index 080325bc..00000000 --- a/smartmanager-data/res/edje/gl-item-entry-main.edc +++ /dev/null @@ -1,185 +0,0 @@ -#define GENLIST_ITEM_1LINE_HEIGHT_INC 120 -#define GENLIST_ITEM_2LINE_HEIGHT_INC 144 -#define GENLIST_ITEM_LR_PADDING_INC 32 -#define GENLIST_ITEM_TOP_PADDING_INC 23 -#define GENLIST_ITEM_BOTTOM_PADDING_INC 24 -#define GENLIST_ITEM_TYPE_BA_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_DC_PADDING_INC 32 -#define GENLIST_ITEM_TYPE_AD_PADDING_INC 32 -#define GENLIST_ITEM_MAIN_LINE_HEIGHT_INC 54 -#define GENLIST_ITEM_MAIN_LINE_ICON_TEXT_PADDING_INC 12 -#define GENLIST_ITEM_MAIN_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_SUB_LINE_HEIGHT_INC 43 -#define GENLIST_ITEM_SUB_LINE_TEXT_END_PADDING_INC 32 -#define GENLIST_ITEM_END_TEXT_WIDTH_INC 121 -#define GENLIST_ITEM_GROUP_INDEX_HEIGHT_INC 64 -#define GENLIST_ITEM_GROUP_INDEX_TOP_PADDING_INC 10 -#define GENLIST_ITEM_GROUP_INDEX_BOTTOM_PADDING_INC 11 -#define GENLIST_ITEM_GROUP_INDEX_RIGHT_PADDING_INC 17 -#define GENLIST_ITEM_GROUP_INDEX_END_TEXT_WIDTH_INC 218 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_TOP_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_BOTTOM_PADDING_INC 12 -#define GENLIST_ITEM_GROUP_INDEX_EXPAND_ICON_SIZE_INC 64 64 -#define GENLIST_ITEM_MULTILINE_1LINE_HEIGHT_INC 120 -#define LIST_BOTTOMLINE_HEIGHT 2 - - -collections { - group { - name: "elm/genlist/item/entry.main/default"; - alias: "elm/genlist/item_compress/entry.main/default"; - alias: "elm/layout/entry.main/default"; - - data.item: "banded_bg_area" "elm.swallow.bg"; - data.item: "texts" "elm.text.main"; - data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.entry"; - - parts { - spacer { "base"; } - // background of item - rect { "bg"; - desc { "default"; - rel.to: "base"; - color: 0 0 0 0; - } - desc { "pressed"; inherit; - color: 0 0 0 10; - } - desc { "disabled"; inherit; - color: 0 0 0 0; - } - } - // swallow area for banded color - swallow { "elm.swallow.bg"; scale; - desc { "default"; - rel.to: "bg"; - } - } - swallow { "elm.icon.1"; - desc { "default"; - rel2.relative: 0.0 1.0; - align: 0.0 0.5; - } - } - swallow { "elm.icon.2"; - desc { "default"; - rel1.relative: 1.0 0.0; - align: 1.0 0.5; - } - } - spacer { "elm.padding.left"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC 1; - rel1 { - to_x: "elm.icon.1"; - relative: 1.0 0.0; - } - rel2 { - to_x: "elm.icon.1"; - relative: 1.0 1.0; - } - align: 0.0 0.5; - } - } - spacer { "elm.padding.right"; - desc { "default"; - min: GENLIST_ITEM_LR_PADDING_INC 0; - max: GENLIST_ITEM_LR_PADDING_INC -1; - rel1 { - to_x: "elm.icon.2"; - relative: 0.0 0.0; - } - rel2 { - to_x: "elm.icon.2"; - relative: 0.0 1.0; - } - align: 1.0 0.5; - } - } - spacer { "elm.padding.top"; - desc { "default"; - min: 0 GENLIST_ITEM_TOP_PADDING_INC; - max: -1 GENLIST_ITEM_TOP_PADDING_INC; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 0.0; - } - } - spacer { "elm.padding.bottom"; - desc { "default"; - min: 0 GENLIST_ITEM_BOTTOM_PADDING_INC; - max: -1 GENLIST_ITEM_BOTTOM_PADDING_INC; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 1.0; - } - } - textblock { "elm.text.main"; - desc { "default"; - rel1 { - to_x: "elm.padding.left"; - to_y: "elm.padding.top"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.padding.right"; - to_y: "elm.padding.top"; - relative: 0.0 1.0; - } - align: 0.5 0.0; - min: 0 GENLIST_ITEM_MAIN_LINE_HEIGHT_INC; - text.min: 0 1; - text.style: "list_text_main"; - } - desc { "disabled"; inherit; - text.style: "list_text_main_dim"; - } - } - swallow { "elm.icon.entry"; - desc { "default"; - rel1 { - to_x: "elm.icon.1"; - to_y: "elm.text.main"; - relative: 1.0 1.0; - } - rel2 { - to_x: "elm.icon.2"; - to_y: "elm.padding.bottom"; - relative: 0.0 0.0; - } - min: 0 120; - } - } - rect { "elm.bottomline"; scale; - desc { "default"; - fixed: 0 1; - min: 0 LIST_BOTTOMLINE_HEIGHT; - max: -1 LIST_BOTTOMLINE_HEIGHT; - align: 0.5 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - color: 204 204 204 255; - } - desc { "hidden"; inherit: "default"; - visible: 0; - } - } - } - programs { - program { - signal: "elm,state,elm.swallow.bg,visible"; - source: "elm"; - action: STATE_SET "hidden" 0.0; - target: "elm.bottomline"; - } - } - #GENLIST_PROGRAM_DEFAULT( - # target: "elm.text.main"; -# target: "elm.bottomline"; -# ) -# GENLIST_PROGRAM_DISABLED( -# target: "elm.text.main"; -# ) - } -} diff --git a/smartmanager-data/res/edje/setting-theme.edc b/smartmanager-data/res/edje/setting-theme.edc deleted file mode 100644 index 2eff1ad4..00000000 --- a/smartmanager-data/res/edje/setting-theme.edc +++ /dev/null @@ -1,3879 +0,0 @@ -/* - * setting - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. - * - * Contact: MyoungJune Park - * - * 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. - * - */ - -#include "common-data-define.edc" - -#define SLIDER_SWALLOW_BAR_MIN_WIDTH_INC 72 -#define SLIDER_SWALLOW_BAR_HEIGHT_INC 74 -#define SLIDER_BASE_HEIGHT_INC 34 -#define SLIDER_BASE_MIN_WIDTH_INC 375 -#define PROGRESS_BG_IMAGE_BORDER_INC 17 17 17 17 -#define PROGRESS_BAR_IMAGE_BORDER_INC 8 8 15 18 -#define PROGRESS_BAR_IMAGE_PADDING_SIZE_INC 9 0 -#define SLIDER_UNITS_TEXT_COLOR_INC 8 8 8 255 -#define SLIDER_UNITS_TEXT_SIZE_INC 30 -#define SLIDER_INDICATOR_TEXT_COLOR_INC 59 115 182 255 -#define SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC 255 255 255 255 -#define SLIDER_INDICATOR_WIDTH_INC 72 -#define SLIDER_INDICATOR_HEIGHT_INC 72 -#define SLIDER_INDICATOR_MAX_WIDTH_INC 90 -#define SLIDER_INDICATOR_TEXT_SIZE_INC 40 - -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_INC "#FAFAFA" -#define NOCONTENT_TEXT_BLOCK_STYLE_COLOR_DIM_INC "#A2A5AE" -#define NOCONTENT_HELP_TEXT_BLOCK_STYLE_COLOR_INC "#9A9BA0" -#define NOCONTENT_TEXT_BLOCK_TEXT_SIZE_INC 36 -#define NOCONTENT_HELP_TEXT_BLOCK_TEXT_SIZE_INC 32 -#define NOCONTENT_IMAGE_WIDTH_HEIGHT_INC 252 252 -#define NOCONTENT_BG_COLOR_INC 0 0 0 0 -#define NOCONTENT_TEXT_STYLE_BG_MIN_INC 0 68 -#define NOCONTENT_BASE_SEARCH_PADDING_INC 40 -#define NOCONTENT_PORTRAIT_HELP_TEXT_STYLE_BG_MIN_INC 0 156 -#define NOCONTENT_LANDSCAPE_HELP_TEXT_STYLE_BG_MIN_INC 0 80 -#define NOCONTENT_IMAGE_COLOR_INC 250 250 250 255 -#define NOCONTENT_SWALLOW_AREA_MIN_INC 0 80 -#define NOCONTENT_PORTRAIT_AFTER_HELP_TEXT_PADDING_INC 70 90 -#define NOCONTENT_LANDSCAPE_AFTER_HELP_TEXT_PADDING_INC 180 16 -#define NOCONTENT_PORTRAIT_AFTER_TEXT_PADDING_INC 70 96 -#define NOCONTENT_LANDSCAPE_AFTER_TEXT_PADDING_INC 180 16 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_INC 0 320 -#define NOCONTENT_BASE_PORTRAIT_MIN_WIDTH_HEIGHT_WITH_TEXT 0 742 -#define NOCONTENT_BASE_LANDS_MIN_WIDTH_HEIGHT_WITH_TEXT 0 510 -#define NOCONTENT_PORTRAIT_BUTTON_PADDING_INC 16 80 -#define NOCONTENT_LANDSCAPE_BUTTON_PADDING_INC 180 80 - -images -{ - image: "org.tizen.setting.png" COMP; - image: "simple_password_bg.#.png" COMP; -} -collections -{ - base_scale: 2.4; - styles - { - - style - { - name: "description_style"; - base: "font=Tizen:style=Roman font_size=24 align=left color=#000000 wrap=mixed text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "data_usage_graph_style"; - base: "font=Tizen:style=Roman font_size=20 align=center color=#ffffff wrap=word text_class=tizen"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Regular"; - tag: "b" "+ font=Tizen:style=Regular"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - style - { - name: "textblock_simple_pw_title_style"; - base: "font=Tizen:style=Regular font_size=24 align=left color=#808080 wrap=word text_class=label"; - tag: "br" "\n"; - tag: "hilight" "+ font=Tizen:style=Medium"; - tag: "b" "+ font=Tizen:style=Medium"; - tag: "whitecolor" "+ color=#ffffff"; - tag: "tab" "\t"; - } - - } - group - { - name: "popup_center_image"; - parts - { - part - { - name: "base"; - type: SPACER; - scale: 1; - description - { - state: "default" 0.0; - min: 618 436; - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - align: 0.5 0.5; - fixed: 1 1; - min: 618 436; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 1.0; to: "base";} - } - } - } - } - - group - { - name: "nocontents"; - parts - { - part - { - name: "contents"; - type: SWALLOW; - description - { - state: "default" 0.0; - } - } - } - } - group - { - name: "selinfo_bottom"; - - parts - { - part - { - name: "background"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - color: 8 8 8 8; - } - } - - part - { - name: "elm.swallow.contents"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0; to: "background";} - rel2 - { relative: 1.0 0.0; to_x: "background"; to_y:"bottom_padding";} - } - } - - part - { - name: "bottom_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 0; - fixed: 0 1; - align: 0.5 1.0; - rel1 - { relative: 0.0 1.0; to: "background";} - rel2 - { relative: 1.0 1.0; to: "background";} - color: 8 8 8 8; - } - description - { - state: "padding" 0.0; - inherit: "default" 0.0; - min: 0 5; // 66+4+12 - } - } - } - - programs - { - program - { - name: "bottom_padding_content_area"; - signal: "elm,layout,content,bottom_padding"; - source: "layout"; - action: STATE_SET "padding" 0.0; - target: "bottom_padding"; - } - program - { - name: "default_content_area"; - signal: "elm,layout,content,default"; - source: "layout"; - action: STATE_SET "default" 0.0; - target: "bottom_padding"; - } - } - } - - group - { - name: "sound_balance"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 0 900; - rel1 - { relative: 0.0 0.0; offset: 0 0;} - rel2 - { relative: 1.0 1.0; offset: 0 0;} - color: 8 8 8 8; - } - } - - part - { name: "elm.padding.top"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 108; - fixed: 0 1; - visible: 0; - rel2.relative: 1.0 0.0; - align: 0.0 0.0; - } - } - - part - { - name: "elm.swallow.content1"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 112; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.padding.top"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.padding.top"; - } - } - } - - part - { name: "elm.padding.middle_1"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 32; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content1"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content1"; - } - } - } - - part - { - name: "elm.swallow.content2"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - fixed: 1 1; - align: 0.5 0.0; - min: 0 76; - rel1 - { - relative: 0.0 1.0; to_y: "elm.padding.middle_1"; - } - rel2 - { - relative: 1.0 1.0; to_y: "elm.padding.middle_1"; - } - } - } - - part - { name: "elm.padding.middle_2"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 70; - fixed: 0 1; - visible: 0; - align: 0.0 0.0; - rel1 - { - relative: 0.0 1.0; - to_y: "elm.swallow.content2"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.content2"; - } - } - } - - part - { - name: "elm.swallow.content3"; - type: SWALLOW; - scale: 1; - mouse_events: 1; - description - { - state: "default" 0; - align: 0.5 0.0; - min: 380 380; - rel1 - { - relative: 170/720 1.0; to_y: "elm.padding.middle_2"; - } - rel2 - { - relative: 550/720 1.0; to_y: "elm.padding.middle_2"; - } - } - } - } // end of parts - } - - /* theme overlay for sound balance slider */ - group - { name: "elm/slider/horizontal/indicator/default"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - parts - { - part - { name: "button_events"; - type: RECT; - mouse_events: 1; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: 2*SLIDER_INDICATOR_WIDTH_INC 1.5*SLIDER_INDICATOR_HEIGHT_INC; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "button0"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - fixed: 1 1; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - max: SLIDER_INDICATOR_MAX_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - rel1 - { - to: "elm.indicator"; - offset: -2 -2; - } - rel2 - { - to: "elm.indicator"; - offset: 2 2; - } - image - { - normal: "org.tizen.setting.png"; - border: 3 3 3 3; - border_scale: 1; - } - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - image - { - normal: "org.tizen.setting.png"; - } - } - } - part - { name: "elm.indicator"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 1; - color: SLIDER_INDICATOR_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_INDICATOR_TEXT_SIZE_INC; - min: 1 1; - align: 0.5 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "hide" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - color: SLIDER_INDICATOR_TEXT_PRESSED_COLOR_INC; - } - } - } - programs - { - program - { name: "set_val_show"; - signal: "elm,state,val,show"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.indicator"; - } - program - { name: "set_val_hide"; - signal: "elm,state,val,hide"; - source: "elm"; - action: STATE_SET "hide" 0.0; - target: "elm.indicator"; - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "button0"; - target: "button_events"; - } - program - { name: "mouse_down"; - signal: "mouse,down,*"; - source: "button_events"; - action: STATE_SET "pressed" 0.0; - target: "button0"; - after: "text_pressed"; - } - program - { name: "mouse_up"; - signal: "mouse,up,*"; - source: "button_events"; - action: STATE_SET "default" 0.0; - target: "button0"; - after: "text_unpressed"; - } - program - { name: "text_pressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "default")) - set_state(PART:"elm.indicator", "pressed", 0.0); - } - } - program - { name: "text_unpressed"; - script - { - new st[31]; - new Float:vl; - get_state(PART:"elm.indicator", st, 30, vl); - if (!strcmp(st, "pressed")) - set_state(PART:"elm.indicator", "default", 0.0); - } - } - } - } - group - { name: "elm/slider/horizontal/soundbalance"; - images - { - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - image: "org.tizen.setting.png" COMP; - } - script - { - public invert_on = 0; - public set_invert_on() - { - set_state(PART:"level", "inverted", 0.0); - set_state(PART:"level2", "inverted", 0.0); - set_int(invert_on, 1); - } - public set_invert_off() - { - set_state(PART:"level", "default", 0.0); - set_state(PART:"level2", "default", 0.0); - set_int(invert_on, 0); - } - public thumb_down() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "pressed", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "pressed", 0.0); - } - public thumb_up() - { - if(get_int(invert_on) == 0) - set_state(PART:"level", "default", 0.0); - else if(get_int(invert_on) == 1) - set_state(PART:"level2", "inverted", 0.0); - } - } - parts - { - part - { name: "base"; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_BASE_MIN_WIDTH_INC SLIDER_BASE_HEIGHT_INC; - max: 99999 SLIDER_BASE_HEIGHT_INC; - rel1.to: "bg"; - rel2.to: "bg"; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BG_IMAGE_BORDER_INC; - image.border_scale: 1; - } - } - part - { - name: "base_top_pad"; - mouse_events: 1; - scale: 1; - type: RECT; - description - { - state: "default" 0.0; - visible: 0; - min: 0 4; - fixed: 1 1; - align: 0.0 1.0; - rel1 - { relative: 0.0 0.0; to: "base";} - rel2 - { relative: 1.0 0.0; to: "base";} - } - } - part - { - name: "mid_clue"; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - visible: 1; - min: 18 27; - max: 18 27; - fixed: 1 1; - align: 0.5 1.0; - rel1 - { relative: 0.5 0.0; to: "base_top_pad";} - rel2 - { relative: 0.5 0.0; to: "base_top_pad";} - image.normal: "org.tizen.setting.png"; - } - } - part - { name: "bar_image_left_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1.to: "base"; - rel2 - { relative: 0.0 1.0; to: "base";} - align: 0.0 0.5; - } - } - part - { name: "bar_image_right_padding"; - type: RECT; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - min: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - max: PROGRESS_BAR_IMAGE_PADDING_SIZE_INC; - fixed: 1 0; - rel1 - { relative: 1.0 0.0; to: "base";} - rel2.to: "base"; - align: 1.0 0.5; - } - } - part - { name: "level"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - rel1 - { to_x: "bar_image_left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 1.0;} - visible: 0; - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - } - } - part - { name: "level2"; - mouse_events: 0; - scale: 1; - clip_to: "clipper"; - description - { state: "default" 0.0; - fixed: 1 1; - visible: 0; - rel1 - { to_y: "base"; to_x: "elm.dragable.slider"; relative: 0.5 0.0;} - rel2 - { to_y: "base"; to_x: "bar_image_left_padding"; relative: 0.0 1.0;} - image.normal: "org.tizen.setting.png"; - image.border: PROGRESS_BAR_IMAGE_BORDER_INC; - image.border_scale: 1; - } - description - { state: "inverted" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description - { state: "pressed" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part - { name: "bg"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1.to: "elm.swallow.bar"; - rel2.to: "elm.swallow.bar"; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: SLIDER_SWALLOW_BAR_MIN_WIDTH_INC SLIDER_SWALLOW_BAR_HEIGHT_INC; - max: 99999 SLIDER_SWALLOW_BAR_HEIGHT_INC; - align: 1.0 0.5; - rel1 - { - to_x: "bar_left_padding"; - relative: 1.0 0.0; - } - rel2 - { - to_x: "bar_right_padding"; - relative: 0.0 1.0; - } - } - } - part - { name: "bar_left_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - rel2 - { - relative: 1.0 0.5; - to_x: "elm.text"; - } - align: 0.0 0.5; - } - } - part - { name: "bar_right_padding"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - visible: 0; - min: 16 0; - fixed: 1 1; - rel1 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - rel2 - { - relative: 0.0 0.5; - to_x: "elm.units"; - } - align: 1.0 0.5; - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 0.0 0.5; - rel1 - { to_y: "elm.swallow.bar";} - rel2 - { relative: 0.0 1.0; to_y: "elm.swallow.bar";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 0.0 0.5; - rel1.to_x: "elm.swallow.icon"; - rel1.relative: 1.0 0.0; - rel2.to_x: "elm.swallow.icon"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Medium"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.swallow.end"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - align: 1.0 0.5; - rel1 - { - relative: 1.0 0.0; - to_y: "elm.swallow.bar"; - } - rel2 - { - relative: 1.0 1.0; - to_y: "elm.swallow.bar"; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - aspect: 1.0 1.0; - aspect_preference: VERTICAL; - } - } - part - { name: "units"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - rel1 - { to_x: "elm.units";} - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "elm.units"; - type: TEXT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - fixed: 1 1; - align: 1.0 0.5; - rel1.to_x: "elm.swallow.end"; - rel2.relative: 0.0 1.0; - rel2.to_x: "elm.swallow.end"; - color: SLIDER_UNITS_TEXT_COLOR_INC; - text - { - font: "Tizen:style=Bold"; - size: SLIDER_UNITS_TEXT_SIZE_INC; - min: 0 0; - align: 0.0 0.5; - text_class: "tizen"; - ellipsis: -1; - } - } - description - { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 1; - visible: 1; - text.min: 1 1; - } - } - part - { name: "elm.dragable.slider"; - type: GROUP; - source: "elm/slider/horizontal/indicator/default"; - mouse_events: 1; - scale: 1; - dragable - { - x: 1 1 0; - y: 0 0 0; - confine: "bg"; - } - description - { state: "default" 0.0; - min: SLIDER_INDICATOR_WIDTH_INC SLIDER_INDICATOR_HEIGHT_INC; - fixed: 1 1; - align: 0.5 0.5; - color: 8 8 8 8; - } - } - part - { name: "disabler"; - type: RECT; - mouse_events: 1; - repeat_events: 0; - scale: 1; - description - { state: "default" 0.0; - visible: 0; - color: 8 8 8 8; - } - description - { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - part - { name: "clipper"; - type: RECT; - description - { state: "default" 0.0; - color: 255 255 255 255; - } - description - { state: "disabled" 0.0; - color: 255 255 255 102; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.icon"; - } - program - { name: "end_show"; - signal: "elm,state,end,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.swallow.end"; - } - program - { name: "end_hide"; - signal: "elm,state,end,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.end"; - } - program - { name: "units_show"; - signal: "elm,state,units,visible"; - source: "elm"; - action: STATE_SET "visible" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "units_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.units"; - target: "units"; - } - program - { name: "invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - script - { - set_invert_on(); - } - } - program - { name: "invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - script - { - set_invert_off(); - } - } - program - { name: "val_show"; - signal: "mouse,down,*"; - source: "elm.dragable.slider"; - script - { - thumb_down(); - } - } - program - { name: "val_hide"; - signal: "mouse,up,*"; - source: "elm.dragable.slider"; - script - { - thumb_up(); - } - } - program - { name: "slider_disable"; - signal: "elm,state,disabled"; - source: "elm"; - action: STATE_SET "disabled" 0.0; - target: "disabler"; - target: "clipper"; - } - program - { name: "slider_enable"; - signal: "elm,state,enabled"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "disabler"; - target: "clipper"; - } - } - } - - - group - { - name: "storage_edge"; - parts - { - part - { - name: "color_edge"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 18 50; - align: 0.0 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - description - { - state: "color_apps" 0.0; - inherit: "default" 0.0; - color: STORAGE_APPS_COLOR 255; - visible: 1; - } - description - { - state: "color_images" 0.0; - inherit: "default" 0.0; - color: STORAGE_IMAGES_COLOR 255; - visible: 1; - } - description - { - state: "color_videos" 0.0; - inherit: "default" 0.0; - color: STORAGE_VIDEOS_COLOR 255; - visible: 1; - } - description - { - state: "color_audio" 0.0; - inherit: "default" 0.0; - color: STORAGE_AUDIO_COLOR 255; - visible: 1; - } - description - { - state: "color_documents" 0.0; - inherit: "default" 0.0; - color: STORAGE_DOCUMENTS_COLOR 255; - visible: 1; - } - description - { - state: "color_misc" 0.0; - inherit: "default" 0.0; - color: STORAGE_MISC_COLOR 255; - visible: 1; - } - description - { - state: "color_cache" 0.0; - inherit: "default" 0.0; - color: STORAGE_CACHED_COLOR 255; - visible: 1; - } - description - { - state: "color_system" 0.0; - inherit: "default" 0.0; - color: STORAGE_SYSTEM_COLOR 255; - visible: 1; - } - } - } - programs - { - program - { name: "show_color_apps"; - signal: "elm,state,show,apps"; - source: "elm"; - action: STATE_SET "color_apps" 0.0; - target: "color_edge"; - } - program - { name: "show_color_images"; - signal: "elm,state,show,images"; - source: "elm"; - action: STATE_SET "color_images" 0.0; - target: "color_edge"; - } - program - { name: "show_color_videos"; - signal: "elm,state,show,videos"; - source: "elm"; - action: STATE_SET "color_videos" 0.0; - target: "color_edge"; - } - program - { name: "show_color_audio"; - signal: "elm,state,show,audio"; - source: "elm"; - action: STATE_SET "color_audio" 0.0; - target: "color_edge"; - } - program - { name: "show_color_documents"; - signal: "elm,state,show,documents"; - source: "elm"; - action: STATE_SET "color_documents" 0.0; - target: "color_edge"; - } - program - { name: "show_color_misc"; - signal: "elm,state,show,misc"; - source: "elm"; - action: STATE_SET "color_misc" 0.0; - target: "color_edge"; - } - program - { name: "show_color_cache"; - signal: "elm,state,show,cache"; - source: "elm"; - action: STATE_SET "color_cache" 0.0; - target: "color_edge"; - } - program - { name: "show_color_system"; - signal: "elm,state,show,system"; - source: "elm"; - action: STATE_SET "color_system" 0.0; - target: "color_edge"; - } - } - - } - - group - { - name: "layout/simple_password"; - parts - { - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "pw_bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - rel1 - { relative: 0.0 0.0; to: "bg";} - rel2 - { relative: 1.0 0.0; offset: 0 145; to: "bg";} - } - } - part - { - name: "help.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.0; - rel1 - { relative: 0.0 1.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 1.0; offset: -18 -18; to: "bg";} - text - { - style: "description_style"; - } - } - } - part - { - name: "title.txt"; - type: TEXTBLOCK; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - color: 0 0 0 255; - rel1 - { relative: 0.0 0.0; offset: 18 18; to: "pw_bg";} - rel2 - { relative: 1.0 0.0; offset: -18 100; to: "pw_bg";} - text - { - //style: textblock_tutorial_black_style; - min: 0 1; - style: "textblock_simple_pw_title_style"; - } - } - } - part - { - name: "entry1.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry1"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 107/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 107/480 1.0; offset: 56 -14; to: "pw_bg";} - - rel1 - { relative: 107/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 107/480 1.0; offset: 56 56; to: "title.txt";} - - } - } - part - { - name: "entry2.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; -// rel1 -// { relative: 177/480 1.0; offset: 0 -70; to: "pw_bg";} -// rel2 -// { relative: 177/480 1.0; offset: 56 -14; to: "pw_bg";} - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry2"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 177/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 177/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry3.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry3"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 247/480 1.0; offset: 0 -0; to: "title.txt";} - rel2 - { relative: 247/480 1.0; offset: 56 56; to: "title.txt";} - } - } - part - { - name: "entry4.bg"; - type: IMAGE; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - image - { - normal: "simple_password_bg.#.png"; - border: 4 4 4 4; - border_scale: 1; - } - } - } - part - { - name: "entry4"; - type: SWALLOW; - scale: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - min: 56 56; - rel1 - { relative: 317/480 1.0; offset: 0 0; to: "title.txt";} - rel2 - { relative: 317/480 1.0; offset: 56 56; to: "title.txt";} - } - } - } - } - group - { - name: "region_searchbar"; - - parts - { - /* background */ - part - { - name: "bg"; - type: RECT; - scale: 1; - description - { - state: "default" 0.0; - min: 0 96; - color_class: "B041"; - } - description - { - inherit: "default" 0.0; - state: "default_size_giant"; - min: 0 166; - } - } - part - { - name: "elm.swallow.search.icon"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - min: 35 35; - fixed: 1 1; - align: 1.0 0.5; - rel1 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - rel2 - { relative: 1.0 0.5; offset: -10 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - description - { - state: "default" 0.0; - fixed: 0 1; - align: 0.0 0.5; - rel1 - { relative: 0.0 0.5; offset: 40 0; to: "bg";} - rel2 - { relative: 0.0 0.5; offset: -5 0; to: "elm.swallow.search.icon";} - } - } - } - programs - { - program - { - name: "show_normal"; - signal: "set,show,normal"; - source: "*"; - action: STATE_SET "default" 0.0; - target: "bg"; - } - program - { - name: "show_giant"; - signal: "set,show,giant"; - source: "*"; - action: STATE_SET "default_size_giant" 0.0; - target: "bg"; - } - } - } - - group - { name: "font_slider"; - parts - { - part - { name: "bg"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 96; - fixed: 1 1; - } - } - - part - { name: "left_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 0.0 0.0; offset: 21 25;} - rel2 - { relative: 0.0 0.0; offset: 41 45;} - //align: 0.0 0.5; - } - } - - part - { name: "right_text"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { relative: 1.0 0.0; offset: -41 20;} - rel2 - { relative: 1.0 0.0; offset: -16 45;} - // align: 0.0 0.5; - } - } - - part - { name: "slider"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - relative: 0.0 1.0; - to: "left_text"; - offset:-22 3; - } - rel2 - { - relative: 1.0 1.0; - to: "right_text"; - offset:15 9; - } - // align: 0.0 0.5; - } - } - - } - } - - group - { - name: "date_time_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - part - { - name: "date_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.1 0.2;} - rel2 - { relative: 0.5 0.8;} - } - } - part - { - name: "padding_between"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.5 0.2;} - rel2 - { relative: 0.55 0.8;} - } - } - part - { - name: "time_field"; - type: SWALLOW; - mouse_events: 1; - description - { - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.55 0.2;} - rel2 - { relative: 0.9 0.8;} - } - } - part - { - name: "padding_right"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.9 0.2;} - rel2 - { relative: 0.1 0.8;} - } - } - - } - } - - group - { name: "gl_custom_item"; - styles - { - style - { name: "text_style"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0 text_class=list_item"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 10; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 0.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to_y: "bottom_padding"; - to_x: "right_padding"; - relative: 0.0 0.0; - - } - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - - group - { name: "gl_custom_item_icon"; - styles - { - style - { name: "text_style_ic"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.21 1.0;} - rel2 - { to: "top_padding"; relative: 0.95 1.0;} - text.style: "text_style_ic"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.8 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_app_run"; - styles - { - style - { name: "text_style_ic_run"; - base: "color=#000000FF font=Tizen:style=Regular font_size=30 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_ic_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc_run"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=right ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.swallow.icon"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.2 0.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 0.8 1.0;} - text.style: "text_style_ic_run"; - text.min: 0 1; - } - } - part - { name: "elm.text2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 54; - align: 1.0 0.0; - rel1 - { to: "elm.text"; relative: 1.0 0.0;} - rel2 - { to: "top_padding"; relative: 1.0 1.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 0.0 0.0; - rel1 - { to: "elm.swallow.icon"; relative: 1.0 0.5;} - rel2 - { to: "bottom_padding"; relative: 0.8 0.0;} - text.style: "text_style_ic_desc_run"; - text.min: 0 1; - } - } - part - { name: "elm.text.sub2"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 43; - align: 1.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 1.0 0.0;} - rel2 - { to: "bottom_padding"; relative: 1.0 0.0;} - text.style: "text_style_desc_run"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 1.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 1.0;} - } - } - } - } - group - { name: "gl_custom_item_battery"; - styles - { - style - { name: "text_style_val"; - base: "color=#000000FF font=Tizen:style=Regular font_size=46 ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - style - { name: "text_style_desc2"; - base: "color=#606060FF font=Tizen:style=Regular font_size=28 align=left ellipsis=1.0"; - tag: "br" "\n"; - tag: "ps" "ps"; - tag: "tab" "\t"; - tag: "b" "+ font_weight=Bold"; - } - } - parts - { - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - } - } - part - { name: "left_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 0.0 0.0; - rel1 - { to: "base"; relative: 0.0 0.0;} - rel2 - { to: "base"; relative: 0.0 1.0;} - } - } - part - { name: "right_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 32 0; - align: 1.0 0.0; - rel1 - { to: "base"; relative: 1.0 0.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.0 0.0; - rel1 - { to_x: "left_padding"; to_y: "base"; relative: 1.0 0.0;} - rel2 - { to_x: "right_padding"; to_y: "base"; relative: 0.0 0.0;} - } - } - part - { name: "elm.text.sub"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "top_padding"; relative: 0.0 1.0;} - rel2 - { to: "top_padding"; relative: 0.99 1.0;} - text.style: "text_style_desc2"; - text.min: 0 1; - } - } - part - { name: "text_sub_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text.sub"; relative: 0.0 1.0;} - rel2 - { to: "elm.text.sub"; relative: 1.0 1.0;} - } - } - part - { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - mouse_events: 0; - description - { state: "default" 0.0; - min: 0 41; - align: 0.0 0.0; - rel1 - { to: "text_sub_padding"; relative: 0.0 1.0;} - rel2 - { to: "text_sub_padding"; relative: 0.95 1.0;} - text.style: "text_style_val"; - text.min: 0 1; - } - } - part - { name: "text_content_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 15; - align: 0.0 0.0; - rel1 - { to: "elm.text"; relative: 0.0 1.0;} - rel2 - { to: "elm.text"; relative: 1.0 1.0;} - } - } - part - { name: "elm.swallow.content"; - type: SWALLOW; - scale: 1; - description - { state: "default" 0.0; - align: 0.5 1.0; - rel1 - { to: "text_content_padding"; relative: 0.0 1.0;} - rel2 - { to: "bottom_padding"; relative: 0.95 0.0;} - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 24; - align: 0.5 1.0; - rel1 - { to: "base"; relative: 0.0 1.0;} - rel2 - { to: "base"; relative: 1.0 1.0;} - } - } - } - } - group - { - name: "entry_layout"; - parts - { - part - { - name: "bg"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;} - rel2 - { relative: 1.0 1.0;} - } - } - part - { - name: "padding_left"; - type: RECT; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - rel1 - { relative: 0.0 0.0;offset: 20 0; to: "bg";} - rel2 - { relative: 1.0 1.0;offset: 20 0; to: "bg";} - } - } - part - { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description - { - color: 0 0 0 0; - state: "default" 0.0; - fixed: 1 1; - //rel1 { relative: 0.0 0.0; offset: 20 0;to: "padding_left";} - //rel2 { relative: 1.0 1.0; offset: 20 0;to: "padding_left";} - rel1 - { relative: 0.0 0.0; offset: 0 0;to: "padding_left";} - rel2 - { relative: 1.0 1.0; offset: 0 0;to: "padding_left";} - } - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_orange"; - data.item: "vector_ux" "default"; - parts - { - alias: "elm.text" "elm.text.top.right"; - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 8; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 43; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // orange - color:246 172 0 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:246 185 0 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 43; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 43; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group - { name: "elm/progressbar/horizontal/custom_red"; - data.item: "vector_ux" "default"; - parts - { - part - { name: "access"; - type: RECT; - description - { state: "default" 0.0; - fixed: 1 1; - color: 0 0 0 0; - } - } - part - { name: "elm.swallow.bar"; - type: SWALLOW; - description - { state: "default" 0.0; - visible: 0; - } - } - part - { name: "base"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - } - } - part - { name: "elm.text.top.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - rel1.to: "base"; - rel2.to: "top_padding"; - text - { - min: 0 0; - align: 1.0 1.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 1.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - min: 0 12; - text.min: 1 1; - visible: 1; - } - } - part - { name: "top_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 0.0; - align: 0.5 1.0; - } - } - part - { name: "background"; - type: RECT; - mouse_events: 0; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - color: 145 145 145 179; - } - } - part - { name: "tizen_vg_shape1"; - type: SWALLOW; - mouse_events: 0; - scale: 1; - clip_to: "background"; - description - { state: "default" 0.0; - rel1.to: "background"; - rel2.to: "background"; - } - } - part - { name: "drag.background"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - rel1 - { - to_x: "background"; - to_y: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_x: "background"; - to_y: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "tizen_vg_shape2"; - type: SWALLOW; - scale: 1; - clip_to: "tizen_vg_shape2_clipper"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "tizen_vg_shape2_clipper"; - type: RECT; - description - { state: "default" 0.0; - // dark red - color:177 41 41 255; - } - } - part - { name: "tizen_vg_shape3"; - type: SWALLOW; - scale: 1; - clip_to: "elm.progress.progressbar"; - description - { state: "default" 0.0; - rel1.to: "elm.progress.progressbar"; - rel2.to: "elm.progress.progressbar"; - } - } - part - { name: "elm.progress.progressbar"; - type: RECT; - description - { state: "default" 0.0; - min: 0 0; - fixed: 1 1; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - offset: -1 -1; - } - color:207 48 48 255; - } - description - { state: "invert" 0.0; - inherit: "default" 0.0; - rel1 - { - to_y: "background"; - to_x: "elm.cur.progressbar"; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - description - { state: "state_begin" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.0 0.0; - } - rel2 - { - to: "background"; - relative: 0.1 1.0; - } - } - description - { state: "state_end" 0.0; - inherit: "default" 0.0; - rel1 - { - to: "background"; - relative: 0.9 0.0; - } - rel2 - { - to: "background"; - relative: 1.0 1.0; - } - } - } - part - { name: "elm.cur.progressbar"; - mouse_events: 0; - scale: 1; - dragable - { - confine: "drag.background"; - x: 1 1 1; - y: 0 0 0; - } - description - { state: "default" 0.0; - min: 0 28; - fixed: 1 1; - visible: 0; - rel1.to: "drag.background"; - rel2.to: "drag.background"; - } - } - part - { name: "bottom_padding"; - type: SPACER; - scale: 1; - description - { state: "default" 0.0; - min: 0 7; - max: -1 7; - fixed: 0 1; - rel1.to: "background"; - rel2.to: "background"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - align: 0.5 0.0; - } - } - part - { name: "elm.text.bottom.left"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 0.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 0.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 12; - } - } - part - { name: "elm.text.status"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - min: 0 14; - visible: 1; - } - } - part - { name: "elm.text.bottom.right"; - type: TEXT; - scale: 1; - description - { state: "default" 0.0; - rel1.to: "bottom_padding"; - rel2.to: "base"; - rel1.relative: 0.0 1.0; - rel2.relative: 1.0 1.0; - text - { - min: 0 0; - align: 1.0 0.0; - font: "Tizen:style=Regular"; size: "32"; - text_class: "tizen"; - ellipsis: -1; - } - align: 1.0 0.0; - color: 102 102 102 255; - visible: 0; - } - description - { state: "show" 0.0; - inherit: "default" 0.0; - text.min: 1 1; - visible: 1; - min: 0 14; - } - } - } - programs - { - program - { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.right"; - } - program - { name: "text_top_right_show"; - signal: "elm,state,top.right,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_top_right_text_hide"; - signal: "elm,state,top.right,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.top.right"; - } - program - { name: "text_bottom_left_show"; - signal: "elm,state,bottom.left,visible"; - source: "elm"; - action: STATE_SET "show" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_left_text_hide"; - signal: "elm,state,bottom.left,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.bottom.left"; - } - program - { name: "text_bottom_right_show"; - signal: "elm,state,bottom.right,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.status", "default", 0.0); - set_state(PART:"elm.text.bottom.right", "show", 0.0); - } - } - program - { name: "text_status_show"; - signal: "elm,state,units,visible"; - source: "elm"; - script - { - set_state(PART:"elm.text.bottom.right", "default", 0.0); - set_state(PART:"elm.text.status", "show", 0.0); - } - } - program - { name: "text_status_text_hide"; - signal: "elm,state,units,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "slide_to_end"; - action: STATE_SET "state_end" 0.0; - transition: LINEAR 0.5; - target: "elm.progress.progressbar"; - after: "slide_to_begin"; - } - program - { name: "slide_to_begin"; - signal: "elm,state,slide,begin"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - transition: LINEAR 0.5; - after: "slide_to_end"; - } - program - { name: "start_pulse"; - signal: "elm,state,pulse,start"; - source: "elm"; - } - program - { name: "stop_pulse"; - signal: "elm,state,pulse,stop"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - } - program - { name: "state_pulse"; - signal: "elm,state,pulse"; - source: "elm"; - action: STATE_SET "state_begin" 0.0; - target: "elm.progress.progressbar"; - action: STATE_SET "default" 0.0; - target: "elm.text.status"; - } - program - { name: "state_fraction"; - signal: "elm,state,fraction"; - source: "elm"; - action: ACTION_STOP; - target: "slide_to_begin"; - target: "slide_to_end"; - target: "start_pulse"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - target: "elm.text.status"; - } - program - { name: "set_invert_on"; - signal: "elm,state,inverted,on"; - source: "elm"; - action: STATE_SET "invert" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "set_invert_off"; - signal: "elm,state,inverted,off"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.progress.progressbar"; - } - program - { name: "finished_animation"; - signal: "elm,action,animation,finished"; - source: "elm"; - action: SIGNAL_EMIT "animation,finished" ""; - } - } - } - - group { name: "elm/button/base/no_bg"; - parts { - part { name: "button_image"; - mouse_events: 1; - description { state: "default" 0.0; - min: 15 15; - image.middle: SOLID; - visible: 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "elm.swallow.content"; - type: SWALLOW; - description { state: "default" 0.0; - fixed: 1 0; - visible: 0; - align: 0.0 0.5; - rel1.offset: 4 4; - rel2.offset: 3 -5; - rel2.relative: 0.0 1.0; - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - fixed: 1 0; - visible: 1; - aspect: 1.0 1.0; - rel2.offset: 4 -5; - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - fixed: 0 0; - visible: 1; - align: 0.5 0.5; - rel2.offset: -5 -5; - rel2.relative: 1.0 1.0; - } - } - part { - name: "elm.text"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - color: 0 0 0 255; - color3: 0 0 0 64; - text { - font: "Sans,Edje-Vera"; - size: 40; - min: 0 0; - align: 0.5 0.5; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - visible: 1; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - description { state: "disabled_visible" 0.0; - inherit: "default" 0.0; - color: 0 0 0 128; - color3: 0 0 0 0; - visible: 1; - text.min: 1 1; - } - } - part { - name: "over1"; - type: RECT; - mouse_events: 0; - description { state: "default" 0.0; - rel2.relative: 1.0 0.5; - color: 0 0 255 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - } - } - part { - name: "over2"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 255 0 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 0; - } - } - part { name: "over3"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - description { state: "default" 0.0; - color: 0 255 0 0; - } - description { state: "clicked" 0.0; - inherit: "default" 0.0; - color: 255 255 255 0; - } - } - part { name: "disabler"; - type: RECT; - description { state: "default" 0.0; - color: 0 0 0 0; - visible: 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - visible: 1; - } - } - // used to force sizing of icon to follow label sizing nearby - part { - name: "sizer.content"; - type: TEXT; - mouse_events: 0; - scale: 1; - description { state: "default" 0.0; - visible: 0; - text { - font: "Sans,Edje-Vera"; - size: 10; - min: 0 0; - text_class: "button"; - } - } - description { state: "visible" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - description { state: "icononly" 0.0; - inherit: "default" 0.0; - rel1.to: "elm.swallow.content"; - rel2.to: "elm.swallow.content"; - text { - min: 1 1; - text: "M"; - } - } - } - // end sizer - } - programs { - program { - name: "button_click"; - signal: "mouse,down,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,press" ""; - after: "button_click_anim"; - } - program { - name: "button_click_anim"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - } - program { - name: "button_unclick"; - signal: "mouse,up,1"; - source: "over3"; - action: SIGNAL_EMIT "elm,action,unpress" ""; - after: "button_unclick_anim"; - } - program { - name: "button_pressed_anim"; - signal: "elm,anim,activate"; - source: "elm"; - action: STATE_SET "clicked" 0.0; - target: "button_image"; - target: "over3"; - after: "button_unpressed_anim"; - } - program { - name: "button_unpressed_anim"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "button_image"; - target: "over3"; - } - program { - name: "button_unclick_anim"; - action: STATE_SET "default" 0.0; - target: "button_image"; - } - program { - name: "button_click2"; - signal: "mouse,down,1"; - source: "over3"; - action: STATE_SET "clicked" 0.0; - target: "over3"; - } - program { - name: "button_unclick2"; - signal: "mouse,up,1"; - source: "over3"; - action: STATE_SET "default" 0.0; - transition: DECELERATE 0.5; - target: "over3"; - } - program { - name: "button_unclick3"; - signal: "mouse,clicked,1"; - source: "over2"; - action: SIGNAL_EMIT "elm,action,click" ""; - } - program { name: "text_show"; - signal: "elm,state,text,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "icononly")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "disabled") || (!strcmp(st, "disabled_visible"))) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "visible", 0.0); - } - } - program { name: "text_hide"; - signal: "elm,state,text,hidden"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.swallow.content", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - set_state(PART:"elm.text", "default", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "default") || (!strcmp(st, "visible"))) - set_state(PART:"elm.text", "default", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "icon_show"; - signal: "elm,state,icon,visible"; - source: "elm"; - script { - new st[31]; - new Float:vl; - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible")) { - set_state(PART:"elm.swallow.content", "visible", 0.0); - set_state(PART:"sizer.content", "visible", 0.0); - } - else { - set_state(PART:"elm.swallow.content", "icononly", 0.0); - set_state(PART:"sizer.content", "icononly", 0.0); - } - } - } - program { name: "icon_hide"; - signal: "elm,state,icon,hidden"; - source: "elm"; - action: STATE_SET "default" 0.0; - target: "elm.swallow.content"; - target: "sizer.content"; - } - program { name: "disable"; - signal: "elm,state,disabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "disabled", 0.0); - set_state(PART:"over1", "disabled", 0.0); - set_state(PART:"over2", "disabled", 0.0); - set_state(PART:"disabler", "disabled", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "disabled_visible", 0.0); - else - set_state(PART:"elm.text", "disabled", 0.0); - } - } - program { name: "enable"; - signal: "elm,state,enabled"; - source: "elm"; - script { - new st[31]; - new Float:vl; - set_state(PART:"button_image", "visible", 0.0); - set_state(PART:"over1", "visible", 0.0); - set_state(PART:"over2", "visible", 0.0); - set_state(PART:"disabler", "visible", 0.0); - get_state(PART:"elm.text", st, 30, vl); - if (!strcmp(st, "visible") || !strcmp(st, "disabled_visible")) - set_state(PART:"elm.text", "visible", 0.0); - else - set_state(PART:"elm.text", "default", 0.0); - } - } - } - } - - group { name: "processing_view_layout"; - styles { - style { name: "popup_processing_style"; - base: "font=Tizen:style=Regular align=left font_size="30" color=#000000 wrap=mixed ellipsis=1.0 text_class=tizen"; - tag: "br" "\n"; - tag: "tab" "\t"; - } - } - parts { - part { name: "bg"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 1 0; - } - } - part { name: "pad_l"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 0.0 0.0; - rel2.relative: 0.0 1.0; - align: 0.0 0.0; - } - } - part { name: "pad_r"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - min: 15 0; - fixed: 1 0; - rel1.relative: 1.0 0.0; - rel2.relative: 1.0 1.0; - align: 1.0 0.0; - } - } - part { name: "processing"; - type: SWALLOW; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 36 36; - max: 36 36; - rel1 { - relative: 1.0 0.0; - to_x: "pad_l"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - } - } - part { name: "pad_after_processing"; - type: SPACER; - scale: 1; - description { state: "default" 0.0; - fixed: 1 1; - min: 15 90; - rel1 { - relative: 1.0 0.0; - to: "processing"; - } - rel2.to: "processing"; - align: 0.0 0.5; - } - } - part { name: "elm.text"; - type: TEXTBLOCK; - scale: 1; - description { state: "default" 0.0; - min: 0 90; - fixed: 0 1; - rel1 { - relative: 1.0 0.0; - to: "pad_after_processing"; - } - rel2 { - relative: 0.0 1.0; - to_x: "pad_r"; - } - align: 0.0 0.5; - text { - style: "popup_processing_style"; - min: 0 1; - } - } - } - } - } -} diff --git a/smartmanager-data/res/edje/storage-graph.edc b/smartmanager-data/res/edje/storage-graph.edc deleted file mode 100644 index d3fb68c1..00000000 --- a/smartmanager-data/res/edje/storage-graph.edc +++ /dev/null @@ -1,373 +0,0 @@ -/* -*/ -#include "common-data-define.edc" - -#define STORAGE_GRAPH_TOTAL_HIEGHT 300 -#define STORAGE_GRAPH_MARGIN_SIZE 25 -#define STORAGE_GRAPH_SMALL_TEXT_HEIGHT 42 -#define STORAGE_GRAPH_VALUE_TEXT_HEIGHT 78 -#define STORAGE_GRAPH_GRAPH_HEIGHT 20 - -styles { - style { - name: "small text style"; - base: "font="default" font_size=28 align=left color=#737373ff wrap=mixed"; - } - style { - name: "value style"; - base: "font="default" font_size=48 align=left color=#000000ff wrap=mixed"; - } -} - -collections { - group { - name: "STORAGE_GRAPH_GRP"; - parts { - part { - name: "BG"; - type: RECT; - mouse_events: 1; - description { - state: "default" 0.0; - min: 0 STORAGE_GRAPH_TOTAL_HIEGHT; - align: 0.5 0.5; - visible: 0; - rel1.relative: 0.0 0.0; - rel2.relative: 1.0 1.0; - } - } - - part { - name: "TXT_USED"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BG"; - relative: 0.0 0.0; - offset: STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE; - } - rel2 { - to: "BG"; - relative: 1.0 0.0; - offset: -STORAGE_GRAPH_MARGIN_SIZE STORAGE_GRAPH_MARGIN_SIZE+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_USED"; - } - } - } - - part { - name: "TXT_USED_VALUE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_VALUE_TEXT_HEIGHT; - } - text { - style: "value style"; - text: "IDS_ST_CALCULATING"; - align: 0.0 0.0; - } - } - } - - part { - name: "BORDER_OUT"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_USED_VALUE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_USED_VALUE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_GRAPH_HEIGHT; - } - color: 34 135 226 255; - } - } - - part { - name: "BORDER_IN"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 0.0; - offset: 2 2; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: -3 -3; - } - color: 255 255 255 255; - } - } - - part { - name: "PART_1"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_IN"; - relative: 0.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_APPS_COLOR 255; - } - } - - part { - name: "PART_2"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_1"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_IMAGES_COLOR 255; - } - } - - part { - name: "PART_3"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_2"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_VIDEOS_COLOR 255; - } - } - - part { - name: "PART_4"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_3"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_AUDIO_COLOR 255; - } - } - - part { - name: "PART_5"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_4"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_DOCUMENTS_COLOR 255; - } - } - - part { - name: "PART_6"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_5"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_MISC_COLOR 255; - } - } - - part { - name: "PART_7"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_6"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_CACHED_COLOR 255; - } - } - - part { - name: "PART_8"; - type: RECT; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "PART_7"; - relative: 1.0 0.0; - } - rel2 { - to: "BORDER_IN"; - relative: 0.0 1.0; - } - color: STORAGE_SYSTEM_COLOR 255; - } - } - - part { - name: "TXT_TOTAL_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "BORDER_OUT"; - relative: 0.0 1.0; - offset: 0 20; - } - rel2 { - to: "BORDER_OUT"; - relative: 1.0 1.0; - offset: 0 20+STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_TOTAL_SPACE_W_VAL"; - } - } - } - - part { - name: "TXT_FREE_SPACE"; - type: TEXTBLOCK; - description { - state: "default" 0.0; - visible: 1; - rel1 { - to: "TXT_TOTAL_SPACE"; - relative: 0.0 1.0; - } - rel2 { - to: "TXT_TOTAL_SPACE"; - relative: 1.0 1.0; - offset: 0 STORAGE_GRAPH_SMALL_TEXT_HEIGHT; - } - text { - style: "small text style"; - text: "IDS_ST_BODY_FREE_SPACE_W_VAL"; - } - } - } - } - - script { - public message(Msg_Type:type, id, ...) - { - static Float:f_val1 = 0.0; - static Float:f_val2 = 0.0; - static Float:f_val3 = 0.0; - static Float:f_val4 = 0.0; - static Float:f_val5 = 0.0; - static Float:f_val6 = 0.0; - static Float:f_val7 = 0.0; - static Float:f_val8 = 0.0; - - if(type == MSG_FLOAT_SET) - { - f_val1 = getfarg(2); - f_val2 = f_val1 + getfarg(3); - f_val3 = f_val2 + getfarg(4); - f_val4 = f_val3 + getfarg(5); - f_val5 = f_val4 + getfarg(6); - f_val6 = f_val5 + getfarg(7); - f_val7 = f_val6 + getfarg(8); - f_val8 = f_val7 + getfarg(9); - - custom_state(PART:"PART_1", "default", 0.0); - set_state_val(PART:"PART_1", STATE_REL2, f_val1, 1.0); - set_state(PART:"PART_1", "custom", 0.0); - - custom_state(PART:"PART_2", "default", 0.0); - set_state_val(PART:"PART_2", STATE_REL2, f_val2, 1.0); - set_state(PART:"PART_2", "custom", 0.0); - - custom_state(PART:"PART_3", "default", 0.0); - set_state_val(PART:"PART_3", STATE_REL2, f_val3, 1.0); - set_state(PART:"PART_3", "custom", 0.0); - - custom_state(PART:"PART_4", "default", 0.0); - set_state_val(PART:"PART_4", STATE_REL2, f_val4, 1.0); - set_state(PART:"PART_4", "custom", 0.0); - - custom_state(PART:"PART_5", "default", 0.0); - set_state_val(PART:"PART_5", STATE_REL2, f_val5, 1.0); - set_state(PART:"PART_5", "custom", 0.0); - - custom_state(PART:"PART_6", "default", 0.0); - set_state_val(PART:"PART_6", STATE_REL2, f_val6, 1.0); - set_state(PART:"PART_6", "custom", 0.0); - - custom_state(PART:"PART_7", "default", 0.0); - set_state_val(PART:"PART_7", STATE_REL2, f_val7, 1.0); - set_state(PART:"PART_7", "custom", 0.0); - - custom_state(PART:"PART_8", "default", 0.0); - set_state_val(PART:"PART_8", STATE_REL2, f_val8, 1.0); - set_state(PART:"PART_8", "custom", 0.0); - } - } - } - } -} diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_00.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_00.png deleted file mode 100644 index ddac78c0..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_00.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_01.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_01.png deleted file mode 100644 index df979747..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_01.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_02.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_02.png deleted file mode 100644 index 452926ae..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_02.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_03.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_03.png deleted file mode 100644 index ea2bcbbb..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_03.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_04.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_04.png deleted file mode 100644 index 5c41fddc..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_04.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_05.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_05.png deleted file mode 100644 index aefa6873..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_05.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_06.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_06.png deleted file mode 100644 index 62b2b06e..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_06.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_07.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_07.png deleted file mode 100644 index 7595939c..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_07.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_08.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_08.png deleted file mode 100644 index d4629331..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_08.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_09.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_09.png deleted file mode 100644 index c3b87713..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_09.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_10.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_10.png deleted file mode 100644 index 6e0aad33..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_10.png and /dev/null differ diff --git a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_11.png b/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_11.png deleted file mode 100644 index e187938a..00000000 Binary files a/smartmanager-data/res/icons/brightness_icon/settings_ic_brightness_11.png and /dev/null differ diff --git a/smartmanager-data/res/icons/default_icon_service.png b/smartmanager-data/res/icons/default_icon_service.png deleted file mode 100644 index 314211d5..00000000 Binary files a/smartmanager-data/res/icons/default_icon_service.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_about_device.png b/smartmanager-data/res/icons/list_icon/settings_about_device.png deleted file mode 100644 index 8c813954..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_about_device.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_accessibility.png b/smartmanager-data/res/icons/list_icon/settings_accessibility.png deleted file mode 100644 index 67dc60f8..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_accessibility.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_account.png b/smartmanager-data/res/icons/list_icon/settings_account.png deleted file mode 100644 index 286d54ee..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_account.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_applications.png b/smartmanager-data/res/icons/list_icon/settings_applications.png deleted file mode 100644 index def0e288..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_applications.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_backup_and_reset.png b/smartmanager-data/res/icons/list_icon/settings_backup_and_reset.png deleted file mode 100644 index 6b1787d9..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_backup_and_reset.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_battery.png b/smartmanager-data/res/icons/list_icon/settings_battery.png deleted file mode 100644 index d06f9e3f..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_battery.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_bluetooth.png b/smartmanager-data/res/icons/list_icon/settings_bluetooth.png deleted file mode 100644 index b350f356..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_bluetooth.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_call_setting.png b/smartmanager-data/res/icons/list_icon/settings_call_setting.png deleted file mode 100644 index a20725a3..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_call_setting.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_convergence.png b/smartmanager-data/res/icons/list_icon/settings_convergence.png deleted file mode 100644 index 041fdadc..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_convergence.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_data_usage.png b/smartmanager-data/res/icons/list_icon/settings_data_usage.png deleted file mode 100644 index ec48f3da..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_data_usage.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_date_and_time.png b/smartmanager-data/res/icons/list_icon/settings_date_and_time.png deleted file mode 100644 index e1d33007..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_date_and_time.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_decoration.png b/smartmanager-data/res/icons/list_icon/settings_decoration.png deleted file mode 100644 index d47f6e6d..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_decoration.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_developer.png b/smartmanager-data/res/icons/list_icon/settings_developer.png deleted file mode 100644 index 53cc3d0a..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_developer.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_display.png b/smartmanager-data/res/icons/list_icon/settings_display.png deleted file mode 100644 index 4082925e..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_display.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_flight.png b/smartmanager-data/res/icons/list_icon/settings_flight.png deleted file mode 100644 index fbabae7f..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_flight.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_ic_delete.png b/smartmanager-data/res/icons/list_icon/settings_ic_delete.png deleted file mode 100644 index 2473e1d5..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_ic_delete.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_ic_location.png b/smartmanager-data/res/icons/list_icon/settings_ic_location.png deleted file mode 100644 index 3decb98a..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_ic_location.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_language_and_input.png b/smartmanager-data/res/icons/list_icon/settings_language_and_input.png deleted file mode 100644 index 5bdb1ff5..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_language_and_input.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_list_developer.png b/smartmanager-data/res/icons/list_icon/settings_list_developer.png deleted file mode 100644 index 9844e791..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_list_developer.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_lock_screen_and_security.png b/smartmanager-data/res/icons/list_icon/settings_lock_screen_and_security.png deleted file mode 100644 index 45b8949f..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_lock_screen_and_security.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_lockscreen.png b/smartmanager-data/res/icons/list_icon/settings_lockscreen.png deleted file mode 100644 index ad5e44b2..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_lockscreen.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_mobile_networks.png b/smartmanager-data/res/icons/list_icon/settings_mobile_networks.png deleted file mode 100644 index 460697de..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_mobile_networks.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_more_connections.png b/smartmanager-data/res/icons/list_icon/settings_more_connections.png deleted file mode 100644 index 65d2261a..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_more_connections.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_nfc_and_payment.png b/smartmanager-data/res/icons/list_icon/settings_nfc_and_payment.png deleted file mode 100644 index 47e1433c..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_nfc_and_payment.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_privacy_and_safety.png b/smartmanager-data/res/icons/list_icon/settings_privacy_and_safety.png deleted file mode 100644 index 616d721b..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_privacy_and_safety.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_security.png b/smartmanager-data/res/icons/list_icon/settings_security.png deleted file mode 100644 index 6ab80841..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_security.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_sim_card_magager.png b/smartmanager-data/res/icons/list_icon/settings_sim_card_magager.png deleted file mode 100644 index 17d9ad8a..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_sim_card_magager.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_sound_and_notifications.png b/smartmanager-data/res/icons/list_icon/settings_sound_and_notifications.png deleted file mode 100644 index efb95b9b..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_sound_and_notifications.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_special_days.png b/smartmanager-data/res/icons/list_icon/settings_special_days.png deleted file mode 100644 index b3eef314..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_special_days.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_storage.png b/smartmanager-data/res/icons/list_icon/settings_storage.png deleted file mode 100644 index 649529ed..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_storage.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_tethering.png b/smartmanager-data/res/icons/list_icon/settings_tethering.png deleted file mode 100644 index d51feb71..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_tethering.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_ultra_data_saving_mode.png b/smartmanager-data/res/icons/list_icon/settings_ultra_data_saving_mode.png deleted file mode 100644 index b09ba6d6..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_ultra_data_saving_mode.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_wallpapers.png b/smartmanager-data/res/icons/list_icon/settings_wallpapers.png deleted file mode 100644 index 349c9322..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_wallpapers.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_wifi.png b/smartmanager-data/res/icons/list_icon/settings_wifi.png deleted file mode 100644 index 4bd94b07..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_wifi.png and /dev/null differ diff --git a/smartmanager-data/res/icons/list_icon/settings_wifi_direct.png b/smartmanager-data/res/icons/list_icon/settings_wifi_direct.png deleted file mode 100644 index 307c0492..00000000 Binary files a/smartmanager-data/res/icons/list_icon/settings_wifi_direct.png and /dev/null differ diff --git a/smartmanager-data/res/icons/mainmenu.png b/smartmanager-data/res/icons/mainmenu.png deleted file mode 100644 index 54fbab10..00000000 Binary files a/smartmanager-data/res/icons/mainmenu.png and /dev/null differ diff --git a/smartmanager-data/res/icons/org.tizen.setting.png b/smartmanager-data/res/icons/org.tizen.setting.png deleted file mode 100644 index 7db4332b..00000000 Binary files a/smartmanager-data/res/icons/org.tizen.setting.png and /dev/null differ diff --git a/smartmanager-data/res/icons/plus.png b/smartmanager-data/res/icons/plus.png deleted file mode 100644 index 0407f066..00000000 Binary files a/smartmanager-data/res/icons/plus.png and /dev/null differ diff --git a/smartmanager-data/res/icons/preview_focus.#.png b/smartmanager-data/res/icons/preview_focus.#.png deleted file mode 100644 index 974b9886..00000000 Binary files a/smartmanager-data/res/icons/preview_focus.#.png and /dev/null differ diff --git a/smartmanager-data/res/icons/preview_focus_effect.#.png b/smartmanager-data/res/icons/preview_focus_effect.#.png deleted file mode 100644 index ea27e0c2..00000000 Binary files a/smartmanager-data/res/icons/preview_focus_effect.#.png and /dev/null differ diff --git a/smartmanager-data/res/icons/setting_colortheme_select.#.png b/smartmanager-data/res/icons/setting_colortheme_select.#.png deleted file mode 100644 index c52196fa..00000000 Binary files a/smartmanager-data/res/icons/setting_colortheme_select.#.png and /dev/null differ diff --git a/smartmanager-data/res/icons/setting_colortheme_select_ef.#.png b/smartmanager-data/res/icons/setting_colortheme_select_ef.#.png deleted file mode 100644 index 34b4504b..00000000 Binary files a/smartmanager-data/res/icons/setting_colortheme_select_ef.#.png and /dev/null differ diff --git a/smartmanager-data/res/icons/simple_password_bg.#.png b/smartmanager-data/res/icons/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/smartmanager-data/res/icons/simple_password_bg.#.png and /dev/null differ diff --git a/smartmanager-data/res/icons/slider_point.png b/smartmanager-data/res/icons/slider_point.png deleted file mode 100644 index 2450badc..00000000 Binary files a/smartmanager-data/res/icons/slider_point.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_incoming_call.png b/smartmanager-data/res/icons/sound_slider_icon_incoming_call.png deleted file mode 100644 index 24c01a17..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_incoming_call.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_notification.png b/smartmanager-data/res/icons/sound_slider_icon_notification.png deleted file mode 100644 index c255b42b..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_notification.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_notification_mute.png b/smartmanager-data/res/icons/sound_slider_icon_notification_mute.png deleted file mode 100644 index 86197f6a..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_notification_mute.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_notification_vibrate.png b/smartmanager-data/res/icons/sound_slider_icon_notification_vibrate.png deleted file mode 100644 index 008155ac..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_notification_vibrate.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_system.png b/smartmanager-data/res/icons/sound_slider_icon_system.png deleted file mode 100644 index 2629ced4..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_system.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_system_mute.png b/smartmanager-data/res/icons/sound_slider_icon_system_mute.png deleted file mode 100644 index 841c4d35..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_system_mute.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_system_vibrate.png b/smartmanager-data/res/icons/sound_slider_icon_system_vibrate.png deleted file mode 100644 index 88bbdfca..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_system_vibrate.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_volume.png b/smartmanager-data/res/icons/sound_slider_icon_volume.png deleted file mode 100644 index 2ed4c998..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_volume.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_volume_mute.png b/smartmanager-data/res/icons/sound_slider_icon_volume_mute.png deleted file mode 100644 index c48db737..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_volume_mute.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_slider_icon_volume_vibrate.png b/smartmanager-data/res/icons/sound_slider_icon_volume_vibrate.png deleted file mode 100644 index c81ceebd..00000000 Binary files a/smartmanager-data/res/icons/sound_slider_icon_volume_vibrate.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_volume_ic_setting.png b/smartmanager-data/res/icons/sound_volume_ic_setting.png deleted file mode 100644 index 4a71b762..00000000 Binary files a/smartmanager-data/res/icons/sound_volume_ic_setting.png and /dev/null differ diff --git a/smartmanager-data/res/icons/sound_volume_popup_bg.#.png b/smartmanager-data/res/icons/sound_volume_popup_bg.#.png deleted file mode 100644 index 0dcfc27e..00000000 Binary files a/smartmanager-data/res/icons/sound_volume_popup_bg.#.png and /dev/null differ diff --git a/smartmanager-data/res/images/A01-1_progress_pending_01.png b/smartmanager-data/res/images/A01-1_progress_pending_01.png deleted file mode 100644 index b1f5189e..00000000 Binary files a/smartmanager-data/res/images/A01-1_progress_pending_01.png and /dev/null differ diff --git a/smartmanager-data/res/images/A01-1_progress_pending_01_dim.png b/smartmanager-data/res/images/A01-1_progress_pending_01_dim.png deleted file mode 100644 index 664c6387..00000000 Binary files a/smartmanager-data/res/images/A01-1_progress_pending_01_dim.png and /dev/null differ diff --git a/smartmanager-data/res/images/A01-1_progress_pending_02.png b/smartmanager-data/res/images/A01-1_progress_pending_02.png deleted file mode 100644 index 186fdc81..00000000 Binary files a/smartmanager-data/res/images/A01-1_progress_pending_02.png and /dev/null differ diff --git a/smartmanager-data/res/images/A01-1_progress_pending_02_dim.png b/smartmanager-data/res/images/A01-1_progress_pending_02_dim.png deleted file mode 100644 index c86c5908..00000000 Binary files a/smartmanager-data/res/images/A01-1_progress_pending_02_dim.png and /dev/null differ diff --git a/smartmanager-data/res/images/core_progress_bar.#.png b/smartmanager-data/res/images/core_progress_bar.#.png deleted file mode 100644 index 221e0634..00000000 Binary files a/smartmanager-data/res/images/core_progress_bar.#.png and /dev/null differ diff --git a/smartmanager-data/res/images/core_slider_handle_normal.png b/smartmanager-data/res/images/core_slider_handle_normal.png deleted file mode 100644 index 4743db69..00000000 Binary files a/smartmanager-data/res/images/core_slider_handle_normal.png and /dev/null differ diff --git a/smartmanager-data/res/images/core_slider_handle_press.png b/smartmanager-data/res/images/core_slider_handle_press.png deleted file mode 100644 index 27461651..00000000 Binary files a/smartmanager-data/res/images/core_slider_handle_press.png and /dev/null differ diff --git a/smartmanager-data/res/images/org.tizen.setting.png b/smartmanager-data/res/images/org.tizen.setting.png deleted file mode 100644 index 3544bc14..00000000 Binary files a/smartmanager-data/res/images/org.tizen.setting.png and /dev/null differ diff --git a/smartmanager-data/res/images/simple_password_bg.#.png b/smartmanager-data/res/images/simple_password_bg.#.png deleted file mode 100644 index 63c02765..00000000 Binary files a/smartmanager-data/res/images/simple_password_bg.#.png and /dev/null differ diff --git a/smartmanager-data/res/images/soundalive_progress_point.png b/smartmanager-data/res/images/soundalive_progress_point.png deleted file mode 100644 index 1843b718..00000000 Binary files a/smartmanager-data/res/images/soundalive_progress_point.png and /dev/null differ diff --git a/smartmanager-data/res/langlist.india.xml.in b/smartmanager-data/res/langlist.india.xml.in deleted file mode 100644 index 631043d1..00000000 --- a/smartmanager-data/res/langlist.india.xml.in +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/smartmanager-data/res/langlist.xml.in b/smartmanager-data/res/langlist.xml.in deleted file mode 100644 index 38313af0..00000000 --- a/smartmanager-data/res/langlist.xml.in +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/smartmanager-data/res/langlist_all.xml.in b/smartmanager-data/res/langlist_all.xml.in deleted file mode 100644 index 7257c845..00000000 --- a/smartmanager-data/res/langlist_all.xml.in +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/smartmanager-data/res/media/settings/Alerts/General notification_sdk.wav b/smartmanager-data/res/media/settings/Alerts/General notification_sdk.wav deleted file mode 100644 index 64873892..00000000 Binary files a/smartmanager-data/res/media/settings/Alerts/General notification_sdk.wav and /dev/null differ diff --git a/smartmanager-data/res/media/settings/Ringtones/ringtone_sdk.mp3 b/smartmanager-data/res/media/settings/Ringtones/ringtone_sdk.mp3 deleted file mode 100644 index f159e35e..00000000 Binary files a/smartmanager-data/res/media/settings/Ringtones/ringtone_sdk.mp3 and /dev/null differ diff --git a/smartmanager-data/res/media/settings/Wallpapers/home_001.png b/smartmanager-data/res/media/settings/Wallpapers/home_001.png deleted file mode 100644 index ba5cd1ef..00000000 Binary files a/smartmanager-data/res/media/settings/Wallpapers/home_001.png and /dev/null differ diff --git a/smartmanager-data/res/media/settings/Wallpapers/home_002.png b/smartmanager-data/res/media/settings/Wallpapers/home_002.png deleted file mode 100644 index 76780cd3..00000000 Binary files a/smartmanager-data/res/media/settings/Wallpapers/home_002.png and /dev/null differ diff --git a/smartmanager-data/res/media/settings/Wallpapers/home_003.png b/smartmanager-data/res/media/settings/Wallpapers/home_003.png deleted file mode 100644 index bc6bd1a7..00000000 Binary files a/smartmanager-data/res/media/settings/Wallpapers/home_003.png and /dev/null differ diff --git a/smartmanager-data/res/media/settings/Wallpapers/home_004.png b/smartmanager-data/res/media/settings/Wallpapers/home_004.png deleted file mode 100644 index 5beb79e4..00000000 Binary files a/smartmanager-data/res/media/settings/Wallpapers/home_004.png and /dev/null differ diff --git a/smartmanager-data/res/po/CMakeLists.txt b/smartmanager-data/res/po/CMakeLists.txt deleted file mode 100644 index b695fa60..00000000 --- a/smartmanager-data/res/po/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# for i18n - -#KIRAN INDIA -#SET(POFILES bn.po en.po gu.po hi.po kn.po ml.po si.po ta.po te.po ur.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de_DE.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_MX.po es_US.po et.po eu.po fi.po fr_CA.po fr_FR.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po mn_MN.po nb.po nl_NL.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_SG.po zh_TW.po) -#SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en.po en_PH.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr.po fr_CA.po ga.po gl.po hi.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -# Language : Tizen_Applications -SET(POFILES ar.po az.po bg.po ca.po cs.po da.po de.po el_GR.po en_PH.po en.po en_US.po es_ES.po es_US.po et.po eu.po fi.po fr_CA.po fr.po ga.po gl.po hr.po hu.po hy.po is.po it_IT.po ja_JP.po ka.po kk.po ko_KR.po lt.po lv.po mk.po nb.po nl.po pl.po pt_BR.po pt_PT.po ro.po ru_RU.po sk.po sl.po sr.po sv.po tr_TR.po uk.po uz.po zh_CN.po zh_HK.po zh_TW.po) - -SET(MSGFMT "/usr/bin/msgfmt") - -FOREACH(pofile ${POFILES}) - SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}) - MESSAGE("PO: ${pofile}") - GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE) - GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE) - SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo) - ADD_CUSTOM_COMMAND( - OUTPUT ${moFile} - COMMAND ${MSGFMT} -o ${moFile} ${absPofile} - DEPENDS ${absPofile} - ) - INSTALL(FILES ${moFile} DESTINATION ${TZ_SYS_RO_APP}/${SETTING_PKG_NAME}/res/locale/${lang}/LC_MESSAGES RENAME setting.mo) -#${TZ_SYS_RO_APP}/org.tizen.mode-syspopup - - SET(moFiles ${moFiles} ${moFile}) -ENDFOREACH(pofile) - -MESSAGE(".mo files: ${moFiles}") -ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles}) diff --git a/smartmanager-data/res/ug-setting-shortcut-efl.xml.in b/smartmanager-data/res/ug-setting-shortcut-efl.xml.in deleted file mode 100644 index 9b790141..00000000 --- a/smartmanager-data/res/ug-setting-shortcut-efl.xml.in +++ /dev/null @@ -1,11 +0,0 @@ - - - - MyoungJune Park - Shortcut list of settings - - ug-setting-shortcut-efl.png - - - -