Add card view to search page.

This commit is contained in:
luxick
2018-02-17 17:22:02 +01:00
parent f1485db748
commit d61f48fa27
10 changed files with 292 additions and 56 deletions

View File

@@ -1,10 +1,14 @@
class Handlers:
"""
Class containing all signal handlers for the GTK GUI
"""
from cv_gtk3.signal_handlers.menu_bar import MenuBarHandlers
from cv_gtk3.signal_handlers.search import SearchPageHandlers
class Handlers(MenuBarHandlers, SearchPageHandlers):
""" Class containing all signal handlers for the GTK GUI """
def __init__(self, app):
"""
Initialize handler class
""" Initialize handler class
:param app: reference to an CardvaultGTK object
"""
self.app = app
# Call constructors of superclasses
MenuBarHandlers.__init__(self, self.app)
SearchPageHandlers.__init__(self, self.app)