Enlightenment CVS committal

Author  : tsauerbeck
Project : misc
Module  : eplayer

Dir     : misc/eplayer/data


Modified Files:
        eplayer.edc eplayer.eet 


Log Message:
Fixed a memory leak which was caused by not calling ao_close() in track_close(), check 
ao_default_driver_id() on startup, playlist can be scrolled using the mousewheel now
===================================================================
RCS file: /cvsroot/enlightenment/misc/eplayer/data/eplayer.edc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- eplayer.edc 17 Oct 2003 21:54:44 -0000      1.4
+++ eplayer.edc 17 Oct 2003 23:46:20 -0000      1.5
@@ -1103,7 +1103,7 @@
                part {
                        name, "playlist";
                        type, RECT;
-                       mouse_events, 0;
+                       mouse_events, 1;
                        
                        description {
                                state, "default" 0.0;
@@ -1435,6 +1435,20 @@
                         action,     SIGNAL_EMIT "VOL_DECR" "vol_decr_button";
                 }
 
+                       program {
+                               name, "playlist_scroll_up";
+                               signal, "mouse,wheel,0,-1";
+                               source, "playlist";
+                               action, SIGNAL_EMIT "PLAYLIST_SCROLL_UP" "playlist";
+                       }
+                       
+                       program {
+                               name, "playlist_scroll_down";
+                               signal, "mouse,wheel,0,1";
+                               source, "playlist";
+                               action, SIGNAL_EMIT "PLAYLIST_SCROLL_DOWN" "playlist";
+                       }
+
                 program {
                         name,       "vol_decr_sig_wheel1";
                         signal,     "mouse,wheel,0,-1";
@@ -1448,7 +1462,6 @@
                         source,     "vol_decr_button";
                         action,     SIGNAL_EMIT "VOL_DECR" "vol_decr_button";
                 }
-
                } /* Close Programs */
        } /* Close Group */
 
@@ -1461,7 +1474,7 @@
                        part {
                                name, "text";
                                type, TEXT;
-                               mouse_events, 0;
+                               mouse_events, 1;
 
                                description {
                                        color, 181 247 255 255;
@@ -1475,6 +1488,22 @@
                                }
                        }
                }
+
+               programs {
+                       program {
+                               name, "text_scroll_up";
+                               signal, "mouse,wheel,0,-1";
+                               source, "text";
+                               action, SIGNAL_EMIT "PLAYLIST_SCROLL_UP" "text";
+                       }
+                       
+                       program {
+                               name, "text_scroll_down";
+                               signal, "mouse,wheel,0,1";
+                               source, "text";
+                               action, SIGNAL_EMIT "PLAYLIST_SCROLL_DOWN" "text";
+                       }
+               }
        }
        
        group {
@@ -1486,7 +1515,7 @@
                        part {
                                name, "text";
                                type, TEXT;
-                               mouse_events, 0;
+                               mouse_events, 1;
 
                                description {
                                        color, 181 247 255 255;
@@ -1498,6 +1527,22 @@
                                                align, 0.0 0.0;
                                        }
                                }
+                       }
+               }
+
+               programs {
+                       program {
+                               name, "length_scroll_up";
+                               signal, "mouse,wheel,0,-1";
+                               source, "text";
+                               action, SIGNAL_EMIT "PLAYLIST_SCROLL_UP" "text";
+                       }
+                       
+                       program {
+                               name, "length_scroll_down";
+                               signal, "mouse,wheel,0,1";
+                               source, "text";
+                               action, SIGNAL_EMIT "PLAYLIST_SCROLL_DOWN" "text";
                        }
                }
        }
===================================================================
RCS file: /cvsroot/enlightenment/misc/eplayer/data/eplayer.eet,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
Binary files /tmp/cvsGQHRgD and /tmp/cvsySURN5 differ




-------------------------------------------------------
This SF.net email sponsored by: Enterprise Linux Forum Conference & Expo
The Event For Linux Datacenter Solutions & Strategies in The Enterprise 
Linux in the Boardroom; in the Front Office; & in the Server Room 
http://www.enterpriselinuxforum.com
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to