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:
15
mvc/src/views/v_config.py
Normal file
15
mvc/src/views/v_config.py
Normal 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
|
||||||
Reference in New Issue
Block a user