[billreminder: 4/10] MainDialog class extends GObject and emits some signals
- From: Og B. Maciel <ogmaciel src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [billreminder: 4/10] MainDialog class extends GObject and emits some signals
- Date: Fri, 17 Jun 2011 04:10:53 +0000 (UTC)
commit 02935d889655c1fcc2972788efd486c4381361ef
Author: Luiz Armesto <luiz armesto gmail com>
Date: Thu Jun 16 20:59:25 2011 -0300
MainDialog class extends GObject and emits some signals
src/gui/maindialog.py | 19 +++++++++++++++++--
1 files changed, 17 insertions(+), 2 deletions(-)
---
diff --git a/src/gui/maindialog.py b/src/gui/maindialog.py
index bce26bf..87ecfee 100644
--- a/src/gui/maindialog.py
+++ b/src/gui/maindialog.py
@@ -9,7 +9,7 @@ pygtk.require('2.0')
import gtk
import time
import datetime
-from gobject import timeout_add
+import gobject
# Import widgets modules
from gui.widgets.statusbar import Statusbar
@@ -39,11 +39,22 @@ from lib.common import CFG_NAME
from lib.common import USER_CFG_PATH, DEFAULT_CFG_PATH
from os.path import exists, join
-class MainDialog:
+class MainDialog(gobject.GObject):
search_text = ""
_bullet_cache = {}
+ __gsignals__ = {
+ 'bill-added': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE,
+ (gobject.TYPE_PYOBJECT,)),
+ 'bill-updated': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE,
+ (gobject.TYPE_PYOBJECT,)),
+ 'bill-removed': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE,
+ (gobject.TYPE_PYOBJECT,))
+ }
+
def __init__(self):
+ gobject.GObject.__init__(self)
+
if exists(join(USER_CFG_PATH, CFG_NAME)):
from lib.migrate_to_gconf import migrate
migrate(join(USER_CFG_PATH, CFG_NAME))
@@ -310,6 +321,7 @@ class MainDialog:
for rec in records:
# Edit bill to database
rec = self.actions.edit(rec)
+ self.emit('bill-updated', rec)
# Reload records tree (something changed)
self.reloadTreeView()
@@ -318,6 +330,7 @@ class MainDialog:
def remove_bill(self):
self.actions.delete(self.currentrecord)
self.list.remove()
+ self.emit('bill-removed', None)
self.update_statusbar()
self.reloadTreeView()
self.reloadTimeline()
@@ -331,6 +344,8 @@ class MainDialog:
# Edit bill in the database
transaction = self.actions.add(record)
+ self.emit('bill-updated', record)
+
# Update our current copy
self.currentrecord = self.actions.get_bills(id = self.currentrecord.id)[0]
# Update timeline widget to reflect change
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]