55 lines
2.1 KiB
Python
55 lines
2.1 KiB
Python
import gi
|
|
import os
|
|
|
|
gi.require_version('Gtk', '3.0')
|
|
from gi.repository import Gtk
|
|
|
|
from cv_engine import engine, util
|
|
|
|
from cv_gtk3.main_window import MainWindowFunctions
|
|
from cv_gtk3.setting import GUISettings
|
|
from cv_gtk3.signal_handlers import handlers
|
|
from cv_gtk3.gtk_util import GTKUtilities
|
|
|
|
|
|
class CardvaultGTK(MainWindowFunctions):
|
|
""" Main UI class for the GTK interface """
|
|
def __init__(self):
|
|
# Start engine (without config file)
|
|
self.engine = engine.CardvaultEngine()
|
|
# Set Glade file location
|
|
GUISettings.glade_file_path = os.path.join(os.path.dirname(__file__), 'gui')
|
|
# Load Glade files
|
|
glade_files = ['mainwindow.glade', 'search.glade', 'overlays.glade']
|
|
self.ui = Gtk.Builder()
|
|
for file in glade_files:
|
|
self.ui.add_from_file(os.path.join(GUISettings.glade_file_path, file))
|
|
# Set pages for the ui to use
|
|
GUISettings.pages = {
|
|
"search": self.ui.get_object("searchView"),
|
|
}
|
|
# Verify that cache directories exist
|
|
if not os.path.isdir(util.EngineConfig.cache_path):
|
|
os.mkdir(util.EngineConfig.cache_path)
|
|
if not os.path.isdir(util.EngineConfig.icon_cache_path):
|
|
os.mkdir(util.EngineConfig.icon_cache_path)
|
|
# Load single mana icons
|
|
GTKUtilities.mana_icons = GTKUtilities.load_icon_cache(os.path.join(os.path.dirname(__file__), 'resources',
|
|
'mana'))
|
|
# Load the the pre constructed icon cache
|
|
GTKUtilities.precon_icon_cache = GTKUtilities.load_icon_cache(util.EngineConfig.icon_cache_path)
|
|
# Call constructor of superclasses
|
|
MainWindowFunctions.__init__(self, self.ui)
|
|
# Create Signal handlers and connect them to the UI
|
|
self.handlers = handlers.Handlers(self)
|
|
self.ui.connect_signals(self.handlers)
|
|
# Initialize starting view
|
|
self.ui.get_object('mainWindow').show_all()
|
|
self.hide_initial_widgets()
|
|
self.switch_page('search')
|
|
|
|
if __name__ == '__main__':
|
|
CardvaultGTK()
|
|
Gtk.main()
|
|
|