Background loading, initially implemented for search window
[jamaendo] / jamaui / ui.py
index be4da53..100be8d 100644 (file)
@@ -1,3 +1,30 @@
+#!/usr/bin/env python
+#
+# This file is part of Jamaendo.
+# Copyright (c) 2010 Kristoffer Gronlund
+#
+# Jamaendo is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# Jamaendo is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Jamaendo.  If not, see <http://www.gnu.org/licenses/>.
+#
+# Player code heavily based on http://thpinfo.com/2008/panucci/:
+#  A resuming media player for Podcasts and Audiobooks
+#  Copyright (c) 2008-05-26 Thomas Perl <thpinfo.com>
+#  (based on http://pygstdocs.berlios.de/pygst-tutorial/seeking.html)
+#
+# Jamaendo jamendo.com API wrapper licensed under the New BSD License;
+# see module for details.
+#
+
 import os, sys
 import gtk
 import gobject
@@ -11,7 +38,7 @@ gobject.threads_init()
 
 log = logging.getLogger(__name__)
 
-VERSION = '1'
+VERSION = '0.2'
 
 try:
     import hildon
@@ -20,8 +47,8 @@ except:
         log.critical('Using GTK widgets, install "python2.5-hildon" '
             'for this to work properly.')
     else:
-        log.critical('This ui only works in maemo')
-        sys.exit(1)
+        log.critical('This ui (probably) only works in maemo')
+        import helldon as hildon
 
 from dbus.mainloop.glib import DBusGMainLoop
 
@@ -29,21 +56,14 @@ DBusGMainLoop(set_as_default=True)
 
 import jamaendo
 
+from postoffice import postoffice
 from playerwindow import open_playerwindow
 from search import SearchWindow
 from featured import FeaturedWindow
 from radios import RadiosWindow
 from favorites import FavoritesWindow
-
-class PlaylistsWindow(hildon.StackableWindow):
-    def __init__(self):
-        hildon.StackableWindow.__init__(self)
-        self.set_title("Playlists")
-
-        label = gtk.Label("Playlists")
-        vbox = gtk.VBox(False, 0)
-        vbox.pack_start(label, True, True, 0)
-        self.add(vbox)
+from playlists import PlaylistsWindow
+from listbox import ButtonListDialog
 
 class Jamaui(object):
     def __init__(self):
@@ -52,11 +72,13 @@ class Jamaui(object):
         self.window = None
 
     def create_window(self):
+        log.debug("Creating main window...")
         self.app = hildon.Program()
         self.window = hildon.StackableWindow()
         self.app.add_window(self.window)
 
         self.window.set_title("jamaendo")
+
         self.window.connect("destroy", self.destroy)
 
         self.CONFDIR = os.path.expanduser('~/MyDocs/.jamaendo')
@@ -64,17 +86,13 @@ class Jamaui(object):
         settings.set_filename(os.path.join(self.CONFDIR, 'ui_settings'))
         settings.load()
 
-    def save_settings(self):
-        settings.save()
+        postoffice.connect('request-album-cover', self, self.on_request_cover)
+        postoffice.connect('request-images', self, self.on_request_images)
+        log.debug("Created main window.")
 
     def create_menu(self):
         self.menu = hildon.AppMenu()
 
-        #search = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
-        #search.set_label("Search")
-        #search.connect("clicked", self.on_search)
-        #self.menu.append(search)
-
         player = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
         player.set_label("Open player")
         player.connect("clicked", self.on_player)
@@ -85,23 +103,16 @@ class Jamaui(object):
         player.connect("clicked", self.on_favorites)
         self.menu.append(player)
 
-        #player = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
-        #player.set_label("Playlists")
-        #player.connect("clicked", self.on_playlists)
-        #self.menu.append(player)
+        player = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
+        player.set_label("Playlists")
+        player.connect("clicked", self.on_playlists)
+        self.menu.append(player)
 
         player = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
         player.set_label("Settings")
         player.connect("clicked", self.on_settings)
         self.menu.append(player)
 
-
-        # Don't use localdb ATM
-        #refresh = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
-        #refresh.set_label("Refresh")
-        #refresh.connect("clicked", self.on_refresh)
-        #self.menu.append(refresh)
-
         menu_about = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
         menu_about.set_label("About")
         menu_about.connect("clicked", self.show_about, self.window)
@@ -120,7 +131,7 @@ class Jamaui(object):
             self.window.window.set_back_pixmap(background, False)
 
         bbox = gtk.HButtonBox()
-        alignment = gtk.Alignment(xalign=0.2, yalign=0.925, xscale=1.0)
+        alignment = gtk.Alignment(xalign=0.2, yalign=0.4, xscale=1.0)
         alignment.add(bbox)
         bbox.set_property('layout-style', gtk.BUTTONBOX_SPREAD)
         self.bbox = bbox
@@ -140,29 +151,64 @@ class Jamaui(object):
         btn.connect('clicked', callback)
         self.bbox.add(btn)
 
-    #def add_featured_button(self):
-    #    self.featured_sel = hildon.TouchSelector(text=True)
-    #    self.featured_sel.append_text("Albums of the week")
-    #    self.featured_sel.append_text("Tracks of the week")
-    #    self.featured_sel.append_text("New releases")
-    #    btn = hildon.PickerButton(gtk.HILDON_SIZE_THUMB_HEIGHT,
-    #                              hildon.BUTTON_ARRANGEMENT_VERTICAL)
-    #    btn.set_text("Featured", "Most listened to")
-    #    btn.set_property('width-request', 225)
-    #    btn.set_selector(self.featured_sel)
-    #    self.featured_btn = btn
-    #    self.bbox.add(btn)
+    def on_request_cover(self, albumid, size):
+        jamaendo.get_album_cover_async(self.got_album_cover, int(albumid), size)
+
+    def on_request_images(self, urls):
+        jamaendo.get_images_async(self.got_images, urls)
+
+    def got_album_cover(self, albumid, size, cover):
+        gtk.gdk.threads_enter()
+        postoffice.notify('album-cover', albumid, size, cover)
+        gtk.gdk.threads_leave()
+
+    def got_images(self, images):
+        gtk.gdk.threads_enter()
+        postoffice.notify('images', images)
+        gtk.gdk.threads_leave()
 
     def destroy(self, widget):
+        postoffice.disconnect(['request-album-cover', 'request-images'], self)
+        settings.save()
+        from player import the_player
+        if the_player:
+            the_player.stop()
         gtk.main_quit()
 
     def show_about(self, w, win):
         dialog = gtk.AboutDialog()
         dialog.set_program_name("jamaendo")
-        dialog.set_website("http://github.com/krig")
-        dialog.set_website_label("http://github.com/krig")
+        dialog.set_website("http://jamaendo.garage.maemo.org/")
+        dialog.set_website_label("http://jamaendo.garage.maemo.org/")
         dialog.set_version(VERSION)
-        dialog.set_authors(("Kristoffer Gronlund <kristoffer.gronlund@purplescout.se>",))
+        dialog.set_license("""Copyright (c) 2010, Kristoffer Gronlund
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+     * Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+     * Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in the
+       documentation and/or other materials provided with the distribution.
+     * Neither the name of Jamaendo nor the
+       names of its contributors may be used to endorse or promote products
+       derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+""")
+        dialog.set_authors(("Kristoffer Gronlund <kristoffer.gronlund@purplescout.se>",
+                            "Based on Panucci, written by Thomas Perl <thpinfo.com>",
+                            "Icons by Joseph Wain <http://glyphish.com/>"))
         dialog.set_comments("""Jamaendo plays music from the music catalog of JAMENDO.
 
 JAMENDO is an online platform that distributes musical works under Creative Commons licenses.""")
@@ -178,28 +224,19 @@ JAMENDO is an online platform that distributes musical works under Creative Comm
         dialog.destroy()
 
     def open_link(self, d, url, data):
-        print "url: %s" % (url)
         import webbrowser
         webbrowser.open_new(url)
 
-
-    #def on_refresh(self, button):
-    #    dialog = RefreshDialog()
-    #    dialog.show_all()
-    #    dialog.run()
-    #    dialog.hide()
-
     def on_featured(self, button):
-        dialog = hildon.PickerDialog(self.window)
-        sel = hildon.TouchSelector(text=True)
-        for feature, _ in FeaturedWindow.features:
-            sel.append_text(feature)
-        dialog.set_selector(sel)
-        dialog.set_title("Featured")
-        if dialog.run() == gtk.RESPONSE_OK:
-            txt = sel.get_current_text()
-            self.featuredwnd = FeaturedWindow(txt)
+        dialog = ButtonListDialog('Featured', self.window)
+        def fn(btn, feature):
+            self.featuredwnd = FeaturedWindow(feature)
             self.featuredwnd.show_all()
+            dialog.response(gtk.RESPONSE_OK)
+        for feature, _ in FeaturedWindow.features:
+            dialog.add_button(feature, fn, feature)
+        dialog.show_all()
+        dialog.run()
         dialog.destroy()
 
     def on_radios(self, button):
@@ -219,23 +256,21 @@ JAMENDO is an online platform that distributes musical works under Creative Comm
         dialog.set_title("Settings")
         dialog.add_button( gtk.STOCK_OK, gtk.RESPONSE_OK )
         vbox = dialog.vbox
-        tbl = gtk.Table(1, 2)
-        tbl.attach(gtk.Label("Username:"), 0, 1, 0, 1)
+        hboxinner = gtk.HBox()
+        hboxinner.pack_start(gtk.Label("Username:"), False, False, 0)
         entry = hildon.Entry(gtk.HILDON_SIZE_FINGER_HEIGHT)
         entry.set_placeholder("jamendo.com username")
         if settings.user:
             entry.set_text(settings.user)
-        tbl.attach(entry, 1, 2, 0, 1)
-        vbox.pack_start(tbl, True, True, 2)
+        hboxinner.pack_start(entry, True, True, 0)
+        vbox.pack_start(hboxinner, True, True, 0)
         dialog.show_all()
         result = dialog.run()
         val = entry.get_text()
         dialog.destroy()
-        print val, result
         if val and result == gtk.RESPONSE_OK:
-            print "new user name:", val
             settings.user = val
-            self.save_settings()
+            settings.save()
 
 
     def on_favorites(self, button):
@@ -243,23 +278,7 @@ JAMENDO is an online platform that distributes musical works under Creative Comm
         self.favoriteswnd.show_all()
 
     def on_player(self, button):
-        open_playerwindow([])
-
-    '''
-    def on_search(self, button):
-        if self.searchbar:
-            self.searchbar.show()
-        else:
-            self.searchstore = gtk.ListStore(gobject.TYPE_STRING)
-            iter = self.searchstore.append()
-            self.searchstore.set(iter, 0, "Test1")
-            iter = self.searchstore.append()
-            self.searchstore.set(iter, 0, "Test2")
-            self.searchbar = hildon.FindToolbar("Search", self.searchstore, 0)
-            self.searchbar.set_active(0)
-            self.window.add_toolbar(self.searchbar)
-            self.searchbar.show()
-    '''
+        open_playerwindow()
 
     def run(self):
         ossohelper.application_init('org.jamaendo', '0.1')