2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000 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 gtk
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import Utils
|
2002-11-03 02:49:58 +05:30
|
|
|
from intl import gettext as _
|
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):
|
|
|
|
|
|
|
|
self.data = data
|
|
|
|
self.draw()
|
|
|
|
|
|
|
|
def draw(self):
|
|
|
|
"""Displays the NoteEditor window"""
|
|
|
|
title = "%s - GRAMPS" % _("Edit Note")
|
|
|
|
|
|
|
|
self.top = gtk.Dialog(title)
|
|
|
|
self.top.set_default_size(450,300)
|
|
|
|
|
|
|
|
vbox = gtk.VBox()
|
|
|
|
self.top.vbox.pack_start(vbox,gtk.TRUE,gtk.TRUE,0)
|
2003-03-14 11:16:02 +05:30
|
|
|
label = gtk.Label('<span weight="bold" size="larger">%s</span>' % _('Edit Note'))
|
|
|
|
label.set_use_markup(gtk.TRUE)
|
|
|
|
vbox.pack_start(label, gtk.FALSE, gtk.FALSE, 10)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.entry = gtk.TextView()
|
|
|
|
self.entry.set_editable(gtk.TRUE)
|
|
|
|
self.entry.show()
|
2002-11-03 02:49:58 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
scroll = gtk.ScrolledWindow()
|
|
|
|
scroll.add(self.entry)
|
|
|
|
scroll.set_policy (gtk.POLICY_NEVER, gtk.POLICY_ALWAYS)
|
2003-03-14 11:16:02 +05:30
|
|
|
scroll.set_shadow_type(gtk.SHADOW_IN)
|
2002-10-20 19:55:16 +05:30
|
|
|
scroll.show()
|
|
|
|
vbox.pack_start(scroll, gtk.TRUE, gtk.TRUE, 0)
|
|
|
|
|
|
|
|
self.entry.get_buffer().set_text(self.data.getNote())
|
|
|
|
|
|
|
|
self.top.add_button(gtk.STOCK_CANCEL,1)
|
2003-03-14 11:16:02 +05:30
|
|
|
self.top.add_button(gtk.STOCK_OK,0)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.top.show_all()
|
|
|
|
|
|
|
|
if self.top.run() == 0:
|
|
|
|
self.on_save_note_clicked()
|
|
|
|
else:
|
|
|
|
self.cancel()
|
|
|
|
|
|
|
|
def cancel(self):
|
|
|
|
"""Closes the window without saving the note"""
|
|
|
|
self.top.destroy()
|
|
|
|
|
|
|
|
def on_save_note_clicked(self):
|
|
|
|
"""Saves the note and closes the window"""
|
|
|
|
buffer = self.entry.get_buffer()
|
|
|
|
text = buffer.get_text(buffer.get_start_iter(),
|
|
|
|
buffer.get_end_iter(),gtk.FALSE)
|
|
|
|
if text != self.data.getNote():
|
|
|
|
self.data.setNote(text)
|
|
|
|
Utils.modified()
|
|
|
|
self.top.destroy()
|
|
|
|
|