gramps/src/Witness.py
Alex Roitman 1021a5ef65 * 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 04:11:30 +00:00

190 lines
6.4 KiB
Python

#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2003 Donald N. Allingham
#
# 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
#
#-------------------------------------------------------------------------
#
# GTK/Gnome modules
#
#-------------------------------------------------------------------------
import gobject
import gtk
import gtk.glade
#-------------------------------------------------------------------------
#
# gramps modules
#
#-------------------------------------------------------------------------
import const
import Utils
import RelLib
import ListModel
from gettext import gettext as _
#-------------------------------------------------------------------------
#
# WitnessTab
#
#-------------------------------------------------------------------------
class WitnessTab:
def __init__(self,srclist,parent,top,window,clist,add_btn,edit_btn,del_btn):
self.db = parent.db
self.parent = parent
self.list = srclist
self.top = top
self.window = window
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)
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):
WitnessEditor(None,self.db,self.update_clist,self,self.window)
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:
def __init__(self,ref,database,update=None,parent=None,parent_window=None):
self.db = database
self.parent = parent
self.update = update
self.ref = ref
self.show_witness = gtk.glade.XML(const.dialogFile, "witness_edit","gramps")
self.show_witness.signal_autoconnect({
"on_toggled" : self.on_toggled,
})
self.window = self.show_witness.get_widget('witness_edit')
self.name = self.show_witness.get_widget("name")
self.select = self.show_witness.get_widget("select")
self.select.connect('clicked',self.choose)
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")
if self.ref:
if self.ref.get_type():
self.in_db.set_active(1)
self.idval = self.ref.get_value()
person = self.db.getPerson(self.idval)
self.name.set_text(person.getPrimaryName().getRegularName())
else:
self.name.set_text(self.ref.get_value())
self.in_db.set_active(0)
self.comment.get_buffer().set_text(self.ref.get_comment())
self.on_toggled(None)
Utils.set_titles(self.show_witness.get_widget('witness_edit'),
self.show_witness.get_widget('title'),
_('Witness Editor'))
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()
def choose(self,obj):
import SelectPerson
sel_person = SelectPerson.SelectPerson(self.db,'Select Person',parent_window=self.window)
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)
def on_toggled(self,obj):
if self.in_db.get_active():
self.name.set_editable(0)
self.name.set_sensitive(0)
self.select.set_sensitive(1)
else:
self.name.set_editable(1)
self.name.set_sensitive(1)
self.select.set_sensitive(0)
def ok_clicked(self):
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():
self.ref.set_value(self.idval)
else:
self.ref.set_value(self.name.get_text())
c = self.comment.get_buffer()
self.ref.set_comment(c.get_text(c.get_start_iter(),c.get_end_iter(),gtk.FALSE))
if self.update:
self.update()