mirror of
https://github.com/gryf/pygtktalog.git
synced 2025-12-17 11:30:19 +01:00
14 lines
301 B
Python
14 lines
301 B
Python
"""
|
|
Project: pyGTKtalog
|
|
Description: Model for main application
|
|
Type: core
|
|
Author: Roman 'gryf' Dobosz, gryf73@gmail.com
|
|
Created: 2009-05-02
|
|
"""
|
|
from gtkmvc import Model
|
|
|
|
class MainModel(Model):
|
|
status_bar_message = _("Idle")
|
|
|
|
__observables__ = ("status_bar_message",)
|