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

* New version using pygtkmvc framework.

This commit is contained in:
2007-05-01 19:30:22 +00:00
parent 45859e1a3d
commit f695f82c1f
30 changed files with 2232 additions and 0 deletions

18
mvc/src/models/m_main.py Normal file
View File

@@ -0,0 +1,18 @@
# This Python file uses the following encoding: utf-8
import utils._importer
import utils.globals
from gtkmvc import Model
class MainModel(Model):
"""Our model contains a numeric counter and a numeric value that
holds the value that the counter must be assigned to when we the
model is reset"""
__properties__ = {}
def __init__(self):
Model.__init__(self)
return
pass # end of class