2003-03-08 05:49:32 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-02-01 06:04:36 +05:30
|
|
|
# Copyright (C) 2003-2004 Donald N. Allingham
|
2003-03-08 05:49:32 +05:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2003-11-13 00:15:07 +05:30
|
|
|
# $Id$
|
|
|
|
|
2003-03-08 05:49:32 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/Gnome modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gobject
|
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
|
|
|
import Utils
|
|
|
|
import RelLib
|
|
|
|
import ListModel
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2003-03-08 05:49:32 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# WitnessTab
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class WitnessTab:
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
def __init__(self,srclist,parent,top,window,clist,add_btn,edit_btn,del_btn):
|
2003-03-08 05:49:32 +05:30
|
|
|
self.db = parent.db
|
|
|
|
self.parent = parent
|
|
|
|
self.list = srclist
|
|
|
|
self.top = top
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
self.window = window
|
2003-03-08 05:49:32 +05:30
|
|
|
self.slist = clist
|
|
|
|
self.selection = clist.get_selection()
|
|
|
|
titles = [ (_('Witness'),0,300),(_('ID'),1,100)]
|
|
|
|
self.model = ListModel.ListModel(clist,titles,event_func=self.edit_clicked);
|
|
|
|
|
|
|
|
add_btn.connect('clicked', self.add_clicked)
|
|
|
|
edit_btn.connect('clicked', self.edit_clicked)
|
|
|
|
del_btn.connect('clicked', self.del_clicked)
|
|
|
|
|
|
|
|
self.redraw()
|
|
|
|
|
|
|
|
def redraw(self):
|
|
|
|
self.model.clear()
|
|
|
|
for s in self.list:
|
|
|
|
if s.get_type() == RelLib.Event.ID:
|
|
|
|
id = s.get_value()
|
|
|
|
if self.db.getPersonMap().has_key(id):
|
|
|
|
n = self.db.getPerson(id).getPrimaryName().getName()
|
|
|
|
else:
|
|
|
|
n = _('Unknown')
|
|
|
|
self.model.add([n,s.get_value()],s)
|
|
|
|
else:
|
|
|
|
self.model.add([s.get_value(),''],s)
|
2003-11-13 00:15:07 +05:30
|
|
|
if self.list:
|
|
|
|
Utils.bold_label(self.parent.witnesses_label)
|
|
|
|
else:
|
|
|
|
Utils.unbold_label(self.parent.witnesses_label)
|
2003-03-08 05:49:32 +05:30
|
|
|
|
|
|
|
def update_clist(self):
|
|
|
|
self.redraw()
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
|
|
|
def edit_clicked(self,obj):
|
|
|
|
store,iter = self.selection.get_selected()
|
|
|
|
if iter:
|
|
|
|
objs = self.model.get_selected_objects()
|
|
|
|
src = objs[0]
|
|
|
|
WitnessEditor(src,self.db,self.update_clist,self)
|
|
|
|
|
|
|
|
def add_clicked(self,obj):
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
WitnessEditor(None,self.db,self.update_clist,self,self.window)
|
2003-03-08 05:49:32 +05:30
|
|
|
|
|
|
|
def add_ref(self,inst,ref):
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
inst.list.append(ref)
|
|
|
|
inst.redraw()
|
|
|
|
|
|
|
|
def del_clicked(self,obj):
|
|
|
|
(store,iter) = self.selection.get_selected()
|
|
|
|
if iter:
|
|
|
|
path = store.get_path(iter)
|
|
|
|
del self.list[path[0]]
|
|
|
|
self.redraw()
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# WitnessEditor
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class WitnessEditor:
|
|
|
|
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
def __init__(self,ref,database,update=None,parent=None,parent_window=None):
|
2003-03-08 05:49:32 +05:30
|
|
|
|
|
|
|
self.db = database
|
|
|
|
self.parent = parent
|
|
|
|
self.update = update
|
|
|
|
self.ref = ref
|
2003-08-17 07:44:33 +05:30
|
|
|
self.show_witness = gtk.glade.XML(const.dialogFile, "witness_edit","gramps")
|
2003-03-08 05:49:32 +05:30
|
|
|
self.show_witness.signal_autoconnect({
|
|
|
|
"on_toggled" : self.on_toggled,
|
|
|
|
})
|
2003-03-20 05:39:22 +05:30
|
|
|
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
self.window = self.show_witness.get_widget('witness_edit')
|
2003-03-08 05:49:32 +05:30
|
|
|
self.name = self.show_witness.get_widget("name")
|
2003-07-03 10:25:16 +05:30
|
|
|
self.select = self.show_witness.get_widget("select")
|
|
|
|
self.select.connect('clicked',self.choose)
|
2003-03-08 05:49:32 +05:30
|
|
|
self.ok = self.show_witness.get_widget("ok")
|
|
|
|
self.in_db = self.show_witness.get_widget("in_db")
|
|
|
|
self.comment = self.show_witness.get_widget("comment")
|
2003-03-20 05:39:22 +05:30
|
|
|
|
2003-03-08 05:49:32 +05:30
|
|
|
if self.ref:
|
2003-03-20 05:39:22 +05:30
|
|
|
if self.ref.get_type():
|
|
|
|
self.in_db.set_active(1)
|
2003-07-03 10:25:16 +05:30
|
|
|
self.idval = self.ref.get_value()
|
|
|
|
person = self.db.getPerson(self.idval)
|
|
|
|
self.name.set_text(person.getPrimaryName().getRegularName())
|
2003-03-20 05:39:22 +05:30
|
|
|
else:
|
|
|
|
self.name.set_text(self.ref.get_value())
|
|
|
|
self.in_db.set_active(0)
|
2003-03-08 05:49:32 +05:30
|
|
|
self.comment.get_buffer().set_text(self.ref.get_comment())
|
|
|
|
|
2003-03-20 05:39:22 +05:30
|
|
|
self.on_toggled(None)
|
2003-03-08 05:49:32 +05:30
|
|
|
Utils.set_titles(self.show_witness.get_widget('witness_edit'),
|
|
|
|
self.show_witness.get_widget('title'),
|
|
|
|
_('Witness Editor'))
|
|
|
|
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
if parent_window:
|
|
|
|
self.window.set_transient_for(parent_window)
|
|
|
|
val = self.window.run()
|
|
|
|
if val == gtk.RESPONSE_OK:
|
|
|
|
self.ok_clicked()
|
|
|
|
self.window.destroy()
|
|
|
|
|
2003-07-03 10:25:16 +05:30
|
|
|
def choose(self,obj):
|
|
|
|
import SelectPerson
|
2004-02-01 06:04:36 +05:30
|
|
|
sel_person = SelectPerson.SelectPerson(self.db,_('Select Person'),parent_window=self.window)
|
2003-07-03 10:25:16 +05:30
|
|
|
new_person = sel_person.run()
|
|
|
|
if new_person:
|
|
|
|
self.new_person = new_person
|
|
|
|
self.idval = new_person.getId()
|
|
|
|
new_name = new_person.getPrimaryName().getRegularName()
|
|
|
|
if new_name:
|
|
|
|
self.name.set_text(new_name)
|
2003-03-08 05:49:32 +05:30
|
|
|
|
|
|
|
def on_toggled(self,obj):
|
|
|
|
if self.in_db.get_active():
|
|
|
|
self.name.set_editable(0)
|
2003-03-20 05:39:22 +05:30
|
|
|
self.name.set_sensitive(0)
|
2003-07-03 10:25:16 +05:30
|
|
|
self.select.set_sensitive(1)
|
2003-03-08 05:49:32 +05:30
|
|
|
else:
|
|
|
|
self.name.set_editable(1)
|
2003-03-20 05:39:22 +05:30
|
|
|
self.name.set_sensitive(1)
|
2003-07-03 10:25:16 +05:30
|
|
|
self.select.set_sensitive(0)
|
2003-03-08 05:49:32 +05:30
|
|
|
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
def ok_clicked(self):
|
2003-03-08 05:49:32 +05:30
|
|
|
if not self.ref:
|
|
|
|
if self.in_db.get_active():
|
|
|
|
self.ref = RelLib.Witness(RelLib.Event.ID)
|
|
|
|
else:
|
|
|
|
self.ref = RelLib.Witness(RelLib.Event.NAME)
|
|
|
|
self.parent.list.append(self.ref)
|
|
|
|
|
|
|
|
if self.in_db.get_active():
|
2003-07-03 10:25:16 +05:30
|
|
|
self.ref.set_value(self.idval)
|
2003-03-08 05:49:32 +05:30
|
|
|
else:
|
2003-12-17 10:53:16 +05:30
|
|
|
self.ref.set_value(unicode(self.name.get_text()))
|
2003-03-08 05:49:32 +05:30
|
|
|
|
|
|
|
c = self.comment.get_buffer()
|
2003-12-17 21:36:36 +05:30
|
|
|
self.ref.set_comment(unicode(c.get_text(c.get_start_iter(),c.get_end_iter(),gtk.FALSE)))
|
2003-03-08 05:49:32 +05:30
|
|
|
if self.update:
|
|
|
|
self.update()
|