1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 19:40:21 +01:00

* Moved experimental MVC project as a current mainstream.

This commit is contained in:
2007-09-05 16:13:58 +00:00
parent c779b83259
commit 3282000e03
33 changed files with 0 additions and 0 deletions

17
src/views/v_main.py Normal file
View File

@@ -0,0 +1,17 @@
# This Python file uses the following encoding: utf-8
import utils._importer
import utils.globals
from gtkmvc import View
import os.path
class MainView(View):
"""This handles only the graphical representation of the
application. The widgets set is loaded from glade file"""
GLADE = os.path.join(utils.globals.GLADE_DIR, "main.glade")
def __init__(self, ctrl):
View.__init__(self, ctrl, self.GLADE)
return
pass # end of class