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

* View for configuration.

This commit is contained in:
2007-05-05 20:18:52 +00:00
parent cc151f00ca
commit 871a3d9c3e

15
mvc/src/views/v_config.py Normal file
View File

@@ -0,0 +1,15 @@
# This Python file uses the following encoding: utf-8
import utils._importer
import utils.globals
from gtkmvc import View
import os.path
class ConfigView(View):
"""Preferences window from glade file """
GLADE = os.path.join(utils.globals.GLADE_DIR, "config.glade")
def __init__(self, ctrl):
View.__init__(self, ctrl, self.GLADE)
return
pass # end of class