removed imageslider resources
authorChunEon Park <chuneon.park@samsung.com>
Mon, 7 May 2012 10:43:42 +0000 (19:43 +0900)
committerChunEon Park <chuneon.park@samsung.com>
Mon, 7 May 2012 10:43:42 +0000 (19:43 +0900)
themes/tizen.edc
themes/widgets/imageslider.edc [deleted file]

index f9d19a2..6432de7 100644 (file)
@@ -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 (file)
index d4bae99..0000000
+++ /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" "";
-               } 
-       }
-}
-
-