2006-02-22 10:03:34 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000-2006 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
|
|
|
|
#
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-04-07 03:32:46 +05:30
|
|
|
from gettext import gettext as _
|
2006-02-22 10:03:34 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/Gnome modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gobject
|
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
|
|
|
import Utils
|
|
|
|
import RelLib
|
2006-03-03 05:53:04 +05:30
|
|
|
import Mime
|
2006-02-22 10:03:34 +05:30
|
|
|
import ImgManip
|
|
|
|
|
|
|
|
from DisplayTabs import *
|
|
|
|
from GrampsWidgets import *
|
2006-03-05 08:06:09 +05:30
|
|
|
from _EditReference import EditReference
|
2006-02-22 10:03:34 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2006-03-05 08:06:09 +05:30
|
|
|
# EditMediaRef
|
2006-02-22 10:03:34 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-03-05 08:06:09 +05:30
|
|
|
class EditMediaRef(EditReference):
|
2006-03-05 04:23:46 +05:30
|
|
|
def __init__(self, state, uistate, track, media, media_ref, update):
|
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
EditReference.__init__(self, state, uistate, track, media,
|
|
|
|
media_ref, update)
|
2006-02-22 10:03:34 +05:30
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
def _local_init(self):
|
2006-02-22 10:03:34 +05:30
|
|
|
|
2006-03-05 04:23:46 +05:30
|
|
|
self.top = gtk.glade.XML(const.gladeFile,
|
2006-03-05 08:06:09 +05:30
|
|
|
"change_description","gramps")
|
2006-02-22 10:03:34 +05:30
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
self.define_top_level(self.top.get_widget('change_description'),
|
|
|
|
self.top.get_widget('title'),
|
|
|
|
_('Media Reference Editor'))
|
2006-04-22 02:15:10 +05:30
|
|
|
self.define_warn_box(self.top.get_widget("warn_box"))
|
2006-03-05 08:06:09 +05:30
|
|
|
|
|
|
|
def _setup_fields(self):
|
2006-02-22 10:03:34 +05:30
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
mtype = self.source.get_mime_type()
|
2006-02-22 10:03:34 +05:30
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
self.pix = ImgManip.get_thumbnail_image(self.source.get_path(),mtype)
|
2006-03-05 04:23:46 +05:30
|
|
|
self.pixmap = self.top.get_widget("pixmap")
|
2006-02-22 10:03:34 +05:30
|
|
|
self.pixmap.set_from_pixbuf(self.pix)
|
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
coord = self.source_ref.get_rectangle()
|
2006-02-22 10:03:34 +05:30
|
|
|
|
|
|
|
if coord and type(coord) == tuple:
|
2006-03-05 04:23:46 +05:30
|
|
|
self.top.get_widget("upperx").set_value(coord[0])
|
|
|
|
self.top.get_widget("uppery").set_value(coord[1])
|
|
|
|
self.top.get_widget("lowerx").set_value(coord[2])
|
|
|
|
self.top.get_widget("lowery").set_value(coord[3])
|
2006-02-22 10:03:34 +05:30
|
|
|
|
2006-03-05 04:23:46 +05:30
|
|
|
self.descr_window = MonitoredEntry(
|
|
|
|
self.top.get_widget("description"),
|
2006-03-05 08:06:09 +05:30
|
|
|
self.source.set_description,
|
|
|
|
self.source.get_description,
|
2006-03-05 04:23:46 +05:30
|
|
|
self.db.readonly)
|
|
|
|
|
|
|
|
self.privacy = PrivacyButton(
|
|
|
|
self.top.get_widget("private"),
|
2006-03-05 08:06:09 +05:30
|
|
|
self.source_ref,
|
2006-03-05 04:23:46 +05:30
|
|
|
self.db.readonly)
|
|
|
|
|
2006-02-22 10:03:34 +05:30
|
|
|
self.gid = MonitoredEntry(
|
2006-03-05 04:23:46 +05:30
|
|
|
self.top.get_widget("gid"),
|
2006-03-05 08:06:09 +05:30
|
|
|
self.source.set_gramps_id,
|
|
|
|
self.source.get_gramps_id,
|
2006-02-22 10:03:34 +05:30
|
|
|
self.db.readonly)
|
|
|
|
|
|
|
|
self.path_obj = MonitoredEntry(
|
2006-03-05 04:23:46 +05:30
|
|
|
self.top.get_widget("path"),
|
2006-03-05 08:06:09 +05:30
|
|
|
self.source.set_path,
|
|
|
|
self.source.get_path,
|
2006-02-22 10:03:34 +05:30
|
|
|
self.db.readonly)
|
|
|
|
|
2006-03-03 05:53:04 +05:30
|
|
|
mt = Mime.get_description(mtype)
|
2006-02-22 10:03:34 +05:30
|
|
|
if mt:
|
2006-03-05 04:23:46 +05:30
|
|
|
self.top.get_widget("type").set_text(mt)
|
2006-02-22 10:03:34 +05:30
|
|
|
else:
|
2006-03-05 04:23:46 +05:30
|
|
|
self.top.get_widget("type").set_text("")
|
2006-02-22 10:03:34 +05:30
|
|
|
|
2006-03-05 04:23:46 +05:30
|
|
|
def _connect_signals(self):
|
2006-03-05 08:06:09 +05:30
|
|
|
self.define_cancel_button(self.top.get_widget('button84'))
|
|
|
|
self.define_ok_button(self.top.get_widget('button82'),self.save)
|
2006-03-05 04:23:46 +05:30
|
|
|
|
2006-02-22 10:03:34 +05:30
|
|
|
def _create_tabbed_pages(self):
|
|
|
|
"""
|
|
|
|
Creates the notebook tabs and inserts them into the main
|
|
|
|
window.
|
|
|
|
|
|
|
|
"""
|
2006-03-05 08:06:09 +05:30
|
|
|
notebook_ref = self.top.get_widget('notebook_ref')
|
|
|
|
notebook_src = self.top.get_widget('notebook_shared')
|
|
|
|
|
|
|
|
self.srcref_list = self._add_tab(
|
|
|
|
notebook_ref,
|
|
|
|
SourceEmbedList(self.dbstate,self.uistate, self.track,
|
|
|
|
self.source_ref.source_list))
|
|
|
|
|
|
|
|
self.attr_list = self._add_tab(
|
|
|
|
notebook_ref,
|
|
|
|
AttrEmbedList(self.dbstate,self.uistate,self.track,
|
|
|
|
self.source_ref.get_attribute_list()))
|
|
|
|
|
|
|
|
self.backref_list = self._add_tab(
|
|
|
|
notebook_src,
|
|
|
|
MediaBackRefList(self.dbstate,self.uistate,self.track,
|
2006-04-21 04:02:17 +05:30
|
|
|
self.db.find_backlink_handles(self.source.handle),
|
|
|
|
self.enable_warnbox
|
|
|
|
))
|
2006-03-05 08:06:09 +05:30
|
|
|
|
|
|
|
self.note_ref_tab = self._add_tab(
|
|
|
|
notebook_ref,
|
|
|
|
NoteTab(self.dbstate, self.uistate, self.track,
|
|
|
|
self.source_ref.get_note_object()))
|
|
|
|
|
|
|
|
self.src_srcref_list = self._add_tab(
|
|
|
|
notebook_src,
|
|
|
|
SourceEmbedList(self.dbstate,self.uistate, self.track,
|
|
|
|
self.source.source_list))
|
|
|
|
|
|
|
|
self.src_attr_list = self._add_tab(
|
|
|
|
notebook_src,
|
|
|
|
AttrEmbedList(self.dbstate,self.uistate,self.track,
|
|
|
|
self.source.get_attribute_list()))
|
|
|
|
|
|
|
|
self.src_note_ref_tab = self._add_tab(
|
|
|
|
notebook_src,
|
|
|
|
NoteTab(self.dbstate, self.uistate, self.track,
|
|
|
|
self.source.get_note_object()))
|
|
|
|
|
|
|
|
def save(self,*obj):
|
2006-02-22 10:03:34 +05:30
|
|
|
|
|
|
|
coord = (
|
2006-03-05 04:23:46 +05:30
|
|
|
self.top.get_widget("upperx").get_value_as_int(),
|
|
|
|
self.top.get_widget("uppery").get_value_as_int(),
|
|
|
|
self.top.get_widget("lowerx").get_value_as_int(),
|
|
|
|
self.top.get_widget("lowery").get_value_as_int(),
|
2006-02-22 10:03:34 +05:30
|
|
|
)
|
2006-03-05 08:06:09 +05:30
|
|
|
|
2006-02-22 10:03:34 +05:30
|
|
|
if (coord[0] == None and coord[1] == None
|
|
|
|
and coord[2] == None and coord[3] == None):
|
|
|
|
coord = None
|
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
self.source_ref.set_rectangle(coord)
|
2006-02-22 10:03:34 +05:30
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
orig = self.db.get_object_from_handle(self.source.handle)
|
2006-02-22 10:03:34 +05:30
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
if cmp(orig.serialize(),self.source.serialize()):
|
2006-02-22 10:03:34 +05:30
|
|
|
trans = self.db.transaction_begin()
|
2006-03-05 08:06:09 +05:30
|
|
|
self.db.commit_media_object(self.source,trans)
|
2006-02-22 10:03:34 +05:30
|
|
|
self.db.transaction_commit(trans,_("Edit Media Object"))
|
|
|
|
|
2006-03-05 08:06:09 +05:30
|
|
|
if self.update:
|
|
|
|
self.update(self.source_ref,self.source)
|
|
|
|
self.close_window()
|