[Ap-python-commits] python/examples/aptk current_play.xpm,NONE,1.1 Makefile.am,1.3,1.4 playlist.py,1
Status: Beta
Brought to you by:
sjah
From: <sj...@us...> - 2002-07-18 09:16:07
|
Update of /cvsroot/ap-python/python/examples/aptk In directory usw-pr-cvs1:/tmp/cvs-serv11195 Modified Files: Makefile.am playlist.py Added Files: current_play.xpm Log Message: Mark currently playing song at playlist window. --- NEW FILE: current_play.xpm --- /* XPM */ static char * current_play_xpm[] = { "13 12 58 1", " c None", ". c #33475B", "+ c #838385", "@ c #125398", "# c #024388", "$ c #B3B3B5", "% c #7E7F80", "& c #334E69", "* c #80C1FF", "= c #07488D", "- c #717B78", "; c #8F9091", "> c #BFC0C1", ", c #0D51A0", "' c #0B509E", ") c #274DA1", "! c #8DB3FF", "~ c #79B1FE", "{ c #0A418E", "] c #AFAFB8", "^ c #969798", "/ c #777879", "( c #1257A5", "_ c #74B9FF", ": c #8EB3FF", "< c #789EF2", "[ c #649BE8", "} c #0E4592", "| c #3C3E3F", "1 c #2B2C2C", "2 c #144F9C", "3 c #4983D1", "4 c #4C80D6", "5 c #4E82D8", "6 c #3C8AD3", "7 c #025099", "8 c #3F3E3E", "9 c #2C2C2C", "0 c #084390", "a c #13479D", "b c #3064BA", "c c #2473BC", "d c #004E97", "e c #ADB0B2", "f c #989797", "g c #797878", "h c #2C435D", "i c #2261A1", "j c #064585", "k c #718381", "l c #919090", "m c #C1C0C0", "n c #0E4D8D", "o c #044383", "p c #B5B3B3", "q c #807F7F", "r c #3B4459", "s c #838282", " ", " . + ", " @# $% ", " &*= - ;> ", " ,')!~{ ]^ / ", " (_:<[} | 1 ", " 234567 8 9 ", " 00abcd ef g ", " hij k lm ", " no pq ", " r s ", " "}; Index: Makefile.am =================================================================== RCS file: /cvsroot/ap-python/python/examples/aptk/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.am 16 Jul 2002 17:11:32 -0000 1.3 --- Makefile.am 18 Jul 2002 09:16:02 -0000 1.4 *************** *** 1,3 **** EXTRA_DIST = c_pan.xpm f_play.xpm gtkplayer.py l_pan.xpm mute.xpm next.xpm\ pause.xpm play.xpm prev.xpm r_pan.xpm r_play.xpm stop.xpm panel.py\ ! play-sm.xpm stop-sm.xpm prev-sm.xpm next-sm.xpm playlist.py --- 1,3 ---- EXTRA_DIST = c_pan.xpm f_play.xpm gtkplayer.py l_pan.xpm mute.xpm next.xpm\ pause.xpm play.xpm prev.xpm r_pan.xpm r_play.xpm stop.xpm panel.py\ ! play-sm.xpm stop-sm.xpm prev-sm.xpm next-sm.xpm playlist.py current_play.xpm Index: playlist.py =================================================================== RCS file: /cvsroot/ap-python/python/examples/aptk/playlist.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** playlist.py 16 Jul 2002 17:11:33 -0000 1.1 --- playlist.py 18 Jul 2002 09:16:02 -0000 1.2 *************** *** 34,38 **** ! win = aptk.playlist.PlaylistWindow (pl) win.connect ("delete_event", delete_event) win.show () --- 34,38 ---- ! win = aptk.playlist.PlaylistWindow (pl, "current_play.xpm") win.connect ("delete_event", delete_event) win.show () |