Added simple online card search

This commit is contained in:
luxick
2017-02-13 20:04:48 +01:00
parent c974678df0
commit 6e7707a0e7
3 changed files with 30 additions and 10 deletions

3
gui.py
View File

@@ -24,9 +24,10 @@ class MainWindow(Gtk.Window):
self.deckView = Gtk.Box()
self.deckView.add(Gtk.Label("View and organize your Decklists!"))
self.notebook.append_page(self.searchView, Gtk.Label("Search"))
self.notebook.append_page(self.collectionView, Gtk.Label("Collection"))
self.notebook.append_page(self.deckView, Gtk.Label("Decks"))
self.notebook.append_page(self.searchView, Gtk.Label("Search"))
win = MainWindow()