|
From: <enl...@li...> - 2005-05-21 12:56:01
|
Enlightenment CVS committal
Author : moom16
Project : e17
Module : apps/eclair
Dir : e17/apps/eclair/data/themes/default/programs
Modified Files:
core.edc navigation_buttons.edc
Log Message:
* [Default theme]Improve the animation of the play/pause button
* Autoplay thing implemented
* Add few ideas and bugs to the TODO file
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/eclair/data/themes/default/programs/core.edc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- core.edc 18 May 2005 15:36:25 -0000 1.4
+++ core.edc 21 May 2005 12:55:23 -0000 1.5
@@ -28,6 +28,7 @@
signal: "signal_pause";
source: "eclair_bin";
action: STATE_SET "pause" 0.0;
+ transition: LINEAR 0.25;
target: "button_play";
target: "button_pause";
}
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/eclair/data/themes/default/programs/navigation_buttons.edc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- navigation_buttons.edc 17 Apr 2005 08:30:58 -0000 1.1
+++ navigation_buttons.edc 21 May 2005 12:55:23 -0000 1.2
@@ -1,4 +1,20 @@
program {
+ name: "button_play_in";
+ signal: "mouse,in";
+ source: "button_play";
+ action: STATE_SET "over" 0.0;
+ transition: LINEAR 0.25;
+ target: "play_pause_clip";
+}
+program {
+ name: "button_play_out";
+ signal: "mouse,out";
+ source: "button_play";
+ action: STATE_SET "default" 0.0;
+ transition: LINEAR 0.25;
+ target: "play_pause_clip";
+}
+program {
name: "button_play_clicked";
signal: "mouse,clicked,1";
source: "button_play";
@@ -19,6 +35,22 @@
target: "button_play";
}
program {
+ name: "button_pause_in";
+ signal: "mouse,in";
+ source: "button_pause";
+ action: STATE_SET "over" 0.0;
+ transition: LINEAR 0.25;
+ target: "play_pause_clip";
+}
+program {
+ name: "button_pause_out";
+ signal: "mouse,out";
+ source: "button_pause";
+ action: STATE_SET "default" 0.0;
+ transition: LINEAR 0.25;
+ target: "play_pause_clip";
+}
+program {
name: "button_pause_clicked";
signal: "mouse,clicked,1";
source: "button_pause";
@@ -39,22 +71,6 @@
target: "button_pause";
}
program {
- name: "button_play_over_in";
- signal: "mouse,in";
- source: "button_play_over";
- action: STATE_SET "over" 0.0;
- transition: LINEAR 0.25;
- target: "button_play_over";
-}
-program {
- name: "button_play_over_out";
- signal: "mouse,out";
- source: "button_play_over";
- action: STATE_SET "default" 0.0;
- transition: LINEAR 0.25;
- target: "button_play_over";
-}
-program {
name: "button_open_in";
signal: "mouse,in";
source: "button_open";
|