Fixing issues of leaking window
[watersofshiloah] / src / mormonchannel_gtk.py
index 68da221..d86f226 100755 (executable)
@@ -2,8 +2,19 @@
 # -*- coding: utf-8 -*-
 
 """
-@todo Reverse order option.  Toggle between playing ascending/descending chronological order
+@todo Restructure so there is a windows/ folder with a file per source
+@todo Add additional sources
+@todo Switch home icon color
+@todo Switch from swappping icons on press to the pressed version of icons
+@bug Fix presenter display
 @todo Track recent
+@todo Favorites
+@todo Sequential playback
+@todo Enable Call Monitor
+@todo Audio seek bar
+@todo Persisted Pause
+@todo Reverse order option.  Toggle between playing ascending/descending chronological order
+@todo Podcast integration
 """
 
 from __future__ import with_statement
@@ -26,7 +37,7 @@ import util.misc as misc_utils
 
 import imagestore
 import player
-import index
+import stream_index
 import windows
 
 
@@ -39,8 +50,8 @@ class MormonChannelProgram(hildonize.get_app_class()):
        def __init__(self):
                super(MormonChannelProgram, self).__init__()
                self._store = imagestore.ImageStore("../data", "../data")
-               self._index = index.AudioIndex()
-               self._player = player.Player()
+               self._index = stream_index.AudioIndex()
+               self._player = player.Player(self._index)
 
                self._index.start()
                try: