From: ChunEon Park Date: Mon, 7 May 2012 10:43:42 +0000 (+0900) Subject: removed imageslider resources X-Git-Tag: submit/2.0alpha-wayland/20121130.000903~144 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6406d8689f138525a1e35290a98b01e7ec0e64cf;p=profile%2Fivi%2Fefl-theme-tizen.git removed imageslider resources --- diff --git a/themes/tizen.edc b/themes/tizen.edc index f9d19a2..6432de7 100644 --- a/themes/tizen.edc +++ b/themes/tizen.edc @@ -66,7 +66,6 @@ collections { #include "widgets/entry.edc" #include "widgets/gengrid.edc" #include "widgets/genlist/genlist.edc" -#include "widgets/imageslider.edc" #include "widgets/index.edc" #include "widgets/label.edc" #include "widgets/layout.edc" diff --git a/themes/widgets/imageslider.edc b/themes/widgets/imageslider.edc deleted file mode 100644 index d4bae99..0000000 --- a/themes/widgets/imageslider.edc +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Copyright (c) 2010 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. - * - */ - -group { - name: "elm/imageslider/base/default"; - parts { - part { name: "background"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - color: 0 0 0 0; - } - } - - part { name: "swl.photo"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - dragable { -// confine: "background"; - x: 1 1 0; - y: 1 1 0; - } - description { - state: "default" 0.0; -// min: MAIN_W MAIN_H; - } - } - - part { name: "block"; - type: RECT; - mouse_events: 1; - scale: 1; - description { - state: "default" 0.0; - visible: 1; - color: 0 0 0 0; - } - description { - state: "unblock" 0.0; - visible: 0; - color: 0 0 0 0; - } - } - } - - programs { - // Noti on/off event - program { - name: "block_on"; - signal: "block.on"; - source: "block"; - action: STATE_SET "default" 0.0; - target: "block"; - } - program { - name: "block_off"; - signal: "block.off"; - source: "block"; - action: STATE_SET "unblock" 0.0; - target: "block"; - } - program { - name: "photo_clicked"; - signal: "mouse,clicked,1"; - source: "block"; - action: SIGNAL_EMIT "elm,photo,clicked" ""; - } - } -} - -