gramps/src/Editors/_EditMediaRef.py

417 lines
14 KiB
Python
Raw Normal View History

#
# 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
#
#-------------------------------------------------------------------------
from gettext import gettext as _
#-------------------------------------------------------------------------
#
# GTK/Gnome modules
#
#-------------------------------------------------------------------------
import gtk
#-------------------------------------------------------------------------
#
# gramps modules
#
#-------------------------------------------------------------------------
import const
import Config
2006-03-03 05:53:04 +05:30
import Mime
import ThumbNails
from RelLib import NoteType
from DisplayTabs import \
SourceEmbedList,AttrEmbedList,MediaBackRefList,NoteTab
from GrampsWidgets import *
2006-03-05 08:06:09 +05:30
from _EditReference import EditReference
#-------------------------------------------------------------------------
#
2006-03-05 08:06:09 +05:30
# EditMediaRef
#
#-------------------------------------------------------------------------
2006-03-05 08:06:09 +05:30
class EditMediaRef(EditReference):
WIDTH_KEY = Config.MEDIA_REF_WIDTH
HEIGHT_KEY = Config.MEDIA_REF_HEIGHT
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-03-05 08:06:09 +05:30
def _local_init(self):
self.top = gtk.glade.XML(const.GLADE_FILE,
2006-03-05 08:06:09 +05:30
"change_description","gramps")
self.set_window(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-03-05 08:06:09 +05:30
mtype = self.source.get_mime_type()
self.mtype = mtype
self.pix = ThumbNails.get_thumbnail_image(self.source.get_path(),mtype)
2006-03-05 04:23:46 +05:30
self.pixmap = self.top.get_widget("pixmap")
ebox = self.top.get_widget('eventbox')
ebox.connect('button-press-event', self.button_press_event)
self.pixmap.set_from_pixbuf(self.pix)
2006-03-05 08:06:09 +05:30
coord = self.source_ref.get_rectangle()
self.rectangle = coord
self.subpixmap = self.top.get_widget("subpixmap")
self.subpix = ThumbNails.get_thumbnail_image(self.source.get_path(),
mtype,
coord)
self.subpixmap.set_from_pixbuf(self.subpix)
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])
if self.dbstate.db.readonly:
self.top.get_widget("upperx").set_sensitive(False)
self.top.get_widget("uppery").set_sensitive(False)
self.top.get_widget("lowerx").set_sensitive(False)
self.top.get_widget("lowery").set_sensitive(False)
self.upperx_spinbutton = MonitoredSpinButton(
self.top.get_widget("upperx"),
self.set_upperx,
self.get_upperx,
self.db.readonly)
self.uppery_spinbutton = MonitoredSpinButton(
self.top.get_widget("uppery"),
self.set_uppery,
self.get_uppery,
self.db.readonly)
self.lowerx_spinbutton = MonitoredSpinButton(
self.top.get_widget("lowerx"),
self.set_lowerx,
self.get_lowerx,
self.db.readonly)
self.lowery_spinbutton = MonitoredSpinButton(
self.top.get_widget("lowery"),
self.set_lowery,
self.get_lowery,
self.db.readonly)
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.ref_privacy = PrivacyButton(
2006-03-05 04:23:46 +05:30
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)
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,
self.db.readonly)
self.privacy = PrivacyButton(
self.top.get_widget("privacy"),
self.source,
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,
self.db.readonly)
2006-03-03 05:53:04 +05:30
mt = Mime.get_description(mtype)
if mt:
2006-03-05 04:23:46 +05:30
self.top.get_widget("type").set_text(mt)
else:
2006-03-05 04:23:46 +05:30
self.top.get_widget("type").set_text("")
def set_upperx(self, value):
"""
Callback for the signal handling of the spinbutton for the left x coordinate of the subsection.
Updates the subsection thumbnail using the given value for the left x coordinate.
@param value: the left x coordinate of the subsection
"""
if self.rectangle == None:
self.rectangle = (0,0,0,0)
self.rectangle = (value,
self.rectangle[1],
self.rectangle[2],
self.rectangle[3])
self.update_subpixmap()
def set_uppery(self, value):
"""
Callback for the signal handling of the spinbutton for the upper y coordinate of the subsection.
Updates the subsection thumbnail using the given value for the upper y coordinate.
@param value: the upper y coordinate of the subsection
"""
if self.rectangle == None:
self.rectangle = (0,0,0,0)
self.rectangle = (self.rectangle[0],
value,
self.rectangle[2],
self.rectangle[3])
self.update_subpixmap()
def set_lowerx(self, value):
"""
Callback for the signal handling of the spinbutton for the right x coordinate of the subsection.
Updates the subsection thumbnail using the given value for the right x coordinate.
@param value: the right x coordinate of the subsection
"""
if self.rectangle == None:
self.rectangle = (0,0,0,0)
self.rectangle = (self.rectangle[0],
self.rectangle[1],
value,
self.rectangle[3])
self.update_subpixmap()
def set_lowery(self, value):
"""
Callback for the signal handling of the spinbutton for the lower y coordinate of the subsection.
Updates the subsection thumbnail using the given value for the lower y coordinate.
@param value: the lower y coordinate of the subsection
"""
if self.rectangle == None:
self.rectangle = (0,0,0,0)
self.rectangle = (self.rectangle[0],
self.rectangle[1],
self.rectangle[2],
value)
self.update_subpixmap()
def get_upperx(self):
"""
Callback for the signal handling of the spinbutton for the left x coordinate of the subsection.
@returns: the left x coordinate of the subsection or 0 if there is no selection
"""
if self.rectangle != None:
return self.rectangle[0]
else:
return 0
def get_uppery(self):
"""
Callback for the signal handling of the spinbutton for the uppper y coordinate of the subsection.
@returns: the upper y coordinate of the subsection or 0 if there is no selection
"""
if self.rectangle != None:
return self.rectangle[1]
else:
return 0
def get_lowerx(self):
"""
Callback for the signal handling of the spinbutton for the right x coordinate of the subsection.
@returns: the right x coordinate of the subsection or 0 if there is no selection
"""
if self.rectangle != None:
return self.rectangle[2]
else:
return 0
def get_lowery(self):
"""
Callback for the signal handling of the spinbutton for the lower y coordinate of the subsection.
@returns: the lower y coordinate of the subsection or 0 if there is no selection
"""
if self.rectangle != None:
return self.rectangle[3]
else:
return 0
def update_subpixmap(self):
"""
Updates the thumbnail of the specified subsection
"""
path = self.source.get_path()
if path == None:
self.subpixmap.hide()
else:
try:
pixbuf = gtk.gdk.pixbuf_new_from_file(path)
width = pixbuf.get_width()
height = pixbuf.get_height()
upper_x = min(self.rectangle[0], self.rectangle[2])/100.
lower_x = max(self.rectangle[0], self.rectangle[2])/100.
upper_y = min(self.rectangle[1], self.rectangle[3])/100.
lower_y = max(self.rectangle[1], self.rectangle[3])/100.
sub_x = int(upper_x * width)
sub_y = int(upper_y * height)
sub_width = int((lower_x - upper_x) * width)
sub_height = int((lower_y - upper_y) * height)
if sub_width > 0 and sub_height > 0:
pixbuf = pixbuf.subpixbuf(sub_x, sub_y, sub_width, sub_height)
width = sub_width
height = sub_height
ratio = float(max(height, width))
scale = const.THUMBSCALE / ratio
x = int(scale * width)
y = int(scale * height)
pixbuf = pixbuf.scale_simple(x, y, gtk.gdk.INTERP_BILINEAR)
self.subpixmap.set_from_pixbuf(pixbuf)
self.subpixmap.show()
except:
self.subpixmap.hide()
def build_menu_names(self, person):
"""
Provides the information needed by the base class to define the
window management menu entries.
"""
if self.source:
submenu_label = _('Media: %s') % self.source.get_gramps_id()
else:
submenu_label = _('New Media')
return (_('Media Reference Editor'),submenu_label)
def button_press_event(self, obj, event):
if event.button==1 and event.type == gtk.gdk._2BUTTON_PRESS:
self.view_media(obj)
def view_media(self, obj):
mime_type = self.source.get_mime_type()
app = Mime.get_application(mime_type)
if app:
import Utils
Utils.launch(app[0],self.source.get_path())
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
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')
2006-03-05 08:06:09 +05:30
self.srcref_list = self._add_tab(
notebook_ref,
SourceEmbedList(self.dbstate,self.uistate,self.track,
self.source_ref))
2006-03-05 08:06:09 +05:30
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,
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_list(),
notetype=NoteType.MEDIAREF))
2006-03-05 08:06:09 +05:30
self.src_srcref_list = self._add_tab(
notebook_src,
SourceEmbedList(self.dbstate,self.uistate,self.track,
self.source))
2006-03-05 08:06:09 +05:30
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_list(),
notetype=NoteType.MEDIA))
2006-03-05 08:06:09 +05:30
self._setup_notebook_tabs( notebook_src)
self._setup_notebook_tabs( notebook_ref)
2006-03-05 08:06:09 +05:30
def save(self,*obj):
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-03-05 08:06:09 +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-03-05 08:06:09 +05:30
orig = self.db.get_object_from_handle(self.source.handle)
2006-03-05 08:06:09 +05:30
if cmp(orig.serialize(),self.source.serialize()):
trans = self.db.transaction_begin()
2006-03-05 08:06:09 +05:30
self.db.commit_media_object(self.source,trans)
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)
2006-04-24 04:13:36 +05:30
self.close()