44d92f3fc5494ef01463cba273d8716aaa04dfb2
[jamaendo] / jamaui / radios.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 try:
26     import hildon
27 except:
28     import helldon as hildon
29 import jamaendo
30 from playerwindow import open_playerwindow
31 from albumlist import RadioList
32
33 class RadiosWindow(hildon.StackableWindow):
34     def __init__(self):
35         hildon.StackableWindow.__init__(self)
36         self.set_title("Radios")
37
38         # Results list
39         self.panarea = hildon.PannableArea()
40         self.radiolist = RadioList()
41         self.radiolist.connect('row-activated', self.row_activated)
42
43         self.panarea.add(self.radiolist)
44
45         self.radios = {}
46         hildon.hildon_gtk_window_set_progress_indicator(self, 1)
47         radios = jamaendo.starred_radios()
48         for item in radios:
49             self.radios[item.ID] = item
50         self.radiolist.add_radios(radios)
51         hildon.hildon_gtk_window_set_progress_indicator(self, 0)
52
53         self.add(self.panarea)
54
55     def make_button(self, text, subtext, callback):
56         button = hildon.Button(gtk.HILDON_SIZE_FINGER_HEIGHT,
57                                hildon.BUTTON_ARRANGEMENT_VERTICAL)
58         button.set_text(text, subtext)
59
60         if callback:
61             button.connect('clicked', callback)
62
63         return button
64
65     def row_activated(self, treeview, path, view_column):
66         name, _id = self.radiolist.get_radio_id(path)
67         wnd = open_playerwindow()
68         wnd.play_radio(name, _id)