gramps/gramps2/src/NoteEdit.py

133 lines
4.4 KiB
Python
Raw Normal View History

2002-10-20 19:55:16 +05:30
#
# Gramps - a GTK+/GNOME based genealogy program
#
2004-02-20 09:27:54 +05:30
# Copyright (C) 2000-2004 Donald N. Allingham
2002-10-20 19:55:16 +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
#
# $Id$
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# GTK/Gnome modules
#
#-------------------------------------------------------------------------
import gtk
import gtk.glade
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# gramps modules
#
#-------------------------------------------------------------------------
2003-08-17 07:44:33 +05:30
from gettext import gettext as _
2005-12-06 12:08:09 +05:30
import gc
import const
import Utils
import Spell
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# NoteEditor
#
#-------------------------------------------------------------------------
class NoteEditor:
"""Displays a simple text editor that allows a person to edit a note"""
def __init__(self,data,parent,parent_window=None,callback=None,
readonly=False):
2002-10-20 19:55:16 +05:30
self.parent = parent
self.callback = callback
if data:
if self.parent.child_windows.has_key(data):
self.parent.child_windows[data].present(None)
return
else:
self.win_key = data
else:
self.win_key = self
2002-10-20 19:55:16 +05:30
self.data = data
* 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.parent_window = parent_window
self.glade = gtk.glade.XML(const.gladeFile,"note_edit")
self.readonly = readonly
2002-10-20 19:55:16 +05:30
self.draw()
def draw(self):
"""Displays the NoteEditor window"""
self.top = self.glade.get_widget('note_edit')
alt_title = self.glade.get_widget('title_msg')
Utils.set_titles(self.top, alt_title, _('Note Editor'))
2002-10-20 19:55:16 +05:30
if self.callback:
self.title_entry = self.glade.get_widget('title')
self.title_entry.set_text(self.data.get_description())
self.title_entry.set_editable(not self.readonly)
else:
self.glade.get_widget('tbox').hide()
2002-10-20 19:55:16 +05:30
self.entry = self.glade.get_widget('note')
self.entry.get_buffer().set_text(self.data.get_note())
self.entry.set_editable(not self.readonly)
self.spellcheck = Spell.Spell(self.entry)
2002-10-20 19:55:16 +05:30
cancel_button = self.glade.get_widget('cancel')
ok_button = self.glade.get_widget('ok')
ok_button.set_sensitive(not self.readonly)
2004-02-20 09:27:54 +05:30
cancel_button.connect("clicked",self.close)
ok_button.connect("clicked",self.on_save_note_clicked)
self.top.connect("delete_event",self.on_delete_event)
2002-10-20 19:55:16 +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
if self.parent_window:
self.top.set_transient_for(self.parent_window)
2004-02-20 09:27:54 +05:30
self.add_itself_to_menu()
2002-10-20 19:55:16 +05:30
2004-05-14 04:15:51 +05:30
def on_delete_event(self,*obj):
2004-02-20 09:27:54 +05:30
self.remove_itself_from_menu()
2005-12-06 12:08:09 +05:30
gc.collect()
2004-02-20 09:27:54 +05:30
2004-05-14 04:15:51 +05:30
def close(self,*obj):
2004-02-20 09:27:54 +05:30
self.remove_itself_from_menu()
self.top.destroy()
2005-12-06 12:08:09 +05:30
gc.collect()
2004-02-20 09:27:54 +05:30
def add_itself_to_menu(self):
self.parent.child_windows[self.win_key] = self
2004-02-20 09:27:54 +05:30
self.parent_menu_item = gtk.MenuItem(_('Note'))
self.parent_menu_item.connect("activate",self.present)
self.parent_menu_item.show()
2004-02-25 08:50:53 +05:30
self.parent.winsmenu.append(self.parent_menu_item)
2004-02-20 09:27:54 +05:30
def remove_itself_from_menu(self):
del self.parent.child_windows[self.win_key]
2004-02-20 09:27:54 +05:30
self.parent_menu_item.destroy()
2004-05-14 04:15:51 +05:30
def present(self,*obj):
2004-02-20 09:27:54 +05:30
self.top.present()
def on_save_note_clicked(self,obj):
2002-10-20 19:55:16 +05:30
"""Saves the note and closes the window"""
2004-05-14 04:15:51 +05:30
tbuffer = self.entry.get_buffer()
text = unicode(tbuffer.get_text(tbuffer.get_start_iter(),
tbuffer.get_end_iter(),False))
if text != self.data.get_note():
self.data.set_note(text)
if self.callback:
self.data.set_description(self.title_entry.get_text())
self.callback(self.data)
2004-02-20 09:27:54 +05:30
self.close(obj)