2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-03-19 09:20:47 +05:30
|
|
|
# Copyright (C) 2000-2006 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
|
|
|
|
#
|
|
|
|
|
2003-12-02 09:57:23 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Provides the interface to allow a person to add a media object to the database.
|
|
|
|
"""
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import os
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# internationalization
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-03-17 01:54:27 +05:30
|
|
|
from TransUtils import sgettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/Gnome modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-03-19 09:20:47 +05:30
|
|
|
from QuestionDialog import ErrorDialog, WarningDialog
|
2002-10-20 19:55:16 +05:30
|
|
|
import gtk.glade
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
|
|
|
import Utils
|
|
|
|
import RelLib
|
2006-03-03 05:53:04 +05:30
|
|
|
import Mime
|
2005-12-06 12:08:09 +05:30
|
|
|
import GrampsDisplay
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# AddMediaObject
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class AddMediaObject:
|
|
|
|
"""
|
|
|
|
Displays the Add Media Dialog window, allowing the user to select
|
|
|
|
a media object from the file system, while providing a description.
|
|
|
|
"""
|
|
|
|
|
2005-04-04 05:57:06 +05:30
|
|
|
def __init__(self,db):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Creates and displays the dialog box
|
|
|
|
|
|
|
|
db - the database in which the new object is to be stored
|
|
|
|
"""
|
|
|
|
self.db = db
|
2006-01-17 10:33:30 +05:30
|
|
|
self.glade = gtk.glade.XML(const.gladeFile,"imageSelect","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.window = self.glade.get_widget("imageSelect")
|
|
|
|
self.description = self.glade.get_widget("photoDescription")
|
|
|
|
self.image = self.glade.get_widget("image")
|
|
|
|
self.file_text = self.glade.get_widget("fname")
|
2005-02-16 11:11:33 +05:30
|
|
|
self.internal = self.glade.get_widget('internal')
|
|
|
|
self.internal.connect('toggled',self.internal_toggled)
|
2006-02-05 04:59:44 +05:30
|
|
|
self.relpath = self.glade.get_widget('relpath')
|
2002-10-20 19:55:16 +05:30
|
|
|
self.temp_name = ""
|
2003-09-10 19:08:02 +05:30
|
|
|
self.object = None
|
2003-08-13 09:58:07 +05:30
|
|
|
|
|
|
|
Utils.set_titles(self.window,self.glade.get_widget('title'),
|
|
|
|
_('Select a media object'))
|
2005-12-06 12:08:09 +05:30
|
|
|
|
2006-03-08 10:52:58 +05:30
|
|
|
self.glade.get_widget('fname').connect('update_preview',
|
|
|
|
self.on_name_changed)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.window.show()
|
|
|
|
|
2005-02-16 11:11:33 +05:30
|
|
|
def internal_toggled(self, obj):
|
|
|
|
self.file_text.set_sensitive(not obj.get_active())
|
|
|
|
|
2004-07-10 10:19:53 +05:30
|
|
|
def on_help_imagesel_clicked(self,obj):
|
2003-12-02 09:57:23 +05:30
|
|
|
"""Display the relevant portion of GRAMPS manual"""
|
2005-12-06 12:08:09 +05:30
|
|
|
GrampsDisplay.help('gramps-edit-quick')
|
2004-07-10 10:19:53 +05:30
|
|
|
self.val = self.window.run()
|
2003-12-02 09:57:23 +05:30
|
|
|
|
2003-09-10 19:08:02 +05:30
|
|
|
def on_savephoto_clicked(self):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Callback function called with the save button is pressed.
|
|
|
|
A new media object is created, and added to the database.
|
|
|
|
"""
|
2003-12-17 10:53:16 +05:30
|
|
|
description = unicode(self.description.get_text())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-02-16 11:11:33 +05:30
|
|
|
if self.internal.get_active():
|
|
|
|
mobj = RelLib.MediaObject()
|
|
|
|
mobj.set_description(description)
|
|
|
|
mobj.set_mime_type(None)
|
|
|
|
else:
|
|
|
|
filename = self.file_text.get_filename()
|
2006-02-05 04:59:44 +05:30
|
|
|
|
|
|
|
if self.relpath.get_active():
|
|
|
|
p = self.db.get_save_path()
|
|
|
|
if not os.path.isdir(p):
|
|
|
|
p = os.path.dirname(p)
|
|
|
|
filename = Utils.relative_path(filename,p)
|
2005-02-16 11:11:33 +05:30
|
|
|
|
|
|
|
if os.path.exists(filename) == 0:
|
|
|
|
msgstr = _("Cannot import %s")
|
|
|
|
msgstr2 = _("The filename supplied could not be found.")
|
|
|
|
ErrorDialog(msgstr % filename, msgstr2)
|
|
|
|
return
|
|
|
|
|
2006-03-03 05:53:04 +05:30
|
|
|
mtype = Mime.get_type(filename)
|
2005-02-16 11:11:33 +05:30
|
|
|
if description == "":
|
|
|
|
description = os.path.basename(filename)
|
|
|
|
|
|
|
|
mobj = RelLib.MediaObject()
|
2006-03-10 09:59:08 +05:30
|
|
|
mobj.set_handle(Utils.create_id())
|
2005-02-16 11:11:33 +05:30
|
|
|
mobj.set_description(description)
|
|
|
|
mobj.set_mime_type(mtype)
|
|
|
|
name = filename
|
|
|
|
mobj.set_path(name)
|
2004-07-10 10:19:53 +05:30
|
|
|
|
2004-08-13 10:04:07 +05:30
|
|
|
trans = self.db.transaction_begin()
|
2003-09-10 19:08:02 +05:30
|
|
|
self.object = mobj
|
2004-03-30 10:20:24 +05:30
|
|
|
self.db.commit_media_object(mobj,trans)
|
2004-08-13 10:04:07 +05:30
|
|
|
self.db.transaction_commit(trans,_("Add Media Object"))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
def on_name_changed(self,*obj):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Called anytime the filename text window changes. Checks to
|
|
|
|
see if the file exists. If it does, the imgae is loaded into
|
|
|
|
the preview window.
|
|
|
|
"""
|
2004-07-10 10:19:53 +05:30
|
|
|
filename = unicode(self.file_text.get_filename())
|
2002-10-20 19:55:16 +05:30
|
|
|
basename = os.path.basename(filename)
|
|
|
|
(root,ext) = os.path.splitext(basename)
|
2003-12-17 10:53:16 +05:30
|
|
|
old_title = unicode(self.description.get_text())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if old_title == '' or old_title == self.temp_name:
|
|
|
|
self.description.set_text(root)
|
|
|
|
self.temp_name = root
|
2005-12-06 12:08:09 +05:30
|
|
|
|
|
|
|
filename = Utils.find_file( filename)
|
|
|
|
if filename:
|
2006-03-03 05:53:04 +05:30
|
|
|
mtype = Mime.get_type(filename)
|
2005-05-24 18:38:06 +05:30
|
|
|
if mtype and mtype.startswith("image"):
|
2006-03-19 09:20:47 +05:30
|
|
|
image = scale_image(filename,const.thumbScale)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2006-03-03 05:53:04 +05:30
|
|
|
image = Mime.find_mime_type_pixbuf(mtype)
|
2003-02-08 22:58:41 +05:30
|
|
|
self.image.set_from_pixbuf(image)
|
2003-09-10 19:08:02 +05:30
|
|
|
|
|
|
|
def run(self):
|
2005-04-09 08:41:03 +05:30
|
|
|
while True:
|
2003-12-02 09:57:23 +05:30
|
|
|
val = self.window.run()
|
|
|
|
|
|
|
|
if val == gtk.RESPONSE_OK:
|
|
|
|
self.on_savephoto_clicked()
|
|
|
|
self.window.destroy()
|
|
|
|
return self.object
|
|
|
|
elif val == gtk.RESPONSE_HELP:
|
2004-10-08 09:29:55 +05:30
|
|
|
self.on_help_imagesel_clicked(None)
|
2003-12-02 09:57:23 +05:30
|
|
|
else:
|
|
|
|
self.window.destroy()
|
|
|
|
return None
|
2004-05-14 04:15:51 +05:30
|
|
|
return None
|
2006-03-19 09:20:47 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# scale_image
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def scale_image(path,size):
|
|
|
|
|
2006-03-30 04:21:27 +05:30
|
|
|
title_msg = _("Cannot display %s") % path
|
|
|
|
detail_msg = _('GRAMPS is not able to display the image file. '
|
|
|
|
'This may be caused by a corrupt file.')
|
|
|
|
|
2006-03-19 09:20:47 +05:30
|
|
|
try:
|
2006-03-30 04:21:27 +05:30
|
|
|
image1 = gtk.gdk.pixbuf_new_from_file(path)
|
|
|
|
width = image1.get_width()
|
|
|
|
height = image1.get_height()
|
|
|
|
|
|
|
|
scale = size / float(max(width,height))
|
2006-03-19 09:20:47 +05:30
|
|
|
return image1.scale_simple(int(scale*width), int(scale*height),
|
|
|
|
gtk.gdk.INTERP_BILINEAR)
|
|
|
|
except:
|
2006-03-30 04:21:27 +05:30
|
|
|
WarningDialog(title_msg, detail_msg)
|
2006-03-19 09:20:47 +05:30
|
|
|
return gtk.gdk.pixbuf_new_from_file(const.icon)
|
2006-03-30 04:21:27 +05:30
|
|
|
|