Changeset 245
- Timestamp:
- 05/29/06 11:59:57 (2 years ago)
- Files:
-
- trunk/Makefile.in (modified) (1 diff)
- trunk/po/Makefile.in (modified) (1 diff)
- trunk/src/mesk_gui.glade (modified) (1 diff)
- trunk/src/playlist_control.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Makefile.in
r240 r245 122 122 -rm tags 123 123 -rm ./etc/mesk.desktop 124 ${MAKE} -C po maintainer-clean125 124 126 125 WIKI_README=http://trac.nicfit.net/wiki/Installation?format=txt trunk/po/Makefile.in
r231 r245 64 64 distclean: clean 65 65 -rm Makefile 66 maintainer-clean: distclean67 66 68 67 .PHONY: check check-% clean distclean maintainer-clean trunk/src/mesk_gui.glade
r242 r245 541 541 <property name="hover_expand">False</property> 542 542 <signal name="row_activated" handler="_on_playlist_view_row_activated" last_modification_time="Mon, 20 Feb 2006 02:10:11 GMT"/> 543 <signal name="button_press_event" handler="_on_playlist_view_button_press_event" last_modification_time="Mon, 29 May 2006 16:08:33 GMT"/> 544 <signal name="key_press_event" handler="_on_playlist_view_key_press_event" last_modification_time="Mon, 29 May 2006 17:49:33 GMT"/> 543 545 </widget> 544 546 </child> trunk/src/playlist_control.py
r225 r245 82 82 # Although this seems nice it prevents of DnD operations 83 83 self._pl_view.set_reorderable(False) 84 # A search UI is provided, so disable the native handler 85 self._pl_view.set_enable_search(False) 84 86 # Allow multi-select 85 87 self._pl_view.get_selection().set_mode(gtk.SELECTION_MULTIPLE) … … 243 245 self._audio_control.play() 244 246 247 def _on_playlist_view_button_press_event(self, treeview, event): 248 if event.button == 3: 249 # Intercept right clicks for context menu 250 # TODO 251 return True 252 else: 253 return False 254 245 255 def _on_audio_playing(self, audio_control): 246 256 if self._is_active: … … 436 446 '[%d]' % count) 437 447 count += 1 448 449 def _on_playlist_view_key_press_event(self, widget, event): 450 # This handler is for key press events on just the treeview, 451 # whereas the normal handler is on the container 452 return self._on_playlist_control_key_press_event(widget, event) 438 453 439 454 def _on_playlist_control_key_press_event(self, widget, event):
