made it a bit easier to have different guis (fremantle or diablo)
authorRyan Campbell <ryan.campbell@ualberta.ca>
Thu, 15 Apr 2010 19:59:12 +0000 (13:59 -0600)
committerRyan Campbell <ryan.campbell@ualberta.ca>
Thu, 15 Apr 2010 19:59:12 +0000 (13:59 -0600)
mevemon.py
ui.py [deleted file]

index 71cc6f6..e1b51f4 100644 (file)
@@ -1,7 +1,7 @@
 import hildon
 import gtk
 
-import ui
+from ui.fremantle import ui
 
 class mEveMon():
     def __init__(self):
diff --git a/ui.py b/ui.py
deleted file mode 100644 (file)
index 5df771c..0000000
--- a/ui.py
+++ /dev/null
@@ -1,114 +0,0 @@
-
-# Based on C code from:
-# "Hildon Tutorial" version 2009-04-28
-# Example 3.1, "Example of a Hildon application menu"
-
-import sys
-
-import gtk
-import hildon
-
-class mEveMonUI():
-
-    about_name = 'mEveMon'
-    about_text = ('Mobile character monitor for EVE Online')
-    about_authors = ['Ryan Campbell']
-    about_website = 'http://example.site.org'
-    app_version = '0.1'
-
-    menu_items = ("Settings", "About", "Refresh")
-
-    def __init__(self, controller):
-       self.controller = controller
-   
-        gtk.set_application_name("mEveMon")
-    
-        #create the main window
-        win = hildon.StackableWindow()
-        win.connect("destroy", self.controller.quit)
-
-        # Create menu
-        menu = self.create_menu(win)
-        # Attach menu to the window
-        win.set_app_menu(menu)
-
-        pannable_area = hildon.PannableArea()
-        table = self.create_table(win)
-
-        pannable_area.add_with_viewport(table)
-       
-        win.add(pannable_area);
-       
-        win.show_all()
-  
-    def settings_clicked(self, button, window):
-   
-        dialog = gtk.Dialog()
-   
-        dialog.set_transient_for(window)
-        dialog.set_title("Settings")
-        dialog.show_all()
-        dialog.run()
-        dialog.destroy()
-
-
-    def about_clicked(self, button):
-    
-        dialog = gtk.AboutDialog()
-        dialog.set_website(self.about_website)
-        dialog.set_website_label(self.about_website)
-        dialog.set_name(self.about_name)
-        dialog.set_authors(self.about_authors)
-        dialog.set_comments(self.about_text)
-        dialog.set_version(self.app_version)
-        dialog.run()
-        dialog.destroy()
-
-    def refresh_clicked(self, button, window):
-        pass
-  
-
-    def create_menu(self, window):
-    
-        menu = hildon.AppMenu()
-
-        for command in self.menu_items:
-            # Create menu entries
-            button = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
-            button.set_label(command)
-
-           if command == "About":
-                   button.connect("clicked", self.about_clicked)
-            elif command == "Settings":
-                button.connect("clicked", self.settings_clicked, window)
-           elif command == "Refresh":
-               button.connect("clicked", self.refresh_clicked, window)
-           else:
-               assert False, command
-
-            # Add entry to the view menu
-            menu.append(button)
-        
-        menu.show_all()
-
-        return menu
-
-    def create_table(self, window):
-    
-        # create a table of 10 by 10 squares. 
-        table = gtk.Table (1, 10, False)
-        table.show()
-
-        # this simply creates a grid of toggle buttons on the table
-        # to demonstrate the scrolled window. 
-        for i in range(10):
-            data_buffer = "button %d\n" % i
-            button = gtk.ToggleButton(data_buffer)
-            table.attach(button, 0, 1 , i, i+1)
-
-        return table
-
-
-if __name__ == "__main__":
-    main()
-