Added Hildon presentations for Main and Filessearch
authorEugene Gagarin <mosfet07@ya.ru>
Wed, 29 Apr 2009 07:03:33 +0000 (11:03 +0400)
committerEugene Gagarin <mosfet07@ya.ru>
Wed, 29 Apr 2009 07:03:33 +0000 (11:03 +0400)
src/files/search.py
src/main.py

index ff4ff83..a7f38e3 100755 (executable)
@@ -217,3 +217,16 @@ class Gtk_Presentation(object):
         self.vbox.add(out_toplevel)
         out_toplevel.show_all()
 #        out_submodule.Gtk_Presentation().show_results(results)
+
+#==============================================================================
+
+class Hildon_Presentation(object):
+
+    def __init__(self, config, start_func):
+        import gtk
+        import hildon
+
+        self.config = config
+
+    def start_search(self, start_func):
+        pass
index 16ba666..f36701a 100755 (executable)
@@ -132,5 +132,16 @@ class Gtk_Presentation(object):
 
 #==============================================================================
 
+class Hildon_Presentation(object):
+    """Main window class."""
+
+    def __init__(self, config):
+        import gtk
+        import hildon
+
+        self.config = config
+
+#==============================================================================
+
 if __name__ == '__main__':
     Control()