Download links
[jamaendo] / jamaui / showartist.py
1 #!/usr/bin/env python
2 #
3 # This file is part of Jamaendo.
4 # Copyright (c) 2010 Kristoffer Gronlund
5 #
6 # Jamaendo is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # Jamaendo is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Jamaendo.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 # Player code heavily based on http://thpinfo.com/2008/panucci/:
20 #  A resuming media player for Podcasts and Audiobooks
21 #  Copyright (c) 2008-05-26 Thomas Perl <thpinfo.com>
22 #  (based on http://pygstdocs.berlios.de/pygst-tutorial/seeking.html)
23 #
24 import gtk
25 import hildon
26 import jamaendo
27 from playerwindow import open_playerwindow
28 from albumlist import AlbumList
29
30 class ShowArtist(hildon.StackableWindow):
31     def __init__(self, artist):
32         hildon.StackableWindow.__init__(self)
33         self.set_title(artist.name)
34         self.artist = artist
35
36         self.panarea = hildon.PannableArea()
37         vbox = gtk.VBox(False, 0)
38
39         self.albums = AlbumList()
40         self.albums.show_artist(False)
41         self.albums.connect('row-activated', self.row_activated)
42
43         self.panarea.add(self.albums)
44         vbox.pack_start(self.panarea, True, True, 0)
45         self.add(vbox)
46
47         for album in jamaendo.get_albums(artist.ID):
48             self.albums.add_album(album)
49
50     def row_activated(self, treeview, path, view_column):
51         _id = self.albums.get_album_id(path)
52         album = jamaendo.get_album(_id)
53         if isinstance(album, list):
54             album = album[0]
55         self.open_item(album)
56
57     def open_item(self, item):
58         if isinstance(item, jamaendo.Album):
59             from showalbum import ShowAlbum
60             wnd = ShowAlbum(item)
61             wnd.show_all()
62         elif isinstance(item, jamaendo.Artist):
63             wnd = ShowArtist(item)
64             wnd.show_all()
65         elif isinstance(item, jamaendo.Track):
66             wnd = open_playerwindow()
67             wnd.play_tracks([item])