Add UI for card search view

This commit is contained in:
luxick
2017-02-06 18:14:18 +01:00
parent 45a81910d8
commit c974678df0
2 changed files with 67 additions and 1 deletions

3
gui.py
View File

@@ -1,5 +1,6 @@
import gi
import collection
import search
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
@@ -18,7 +19,7 @@ class MainWindow(Gtk.Window):
self.collectionView.add(collection.CollectionView())
self.searchView = Gtk.Box()
self.searchView.add(Gtk.Label("Search the whole Magic Card Library!"))
self.searchView.add(search.SearchView())
self.deckView = Gtk.Box()
self.deckView.add(Gtk.Label("View and organize your Decklists!"))