From 6119d54e0750cd998ae728664595df71586efbab Mon Sep 17 00:00:00 2001 From: ChunEon Park Date: Tue, 26 Jul 2011 14:34:52 +0900 Subject: [PATCH] removed slidingdrawer --- themes/groups/slidingdrawer.edc | 644 --------------------- .../nbeat-black/slidingdrawer_bottom_handler.png | Bin 214 -> 0 bytes .../slidingdrawer_bottom_handler_bar.png | Bin 238 -> 0 bytes .../nbeat-black/slidingdrawer_left_handler.png | Bin 203 -> 0 bytes .../nbeat-black/slidingdrawer_left_handler_bar.png | Bin 229 -> 0 bytes .../nbeat-black/slidingdrawer_right_handler.png | Bin 203 -> 0 bytes .../slidingdrawer_right_handler_bar.png | Bin 230 -> 0 bytes .../nbeat-black/slidingdrawer_top_handler.png | Bin 218 -> 0 bytes .../nbeat-black/slidingdrawer_top_handler_bar.png | Bin 238 -> 0 bytes .../images/nbeat/slidingdrawer_bottom_handler.png | Bin 214 -> 0 bytes .../nbeat/slidingdrawer_bottom_handler_bar.png | Bin 238 -> 0 bytes themes/images/nbeat/slidingdrawer_left_handler.png | Bin 203 -> 0 bytes .../nbeat/slidingdrawer_left_handler_bar.png | Bin 229 -> 0 bytes .../images/nbeat/slidingdrawer_right_handler.png | Bin 203 -> 0 bytes .../nbeat/slidingdrawer_right_handler_bar.png | Bin 230 -> 0 bytes themes/images/nbeat/slidingdrawer_top_handler.png | Bin 218 -> 0 bytes .../images/nbeat/slidingdrawer_top_handler_bar.png | Bin 238 -> 0 bytes themes/nbeat.edc | 1 - 18 files changed, 645 deletions(-) delete mode 100644 themes/groups/slidingdrawer.edc delete mode 100644 themes/images/nbeat-black/slidingdrawer_bottom_handler.png delete mode 100644 themes/images/nbeat-black/slidingdrawer_bottom_handler_bar.png delete mode 100644 themes/images/nbeat-black/slidingdrawer_left_handler.png delete mode 100644 themes/images/nbeat-black/slidingdrawer_left_handler_bar.png delete mode 100644 themes/images/nbeat-black/slidingdrawer_right_handler.png delete mode 100644 themes/images/nbeat-black/slidingdrawer_right_handler_bar.png delete mode 100644 themes/images/nbeat-black/slidingdrawer_top_handler.png delete mode 100644 themes/images/nbeat-black/slidingdrawer_top_handler_bar.png delete mode 100644 themes/images/nbeat/slidingdrawer_bottom_handler.png delete mode 100644 themes/images/nbeat/slidingdrawer_bottom_handler_bar.png delete mode 100644 themes/images/nbeat/slidingdrawer_left_handler.png delete mode 100644 themes/images/nbeat/slidingdrawer_left_handler_bar.png delete mode 100644 themes/images/nbeat/slidingdrawer_right_handler.png delete mode 100644 themes/images/nbeat/slidingdrawer_right_handler_bar.png delete mode 100644 themes/images/nbeat/slidingdrawer_top_handler.png delete mode 100644 themes/images/nbeat/slidingdrawer_top_handler_bar.png diff --git a/themes/groups/slidingdrawer.edc b/themes/groups/slidingdrawer.edc deleted file mode 100644 index d2bc6d4..0000000 --- a/themes/groups/slidingdrawer.edc +++ /dev/null @@ -1,644 +0,0 @@ -/* - * nbeat-theme - * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. - * - * Contact: Seokjae Jeong , Myoungwoon Roy Kim , Jeonghyun Yun , Jaehwan Kim , Chuneon Park , Juyung Seo , Woohyun Jung , Myungjae Lee , Hyoyoung Chang , IlKook Yun , CinWoo Kim JiYeon Park - * - * This library is free software; you can redistribute it and/or modify it under - * the terms of the GNU Lesser General Public License as published by the - * Free Software Foundation; either version 2.1 of the License, or (at your option) - * any later version. - * - * This library is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public - * License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - */ - -#define SLIDINGDRAWER_BG_COLOR 246 245 237 255 -#define SLIDINGDRAWER_HANDLER_WIDTH 53 -#define SLIDINGDRAWER_HANDLER_HEIGHT 20 -#define SLIDINGDRAWER_TOPDOWN_HANDLER_HEIGHT 40 -#define SLIDINGDRAWER_LEFTRIGHT_HANDLER_WIDTH 40 - -group { - name: "elm/slidingdrawer/bottom/default"; - images { - image: "slidingdrawer_bottom_handler.png" COMP; - image: "slidingdrawer_bottom_handler_bar.png" COMP; - } - script { - public g_mouse_state = 0; - public animator_up(val, Float:step) { - new Float:vx; - new Float:vy; - get_drag(PART:"elm.dragable.handler", vx, vy); - vy += step; - if (vy > 1.0) - vy = 1.0; - set_drag(PART:"elm.dragable.handler", 1.0, vy); - } - public animator_down(val, Float:step) { - new Float:vx; - new Float:vy; - get_drag(PART:"elm.dragable.handler", vx, vy); - vy -= step; - if (vy < 0.0) - vy = 0.0; - set_drag(PART:"elm.dragable.handler", 1.0, vy); - } - } - parts { - part { - name: "elm.swallow.dragable_rect"; - type: SWALLOW; - mouse_events: 0; - description { - visible: 0; - align: 0 1; - } - } - part { - name: "content_bg"; - type: RECT; - mouse_events: 0; - description { - rel1 {to:"elm.swallow.content";} - rel2 {to:"elm.swallow.content";} - color: SLIDINGDRAWER_BG_COLOR; - } - } - part { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description { - rel1 {to: "elm.dragable.handler"; relative: 0 1;} - } - } - part { - name: "handler_bar"; - type: IMAGE; - scale: 1; - description { - fixed: 0 1; - rel1 {to: "elm.dragable.handler";} - rel2 {to: "elm.dragable.handler";} - image { - normal: "slidingdrawer_bottom_handler_bar.png"; - } - } - } - part { - name: "elm.dragable.handler"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - dragable { - confine: "elm.swallow.dragable_rect"; - x: 0 0 0; - y: -1 1 1; - } - description { - min: 1 SLIDINGDRAWER_TOPDOWN_HANDLER_HEIGHT; - fixed: 0 1; - align: 0 0; - rel1 {relative: 0 0; to: "elm.swallow.dragable_rect";} - rel2 {relative: 1 0; to: "elm.swallow.dragable_rect";} - } - } - part { - name: "elm.image.handler"; - type: IMAGE; - mouse_events: 0; - scale: 1; - description { - min: SLIDINGDRAWER_HANDLER_WIDTH SLIDINGDRAWER_HANDLER_HEIGHT; - max: SLIDINGDRAWER_HANDLER_WIDTH SLIDINGDRAWER_HANDLER_HEIGHT; - fixed: 1 1; - align: 0.5 0.5; - image { - normal: "slidingdrawer_bottom_handler.png"; - } - rel1 {to:"elm.dragable.handler";} - rel2 {to:"elm.dragable.handler";} - } - } - } - programs { - program { - name: "drag_handler"; - signal: "drag"; - source: "elm.dragable.handler"; - script { - set_int (g_mouse_state, 1); - } - } - program { - name: "down_handler"; - signal: "mouse,down,*"; - source: "elm.dragable.handler"; - script { - set_int (g_mouse_state, 0); - } - } - program { - name: "handler_clicked"; - signal: "mouse,clicked,1"; - source: "elm.dragable.handler"; - script { - new Float:x; - new Float:y; - if (get_int(g_mouse_state) == 0) { - emit("animation_start", "elm.dragable.handler"); - get_drag(PART:"elm.dragable.handler", x, y); - if (y == 0) { - anim(1, "animator_up", 1); - } - else if( y == 1 ){ - anim(1, "animator_down", 1); - } - } - } - } - } -} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -group { - name: "elm/slidingdrawer/left/default"; - images { - image: "slidingdrawer_left_handler.png" COMP; - image: "slidingdrawer_left_handler_bar.png" COMP; - } - script { - public g_mouse_state = 0; - public animator_right(val, Float:step) { - new Float:vx; - new Float:vy; - get_drag(PART:"elm.dragable.handler", vx, vy); - vx += step; - if (vx > 1.0) - vx = 1.0; - set_drag(PART:"elm.dragable.handler", vx, 1.0); - } - public animator_left(val, Float:step) { - new Float:vx; - new Float:vy; - get_drag(PART:"elm.dragable.handler", vx, vy); - vx -= step; - if (vx < 0.0) - vx = 0.0; - set_drag(PART:"elm.dragable.handler", vx, 1.0); - } - } - parts { - part { - name: "elm.swallow.dragable_rect"; - type: SWALLOW; - mouse_events: 0; - description { - visible: 0; - align: 0 0; - } - } - part { - name: "content_bg"; - type: RECT; - mouse_events: 0; - description { - rel1 {to:"elm.swallow.content";} - rel2 {to:"elm.swallow.content";} - color: SLIDINGDRAWER_BG_COLOR; - } - } - part { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description { - rel2 {to: "elm.dragable.handler"; relative: 0 1;} - } - } - part { - name: "handler_bar"; - type: IMAGE; - scale: 1; - description { - fixed: 0 1; - rel1 {to: "elm.dragable.handler";} - rel2 {to: "elm.dragable.handler";} - image { - normal: "slidingdrawer_left_handler_bar.png"; - } - } - } - part { - name: "elm.dragable.handler"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - dragable { - confine: "elm.swallow.dragable_rect"; - x: 1 1 1; - y: 0 0 0; - } - description { - min: SLIDINGDRAWER_LEFTRIGHT_HANDLER_WIDTH 1; - fixed: 1 0; - align: 0 0.5; - rel1 {relative: 1 0; to: "elm.swallow.dragable_rect";} - rel2 {relative: 1 1; to: "elm.swallow.dragable_rect";} - } - } - part { - name: "elm.image.handler"; - type: IMAGE; - mouse_events: 0; - scale: 1; - description { - min: SLIDINGDRAWER_HANDLER_HEIGHT SLIDINGDRAWER_HANDLER_WIDTH; - max: SLIDINGDRAWER_HANDLER_HEIGHT SLIDINGDRAWER_HANDLER_WIDTH; - fixed: 1 1; - align: 0.5 0.5; - image { - normal: "slidingdrawer_left_handler.png"; - } - rel1 {to:"elm.dragable.handler";} - rel2 {to:"elm.dragable.handler";} - } - } - } - programs { - program { - name: "drag_handler"; - signal: "drag"; - source: "elm.dragable.handler"; - script { - set_int (g_mouse_state, 1); - } - } - program { - name: "down_handler"; - signal: "mouse,down,*"; - source: "elm.dragable.handler"; - script { - set_int (g_mouse_state, 0); - } - } - program { - name: "handler_clicked"; - signal: "mouse,clicked,1"; - source: "elm.dragable.handler"; - script { - new Float:x; - new Float:y; - if (get_int(g_mouse_state) == 0) { - emit("animation_start", "elm.dragable.handler"); - get_drag(PART:"elm.dragable.handler", x, y); - if (x == 0) { - anim(1, "animator_right", 1); - } - else if( x == 1 ){ - anim(1, "animator_left", 1); - } - } - } - } - } -} -group { - name: "elm/slidingdrawer/top/default"; - images { - image: "slidingdrawer_top_handler.png" COMP; - image: "slidingdrawer_top_handler_bar.png" COMP; - } - script { - public g_mouse_state = 0; - public animator_up(val, Float:step) { - new Float:vx; - new Float:vy; - get_drag(PART:"elm.dragable.handler", vx, vy); - vy += step; - if (vy > 1.0) - vy = 1.0; - set_drag(PART:"elm.dragable.handler", 1.0, vy); - } - public animator_down(val, Float:step) { - new Float:vx; - new Float:vy; - get_drag(PART:"elm.dragable.handler", vx, vy); - vy -= step; - if (vy < 0.0) - vy = 0.0; - set_drag(PART:"elm.dragable.handler", 1.0, vy); - } - } - parts { - part { - name: "elm.swallow.dragable_rect"; - type: SWALLOW; - mouse_events: 0; - description { - visible: 0; - align: 0 0; - } - } - part { - name: "content_bg"; - type: RECT; - mouse_events: 0; - description { - rel1 {to:"elm.swallow.content";} - rel2 {to:"elm.swallow.content";} - color: SLIDINGDRAWER_BG_COLOR; - } - } - part { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description { - rel2 {to: "elm.dragable.handler"; relative: 1 0;} - } - } - part { - name: "handler_bar"; - type: IMAGE; - scale: 1; - description { - fixed: 0 1; - rel1 {to: "elm.dragable.handler";} - rel2 {to: "elm.dragable.handler";} - image { - normal: "slidingdrawer_top_handler_bar.png"; - } - } - } - part { - name: "elm.dragable.handler"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - dragable { - confine: "elm.swallow.dragable_rect"; - x: 0 0 0; - y: 1 1 1; - } - description { - min: 1 SLIDINGDRAWER_TOPDOWN_HANDLER_HEIGHT; - fixed: 0 0; - align: 0 1; - rel1 {relative: 0 1; to: "elm.swallow.dragable_rect";} - rel2 {relative: 1 1; to: "elm.swallow.dragable_rect";} - } - } - part { - name: "elm.image.handler"; - type: IMAGE; - mouse_events: 0; - scale: 1; - description { - min: SLIDINGDRAWER_HANDLER_WIDTH SLIDINGDRAWER_HANDLER_HEIGHT; - max: SLIDINGDRAWER_HANDLER_WIDTH SLIDINGDRAWER_HANDLER_HEIGHT; - fixed: 1 1; - align: 0.5 0.5; - image { - normal: "slidingdrawer_top_handler.png"; - } - rel1 {to:"elm.dragable.handler";} - rel2 {to:"elm.dragable.handler";} - } - } - } - programs { - program { - name: "drag_handler"; - signal: "drag"; - source: "elm.dragable.handler"; - script { - set_int (g_mouse_state, 1); - } - } - program { - name: "down_handler"; - signal: "mouse,down,*"; - source: "elm.dragable.handler"; - script { - set_int (g_mouse_state, 0); - } - } - program { - name: "handler_clicked"; - signal: "mouse,clicked,1"; - source: "elm.dragable.handler"; - script { - new Float:x; - new Float:y; - if (get_int(g_mouse_state) == 0) { - emit("animation_start", "elm.dragable.handler"); - get_drag(PART:"elm.dragable.handler", x, y); - if (y == 1) { - anim(1, "animator_down", 1); - } - else if( y == 0 ){ - anim(1, "animator_up", 1); - } - } - } - } - } - -} - -group { - name: "elm/slidingdrawer/right/default"; - images { - image: "slidingdrawer_right_handler.png" COMP; - image: "slidingdrawer_right_handler_bar.png" COMP; - } - script { - public g_mouse_state = 0; - public animator_right(val, Float:step) { - new Float:vx; - new Float:vy; - get_drag(PART:"elm.dragable.handler", vx, vy); - vx += step; - if (vx > 1.0) - vx = 1.0; - set_drag(PART:"elm.dragable.handler", vx, 1.0); - } - public animator_left(val, Float:step) { - new Float:vx; - new Float:vy; - get_drag(PART:"elm.dragable.handler", vx, vy); - vx -= step; - if (vx < 0.0) - vx = 0.0; - set_drag(PART:"elm.dragable.handler", vx, 1.0); - } - } - parts { - part { - name: "elm.swallow.dragable_rect"; - type: SWALLOW; - mouse_events: 0; - description { - visible: 0; - align: 1 0; - } - } - part { - name: "content_bg"; - type: RECT; - mouse_events: 0; - description { - rel1 {to:"elm.swallow.content";} - rel2 {to:"elm.swallow.content";} - color: SLIDINGDRAWER_BG_COLOR; - } - } - part { - name: "elm.swallow.content"; - type: SWALLOW; - mouse_events: 1; - description { - rel1 {to: "elm.dragable.handler"; relative: 1 0;} - } - } - part { - name: "handler_bar"; - type: IMAGE; - scale: 1; - description { - fixed: 0 1; - rel1 {to: "elm.dragable.handler";} - rel2 {to: "elm.dragable.handler";} - image { - normal: "slidingdrawer_right_handler_bar.png"; - } - } - } - part { - name: "elm.dragable.handler"; - type: SWALLOW; - mouse_events: 1; - scale: 1; - dragable { - confine: "elm.swallow.dragable_rect"; - x: -1 1 1; - y: 0 0 0; - } - description { - min: SLIDINGDRAWER_LEFTRIGHT_HANDLER_WIDTH 1; - fixed: 1 0; - align: 1 0.5; - rel1 {relative: 0 0; to: "elm.swallow.dragable_rect";} - rel2 {relative: 0 1; to: "elm.swallow.dragable_rect";} - } - } - part { - name: "elm.image.handler"; - type: IMAGE; - mouse_events: 0; - scale: 1; - description { - min: SLIDINGDRAWER_HANDLER_HEIGHT SLIDINGDRAWER_HANDLER_WIDTH; - max: SLIDINGDRAWER_HANDLER_HEIGHT SLIDINGDRAWER_HANDLER_WIDTH; - fixed: 1 1; - align: 0.5 0.5; - image { - normal: "slidingdrawer_right_handler.png"; - } - rel1 {to:"elm.dragable.handler";} - rel2 {to:"elm.dragable.handler";} - } - } - } - programs { - program { - name: "drag_handler"; - signal: "drag"; - source: "elm.dragable.handler"; - script { - set_int (g_mouse_state, 1); - } - } - program { - name: "down_handler"; - signal: "mouse,down,*"; - source: "elm.dragable.handler"; - script { - set_int (g_mouse_state, 0); - } - } - program { - name: "handler_clicked"; - signal: "mouse,clicked,1"; - source: "elm.dragable.handler"; - script { - new Float:x; - new Float:y; - if (get_int(g_mouse_state) == 0) { - emit("animation_start", "elm.dragable.handler"); - get_drag(PART:"elm.dragable.handler", x, y); - if (x == 0) { - anim(1, "animator_right", 1); - } - else if( x == 1 ){ - anim(1, "animator_left", 1); - } - } - } - } - } -} - diff --git a/themes/images/nbeat-black/slidingdrawer_bottom_handler.png b/themes/images/nbeat-black/slidingdrawer_bottom_handler.png deleted file mode 100644 index 787c09b17fc9d64fc2b7f0be6049064d234a9ba6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^ra&yh!3HFC#Y!IoDaPU;cPEB*=VV?2Ic!PZ?k)`f zL2$v|<&%LToCO|{#S9GG!XV7ZFl&wkP>{XE)7O>#7N-P@nV|*y#%iEYn5THF%d+h46*wP}vx`<1ua)Yw4a*u|!#E5VEB zN$LJ|^WJ~a#`M+7K>yxpb&HqY&zL9mRpc!r!>&k0xtfZFAAmM6c)I$ztaD0e0s!DL BM}7bR diff --git a/themes/images/nbeat-black/slidingdrawer_bottom_handler_bar.png b/themes/images/nbeat-black/slidingdrawer_bottom_handler_bar.png deleted file mode 100644 index a90b812608eceb2d2df7bf4e2340feae470b57a2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^ra-L0!3HGb)@=fD7>k44ofy`glX(f`uqAoByDx`7I;J!Gca%qgD@k*tT_@uLG}_)Usv{99C94oDtgM3)PO>Ho-U3d8TZ~^ z+{oErAi?@jobyRJyZMHV0!uRAtLTm?ynRNGvrKs>&j6Nw3)%v L)z4*}Q$iB}rJqU$ diff --git a/themes/images/nbeat-black/slidingdrawer_left_handler.png b/themes/images/nbeat-black/slidingdrawer_left_handler.png deleted file mode 100644 index fcd3846f793d450da0bbdee60722b9cd7371fe6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^B0y})!3HE9D^Je@QjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O?XxI14-?iy0WWg+Z8+Vb&Z8pdfpRr>`sfElvqmW+`)z2fKhm-kvUwArXh) z-dM=Rpup4e@a(dS>|zI>n`T|rQA=z(R9`3~e|q`etBP%fNpo0rEIauNwddY>U&nz0 geyFcF@6RHf;KIv!>EPs(Kw}v^UHx3vIVCg!0M^esasU7T diff --git a/themes/images/nbeat-black/slidingdrawer_left_handler_bar.png b/themes/images/nbeat-black/slidingdrawer_left_handler_bar.png deleted file mode 100644 index 560d2ac9b04982646ed11231cc63deec5946b7f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^8bEBy!3HFax2*(m7>k44ofy`glX(f`uqAoByDx`7I;J!Gca%qgD@k*tT_@uLG}_)Usv{99C94$oIz)o{sju9db&7Tl0E6qr(^_YihunO@uO!rJI>qGPdWq%}w!(9s*?hC+^i(x{!o^T~|6^OGOvJUd u46HMv?anQ5Y-Zz?GRe4rlkwy917-~-G39r9`E!64GI+ZBxvX| zgW!U_%O?XxI14-?iy0WWg+Z8+Vb&Z8pdfpRr>`sfElvqm7ItZVsU<)mZ%-G;kch)? zZ!F|uP~d5Kcy`%EcCmxcO|!1*s3kTXsxOq0KfQeKRmHZ#q&ci#6unMnYR|p%zK#P0 g{7_$U-k(L-{|hhY@0a$ofW|U-y85}Sb4q9e0GRqZzW@LL diff --git a/themes/images/nbeat-black/slidingdrawer_right_handler_bar.png b/themes/images/nbeat-black/slidingdrawer_right_handler_bar.png deleted file mode 100644 index 3d879f9dddc22d3d1a82ef7b49ff030c522fbcff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^8bEBy!3HFax2*(m7>k44ofy`glX(f`uqAoByDx`7I;J!Gca%qgD@k*tT_@uLG}_)Usv{99CDnD+;#VL4*`YJJY5_^GVZ-S zcaYb?fx-3Q@znitB@Z4c-0ZL_dGch%zN_6v9eY+L>{{!myn(4Y_Ss(x{d*T~@jA3k w5Srv9RAqN=fnzfpuarr~1)Pi@rynqH+Rbiyed@EFKpPo6UHx3vIVCg!0Mw~W@Bjb+ diff --git a/themes/images/nbeat-black/slidingdrawer_top_handler.png b/themes/images/nbeat-black/slidingdrawer_top_handler.png deleted file mode 100644 index bb018caa730008f4098360537f2ad2a960e9e23d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^ra&yh!3HFC#Y!IoDaPU;cPEB*=VV?2Ic!PZ?k)`f zL2$v|<&%LToCO|{#S9GG!XV7ZFl&wkP>{XE)7O>#7N-O&vzmnZ99y7Jl&6bhNW|gf zKi|H-t#3dVaO^haW;7I zJgKi&GG3ZT{px+TGSI)bDr?IZY2CkWpRcS~zJi}&OR|<+GiTgSpe+oZu6{1-oD!M< DLrh1S diff --git a/themes/images/nbeat-black/slidingdrawer_top_handler_bar.png b/themes/images/nbeat-black/slidingdrawer_top_handler_bar.png deleted file mode 100644 index c86ca7f7cf69646164d8b0cb734c673645facba4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^ra-L0!3HGb)@=fD7>k44ofy`glX(f`uqAoByDx`7I;J!Gca%qgD@k*tT_@uLG}_)Usv{99CDmYY}(FDdw@cDo-U3d8Ta1a z+{oGBAmDN_a-+Am!Dd}J$K${sn MUHx3vIVCg!0L*_(`Tzg` diff --git a/themes/images/nbeat/slidingdrawer_bottom_handler.png b/themes/images/nbeat/slidingdrawer_bottom_handler.png deleted file mode 100644 index 787c09b17fc9d64fc2b7f0be6049064d234a9ba6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 214 zcmeAS@N?(olHy`uVBq!ia0vp^ra&yh!3HFC#Y!IoDaPU;cPEB*=VV?2Ic!PZ?k)`f zL2$v|<&%LToCO|{#S9GG!XV7ZFl&wkP>{XE)7O>#7N-P@nV|*y#%iEYn5THF%d+h46*wP}vx`<1ua)Yw4a*u|!#E5VEB zN$LJ|^WJ~a#`M+7K>yxpb&HqY&zL9mRpc!r!>&k0xtfZFAAmM6c)I$ztaD0e0s!DL BM}7bR diff --git a/themes/images/nbeat/slidingdrawer_bottom_handler_bar.png b/themes/images/nbeat/slidingdrawer_bottom_handler_bar.png deleted file mode 100644 index a90b812608eceb2d2df7bf4e2340feae470b57a2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^ra-L0!3HGb)@=fD7>k44ofy`glX(f`uqAoByDx`7I;J!Gca%qgD@k*tT_@uLG}_)Usv{99C94oDtgM3)PO>Ho-U3d8TZ~^ z+{oErAi?@jobyRJyZMHV0!uRAtLTm?ynRNGvrKs>&j6Nw3)%v L)z4*}Q$iB}rJqU$ diff --git a/themes/images/nbeat/slidingdrawer_left_handler.png b/themes/images/nbeat/slidingdrawer_left_handler.png deleted file mode 100644 index fcd3846f793d450da0bbdee60722b9cd7371fe6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^B0y})!3HE9D^Je@QjEnx?oJHr&dIz4a@dl*-CY>| zgW!U_%O?XxI14-?iy0WWg+Z8+Vb&Z8pdfpRr>`sfElvqmW+`)z2fKhm-kvUwArXh) z-dM=Rpup4e@a(dS>|zI>n`T|rQA=z(R9`3~e|q`etBP%fNpo0rEIauNwddY>U&nz0 geyFcF@6RHf;KIv!>EPs(Kw}v^UHx3vIVCg!0M^esasU7T diff --git a/themes/images/nbeat/slidingdrawer_left_handler_bar.png b/themes/images/nbeat/slidingdrawer_left_handler_bar.png deleted file mode 100644 index 560d2ac9b04982646ed11231cc63deec5946b7f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^8bEBy!3HFax2*(m7>k44ofy`glX(f`uqAoByDx`7I;J!Gca%qgD@k*tT_@uLG}_)Usv{99C94$oIz)o{sju9db&7Tl0E6qr(^_YihunO@uO!rJI>qGPdWq%}w!(9s*?hC+^i(x{!o^T~|6^OGOvJUd u46HMv?anQ5Y-Zz?GRe4rlkwy917-~-G39r9`E!64GI+ZBxvX| zgW!U_%O?XxI14-?iy0WWg+Z8+Vb&Z8pdfpRr>`sfElvqm7ItZVsU<)mZ%-G;kch)? zZ!F|uP~d5Kcy`%EcCmxcO|!1*s3kTXsxOq0KfQeKRmHZ#q&ci#6unMnYR|p%zK#P0 g{7_$U-k(L-{|hhY@0a$ofW|U-y85}Sb4q9e0GRqZzW@LL diff --git a/themes/images/nbeat/slidingdrawer_right_handler_bar.png b/themes/images/nbeat/slidingdrawer_right_handler_bar.png deleted file mode 100644 index 3d879f9dddc22d3d1a82ef7b49ff030c522fbcff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^8bEBy!3HFax2*(m7>k44ofy`glX(f`uqAoByDx`7I;J!Gca%qgD@k*tT_@uLG}_)Usv{99CDnD+;#VL4*`YJJY5_^GVZ-S zcaYb?fx-3Q@znitB@Z4c-0ZL_dGch%zN_6v9eY+L>{{!myn(4Y_Ss(x{d*T~@jA3k w5Srv9RAqN=fnzfpuarr~1)Pi@rynqH+Rbiyed@EFKpPo6UHx3vIVCg!0Mw~W@Bjb+ diff --git a/themes/images/nbeat/slidingdrawer_top_handler.png b/themes/images/nbeat/slidingdrawer_top_handler.png deleted file mode 100644 index bb018caa730008f4098360537f2ad2a960e9e23d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^ra&yh!3HFC#Y!IoDaPU;cPEB*=VV?2Ic!PZ?k)`f zL2$v|<&%LToCO|{#S9GG!XV7ZFl&wkP>{XE)7O>#7N-O&vzmnZ99y7Jl&6bhNW|gf zKi|H-t#3dVaO^haW;7I zJgKi&GG3ZT{px+TGSI)bDr?IZY2CkWpRcS~zJi}&OR|<+GiTgSpe+oZu6{1-oD!M< DLrh1S diff --git a/themes/images/nbeat/slidingdrawer_top_handler_bar.png b/themes/images/nbeat/slidingdrawer_top_handler_bar.png deleted file mode 100644 index c86ca7f7cf69646164d8b0cb734c673645facba4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^ra-L0!3HGb)@=fD7>k44ofy`glX(f`uqAoByDx`7I;J!Gca%qgD@k*tT_@uLG}_)Usv{99CDmYY}(FDdw@cDo-U3d8Ta1a z+{oGBAmDN_a-+Am!Dd}J$K${sn MUHx3vIVCg!0L*_(`Tzg` diff --git a/themes/nbeat.edc b/themes/nbeat.edc index c39f8fa..360ecfd 100644 --- a/themes/nbeat.edc +++ b/themes/nbeat.edc @@ -85,7 +85,6 @@ collections { #include "groups/segmentedcontrol.edc" #include "groups/selectioninfo.edc" #include "groups/slider.edc" -#include "groups/slidingdrawer.edc" #include "groups/stackedicon.edc" #include "groups/tickernoti.edc" #include "groups/toggle.edc" -- 2.7.4