* src/Report.py (CommandLineReport.parse_option_str):
Fix PluginMgr lists. * src/plugins/CustomBookText.py: Convert to new scheme. * src/plugins/FamilyGroup.py: Switch from handle to id for spouse. * src/plugins/SimpleBookTitle.py: Cleanups. svn: r3884
This commit is contained in:
parent
5b5d4d4094
commit
5ec30eb388
@ -1,3 +1,10 @@
|
|||||||
|
2005-01-08 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||||
|
* src/Report.py (CommandLineReport.parse_option_str):
|
||||||
|
Fix PluginMgr lists.
|
||||||
|
* src/plugins/CustomBookText.py: Convert to new scheme.
|
||||||
|
* src/plugins/FamilyGroup.py: Switch from handle to id for spouse.
|
||||||
|
* src/plugins/SimpleBookTitle.py: Cleanups.
|
||||||
|
|
||||||
2005-01-07 Don Allingham <dallingham@users.sourceforge.net>
|
2005-01-07 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
* src/gramps.glade: removal of more OptionMenus in favor
|
* src/gramps.glade: removal of more OptionMenus in favor
|
||||||
of ComboBoxes
|
of ComboBoxes
|
||||||
|
@ -50,6 +50,7 @@ import gnome.ui
|
|||||||
import const
|
import const
|
||||||
import Utils
|
import Utils
|
||||||
import Plugins
|
import Plugins
|
||||||
|
import PluginMgr
|
||||||
import BaseDoc
|
import BaseDoc
|
||||||
import StyleEditor
|
import StyleEditor
|
||||||
import GrampsKeys
|
import GrampsKeys
|
||||||
@ -1624,27 +1625,27 @@ class CommandLineReport:
|
|||||||
self.options_help['of'].append(os.path.expanduser("~/whatever_name"))
|
self.options_help['of'].append(os.path.expanduser("~/whatever_name"))
|
||||||
|
|
||||||
if self.category == const.CATEGORY_TEXT:
|
if self.category == const.CATEGORY_TEXT:
|
||||||
for item in Plugins._textdoc:
|
for item in PluginMgr.textdoc_list:
|
||||||
if item[7] == self.options_dict['off']:
|
if item[7] == self.options_dict['off']:
|
||||||
self.format = item[1]
|
self.format = item[1]
|
||||||
self.options_help['off'].append(
|
self.options_help['off'].append(
|
||||||
[ item[7] for item in Plugins._textdoc ]
|
[ item[7] for item in PluginMgr.textdoc_list ]
|
||||||
)
|
)
|
||||||
self.options_help['off'].append(False)
|
self.options_help['off'].append(False)
|
||||||
elif self.category == const.CATEGORY_DRAW:
|
elif self.category == const.CATEGORY_DRAW:
|
||||||
for item in Plugins._drawdoc:
|
for item in PluginMgr.drawdoc_list:
|
||||||
if item[6] == self.options_dict['off']:
|
if item[6] == self.options_dict['off']:
|
||||||
self.format = item[1]
|
self.format = item[1]
|
||||||
self.options_help['off'].append(
|
self.options_help['off'].append(
|
||||||
[ item[6] for item in Plugins._drawdoc ]
|
[ item[6] for item in PluginMgr.drawdoc_list ]
|
||||||
)
|
)
|
||||||
self.options_help['off'].append(False)
|
self.options_help['off'].append(False)
|
||||||
elif self.category == const.CATEGORY_BOOK:
|
elif self.category == const.CATEGORY_BOOK:
|
||||||
for item in Plugins._bookdoc:
|
for item in PluginMgr.bookdoc_list:
|
||||||
if item[6] == self.options_dict['off']:
|
if item[6] == self.options_dict['off']:
|
||||||
self.format = item[1]
|
self.format = item[1]
|
||||||
self.options_help['off'].append(
|
self.options_help['off'].append(
|
||||||
[ item[6] for item in Plugins._bookdoc ]
|
[ item[6] for item in PluginMgr.bookdoc_list ]
|
||||||
)
|
)
|
||||||
self.options_help['off'].append(False)
|
self.options_help['off'].append(False)
|
||||||
else:
|
else:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Gramps - a GTK+/GNOME based genealogy program
|
# Gramps - a GTK+/GNOME based genealogy program
|
||||||
#
|
#
|
||||||
# Copyright (C) 2003 Donald N. Allingham
|
# Copyright (C) 2003-2005 Donald N. Allingham
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -17,10 +17,24 @@
|
|||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
|
||||||
# Written by Alex Roitman,
|
# Written by Alex Roitman,
|
||||||
# largely based on the SimpleBookTitle.py by Don Allingham
|
# largely based on the SimpleBookTitle.py by Don Allingham
|
||||||
|
|
||||||
|
# $Id$
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
|
# python modules
|
||||||
|
#
|
||||||
|
#------------------------------------------------------------------------
|
||||||
|
from gettext import gettext as _
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# gtk
|
||||||
|
#
|
||||||
|
#------------------------------------------------------------------------
|
||||||
|
import gtk
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -29,11 +43,8 @@
|
|||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
import Report
|
import Report
|
||||||
import BaseDoc
|
import BaseDoc
|
||||||
import Errors
|
import const
|
||||||
from QuestionDialog import ErrorDialog
|
import ReportOptions
|
||||||
from gettext import gettext as _
|
|
||||||
|
|
||||||
import gtk
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -42,32 +53,30 @@ import gtk
|
|||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class CustomText(Report.Report):
|
class CustomText(Report.Report):
|
||||||
|
|
||||||
def __init__(self,database,person,top_text,middle_text,bottom_text,doc,output,newpage=0):
|
def __init__(self,database,person,options_class):
|
||||||
self.map = {}
|
"""
|
||||||
self.database = database
|
Creates CustomText object that produces the report.
|
||||||
self.start = person
|
|
||||||
self.top_text = top_text
|
|
||||||
self.middle_text = middle_text
|
|
||||||
self.bottom_text = bottom_text
|
|
||||||
self.doc = doc
|
|
||||||
self.newpage = newpage
|
|
||||||
if output:
|
|
||||||
self.standalone = 1
|
|
||||||
self.doc.open(output)
|
|
||||||
self.doc.init()
|
|
||||||
else:
|
|
||||||
self.standalone = 0
|
|
||||||
self.sref_map = {}
|
|
||||||
self.sref_index = 1
|
|
||||||
|
|
||||||
def setup(self):
|
The arguments are:
|
||||||
pass
|
|
||||||
|
|
||||||
|
database - the GRAMPS database instance
|
||||||
|
person - currently selected person
|
||||||
|
options_class - instance of the Options class for this report
|
||||||
|
|
||||||
|
This report needs the following parameters (class variables)
|
||||||
|
that come in the options class.
|
||||||
|
|
||||||
|
top - Text on the top.
|
||||||
|
mid - Text in the middle.
|
||||||
|
bot - Text on the bottom.
|
||||||
|
"""
|
||||||
|
Report.Report.__init__(self,database,person,options_class)
|
||||||
|
|
||||||
|
self.top_text = options_class.handler.options_dict['top']
|
||||||
|
self.middle_text = options_class.handler.options_dict['mid']
|
||||||
|
self.bottom_text = options_class.handler.options_dict['bot']
|
||||||
|
|
||||||
def write_report(self):
|
def write_report(self):
|
||||||
|
|
||||||
if self.newpage:
|
|
||||||
self.doc.page_break()
|
|
||||||
|
|
||||||
self.doc.start_paragraph('CBT-Initial')
|
self.doc.start_paragraph('CBT-Initial')
|
||||||
self.doc.write_text(self.top_text)
|
self.doc.write_text(self.top_text)
|
||||||
self.doc.end_paragraph()
|
self.doc.end_paragraph()
|
||||||
@ -80,216 +89,133 @@ class CustomText(Report.Report):
|
|||||||
self.doc.write_text(self.bottom_text)
|
self.doc.write_text(self.bottom_text)
|
||||||
self.doc.end_paragraph()
|
self.doc.end_paragraph()
|
||||||
|
|
||||||
if self.standalone:
|
|
||||||
self.doc.close()
|
|
||||||
|
|
||||||
|
|
||||||
def _make_default_style(default_style):
|
|
||||||
"""Make the default output style for the Custom Text report."""
|
|
||||||
font = BaseDoc.FontStyle()
|
|
||||||
font.set(face=BaseDoc.FONT_SANS_SERIF,size=12,bold=0,italic=0)
|
|
||||||
para = BaseDoc.ParagraphStyle()
|
|
||||||
para.set_font(font)
|
|
||||||
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
|
||||||
para.set(pad=0.5)
|
|
||||||
para.set_description(_('The style used for the first portion of the custom text.'))
|
|
||||||
default_style.add_style("CBT-Initial",para)
|
|
||||||
|
|
||||||
font = BaseDoc.FontStyle()
|
|
||||||
font.set(face=BaseDoc.FONT_SANS_SERIF,size=12,bold=0,italic=0)
|
|
||||||
para = BaseDoc.ParagraphStyle()
|
|
||||||
para.set_font(font)
|
|
||||||
para.set(pad=0.5)
|
|
||||||
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
|
||||||
para.set_description(_('The style used for the middle portion of the custom text.'))
|
|
||||||
default_style.add_style("CBT-Middle",para)
|
|
||||||
|
|
||||||
font = BaseDoc.FontStyle()
|
|
||||||
font.set(face=BaseDoc.FONT_SANS_SERIF,size=12,bold=0,italic=0)
|
|
||||||
para = BaseDoc.ParagraphStyle()
|
|
||||||
para.set_font(font)
|
|
||||||
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
|
||||||
para.set(pad=0.5)
|
|
||||||
para.set_description(_('The style used for the last portion of the custom text.'))
|
|
||||||
default_style.add_style("CBT-Final",para)
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Set up sane defaults for the book_item
|
#
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
_style_file = "custom_text.xml"
|
class CustomTextOptions(ReportOptions.ReportOptions):
|
||||||
_style_name = "default"
|
|
||||||
|
|
||||||
_person_handle = ""
|
"""
|
||||||
_top_text = ""
|
Defines options and provides handling interface.
|
||||||
_middle_text = ""
|
"""
|
||||||
_bottom_text = ""
|
|
||||||
|
|
||||||
_options = ( _person_handle, _top_text, _middle_text, _bottom_text )
|
def __init__(self,name,person_id=None):
|
||||||
|
ReportOptions.ReportOptions.__init__(self,name,person_id)
|
||||||
|
|
||||||
|
def set_new_options(self):
|
||||||
|
# Options specific for this report
|
||||||
|
self.options_dict = {
|
||||||
|
'top' : '',
|
||||||
|
'mid' : '',
|
||||||
|
'bot' : '',
|
||||||
|
}
|
||||||
|
self.options_help = {
|
||||||
|
'top' : ("=str","Initial Text",
|
||||||
|
"Whatever String You Wish"),
|
||||||
|
'mid' : ("=str","Middle Text",
|
||||||
|
"Whatever String You Wish"),
|
||||||
|
'bot' : ("=str","Final Text",
|
||||||
|
"Whatever String You Wish"),
|
||||||
|
}
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
def add_user_options(self,dialog):
|
||||||
#
|
dialog.setup_center_person = dialog.setup_paper_frame
|
||||||
# Book Item Options dialog
|
dialog.notebook = gtk.Notebook()
|
||||||
#
|
dialog.notebook.set_border_width(6)
|
||||||
#------------------------------------------------------------------------
|
dialog.window.vbox.add(dialog.notebook)
|
||||||
class CustomTextDialog(Report.BareReportDialog):
|
|
||||||
|
|
||||||
def __init__(self,database,person,opt,stl):
|
top_sw = gtk.ScrolledWindow()
|
||||||
|
middle_sw = gtk.ScrolledWindow()
|
||||||
|
bottom_sw = gtk.ScrolledWindow()
|
||||||
|
|
||||||
self.options = opt
|
top_sw.set_policy(gtk.POLICY_AUTOMATIC,gtk.POLICY_AUTOMATIC)
|
||||||
self.db = database
|
middle_sw.set_policy(gtk.POLICY_AUTOMATIC,gtk.POLICY_AUTOMATIC)
|
||||||
if self.options[0]:
|
bottom_sw.set_policy(gtk.POLICY_AUTOMATIC,gtk.POLICY_AUTOMATIC)
|
||||||
self.person = self.db.get_person_from_handle(self.options[0])
|
|
||||||
else:
|
|
||||||
self.person = person
|
|
||||||
self.style_name = stl
|
|
||||||
|
|
||||||
Report.BareReportDialog.__init__(self,database,self.person)
|
|
||||||
|
|
||||||
self.top_text = self.options[1]
|
|
||||||
self.middle_text = self.options[2]
|
|
||||||
self.bottom_text = self.options[3]
|
|
||||||
|
|
||||||
self.top_text_view.get_buffer().set_text(self.top_text)
|
|
||||||
self.middle_text_view.get_buffer().set_text(self.middle_text)
|
|
||||||
self.bottom_text_view.get_buffer().set_text(self.bottom_text)
|
|
||||||
|
|
||||||
self.notebook.set_size_request(450,300)
|
|
||||||
|
|
||||||
self.new_person = None
|
|
||||||
|
|
||||||
self.window.run()
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# Customization hooks
|
|
||||||
#
|
|
||||||
#------------------------------------------------------------------------
|
|
||||||
def make_default_style(self):
|
|
||||||
_make_default_style(self.default_style)
|
|
||||||
|
|
||||||
def get_title(self):
|
|
||||||
"""The window title for this dialog"""
|
|
||||||
return "%s - GRAMPS Book" % (_("Custom Text"))
|
|
||||||
|
|
||||||
def get_header(self, name):
|
|
||||||
"""The header line at the top of the dialog contents"""
|
|
||||||
return _("Custom Text for GRAMPS Book")
|
|
||||||
|
|
||||||
def get_stylesheet_savefile(self):
|
|
||||||
"""Where to save styles for this report."""
|
|
||||||
return _style_file
|
|
||||||
|
|
||||||
def setup_center_person(self):
|
|
||||||
pass
|
|
||||||
|
|
||||||
def setup_report_options_frame(self):
|
|
||||||
self.notebook = gtk.Notebook()
|
|
||||||
self.notebook.set_border_width(6)
|
|
||||||
self.window.vbox.add(self.notebook)
|
|
||||||
|
|
||||||
def add_user_options(self):
|
|
||||||
self.top_sw = gtk.ScrolledWindow()
|
|
||||||
self.middle_sw = gtk.ScrolledWindow()
|
|
||||||
self.bottom_sw = gtk.ScrolledWindow()
|
|
||||||
|
|
||||||
self.top_sw.set_policy(gtk.POLICY_AUTOMATIC,gtk.POLICY_AUTOMATIC)
|
|
||||||
self.middle_sw.set_policy(gtk.POLICY_AUTOMATIC,gtk.POLICY_AUTOMATIC)
|
|
||||||
self.bottom_sw.set_policy(gtk.POLICY_AUTOMATIC,gtk.POLICY_AUTOMATIC)
|
|
||||||
|
|
||||||
self.top_text_view = gtk.TextView()
|
self.top_text_view = gtk.TextView()
|
||||||
|
self.top_text_view.get_buffer().set_text(self.options_dict['top'])
|
||||||
self.middle_text_view = gtk.TextView()
|
self.middle_text_view = gtk.TextView()
|
||||||
|
self.middle_text_view.get_buffer().set_text(self.options_dict['mid'])
|
||||||
self.bottom_text_view = gtk.TextView()
|
self.bottom_text_view = gtk.TextView()
|
||||||
|
self.bottom_text_view.get_buffer().set_text(self.options_dict['bot'])
|
||||||
|
|
||||||
self.top_sw.add_with_viewport(self.top_text_view)
|
top_sw.add_with_viewport(self.top_text_view)
|
||||||
self.middle_sw.add_with_viewport(self.middle_text_view)
|
middle_sw.add_with_viewport(self.middle_text_view)
|
||||||
self.bottom_sw.add_with_viewport(self.bottom_text_view)
|
bottom_sw.add_with_viewport(self.bottom_text_view)
|
||||||
|
|
||||||
self.add_frame_option(_('Initial Text'),"",self.top_sw)
|
|
||||||
self.add_frame_option(_('Middle Text'),"",self.middle_sw)
|
|
||||||
self.add_frame_option(_('Final Text'),"",self.bottom_sw)
|
|
||||||
|
|
||||||
def parse_report_options_frame(self):
|
dialog.add_frame_option(_('Initial Text'),"",top_sw)
|
||||||
"""Parse the report options frame of the dialog.
|
dialog.add_frame_option(_('Middle Text'),"",middle_sw)
|
||||||
Save the user selected choices for later use."""
|
dialog.add_frame_option(_('Final Text'),"",bottom_sw)
|
||||||
|
|
||||||
# call the parent task to handle normal options
|
def parse_user_options(self,dialog):
|
||||||
Report.BareReportDialog.parse_report_options_frame(self)
|
"""
|
||||||
|
Parses the custom options that we have added.
|
||||||
|
"""
|
||||||
|
self.options_dict['top'] = unicode(
|
||||||
|
self.top_text_view.get_buffer().get_text(
|
||||||
|
self.top_text_view.get_buffer().get_start_iter(),
|
||||||
|
self.top_text_view.get_buffer().get_end_iter(),
|
||||||
|
gtk.FALSE
|
||||||
|
)
|
||||||
|
).replace('\n',' ')
|
||||||
|
|
||||||
# get values from the widgets
|
self.options_dict['mid'] = unicode(
|
||||||
self.top_text = self.top_text_view.get_buffer().get_text(
|
self.middle_text_view.get_buffer().get_text(
|
||||||
self.top_text_view.get_buffer().get_start_iter(),
|
self.middle_text_view.get_buffer().get_start_iter(),
|
||||||
self.top_text_view.get_buffer().get_end_iter(),
|
self.middle_text_view.get_buffer().get_end_iter(),
|
||||||
gtk.FALSE)
|
gtk.FALSE
|
||||||
self.middle_text = self.middle_text_view.get_buffer().get_text(
|
)
|
||||||
self.middle_text_view.get_buffer().get_start_iter(),
|
).replace('\n',' ')
|
||||||
self.middle_text_view.get_buffer().get_end_iter(),
|
|
||||||
gtk.FALSE)
|
|
||||||
self.bottom_text = self.bottom_text_view.get_buffer().get_text(
|
|
||||||
self.bottom_text_view.get_buffer().get_start_iter(),
|
|
||||||
self.bottom_text_view.get_buffer().get_end_iter(),
|
|
||||||
gtk.FALSE)
|
|
||||||
|
|
||||||
def on_cancel(self, obj):
|
self.options_dict['bot'] = unicode(
|
||||||
pass
|
self.bottom_text_view.get_buffer().get_text(
|
||||||
|
self.bottom_text_view.get_buffer().get_start_iter(),
|
||||||
|
self.bottom_text_view.get_buffer().get_end_iter(),
|
||||||
|
gtk.FALSE
|
||||||
|
)
|
||||||
|
).replace('\n',' ')
|
||||||
|
|
||||||
def on_ok_clicked(self, obj):
|
def make_default_style(self,default_style):
|
||||||
"""The user is satisfied with the dialog choices. Parse all options
|
"""Make the default output style for the Custom Text report."""
|
||||||
and close the window."""
|
font = BaseDoc.FontStyle()
|
||||||
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=12,bold=0,italic=0)
|
||||||
|
para = BaseDoc.ParagraphStyle()
|
||||||
|
para.set_font(font)
|
||||||
|
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
||||||
|
para.set(pad=0.5)
|
||||||
|
para.set_description(_('The style used for the first portion of the custom text.'))
|
||||||
|
default_style.add_style("CBT-Initial",para)
|
||||||
|
|
||||||
# Preparation
|
font = BaseDoc.FontStyle()
|
||||||
self.parse_style_frame()
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=12,bold=0,italic=0)
|
||||||
self.parse_report_options_frame()
|
para = BaseDoc.ParagraphStyle()
|
||||||
|
para.set_font(font)
|
||||||
if self.new_person:
|
para.set(pad=0.5)
|
||||||
self.person = self.new_person
|
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
||||||
self.options = ( self.person.get_handle(),
|
para.set_description(_('The style used for the middle portion of the custom text.'))
|
||||||
self.top_text, self.middle_text, self.bottom_text )
|
default_style.add_style("CBT-Middle",para)
|
||||||
self.style_name = self.selected_style.get_name()
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
font = BaseDoc.FontStyle()
|
||||||
#
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=12,bold=0,italic=0)
|
||||||
# Function to write Book Item
|
para = BaseDoc.ParagraphStyle()
|
||||||
#
|
para.set_font(font)
|
||||||
#------------------------------------------------------------------------
|
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
||||||
def write_book_item(database,person,doc,options,newpage=0):
|
para.set(pad=0.5)
|
||||||
"""Write the Title Page using options set.
|
para.set_description(_('The style used for the last portion of the custom text.'))
|
||||||
All user dialog has already been handled and the output file opened."""
|
default_style.add_style("CBT-Final",para)
|
||||||
try:
|
|
||||||
if options[0]:
|
|
||||||
person = database.get_person_from_handle(options[0])
|
|
||||||
top_text = options[1]
|
|
||||||
middle_text = options[2]
|
|
||||||
bottom_text = options[3]
|
|
||||||
return CustomText(database, person,
|
|
||||||
top_text, middle_text, bottom_text, doc, None, newpage )
|
|
||||||
except Errors.ReportError, msg:
|
|
||||||
(m1,m2) = msg.messages()
|
|
||||||
ErrorDialog(m1,m2)
|
|
||||||
except Errors.FilterError, msg:
|
|
||||||
(m1,m2) = msg.messages()
|
|
||||||
ErrorDialog(m1,m2)
|
|
||||||
except:
|
|
||||||
import DisplayTrace
|
|
||||||
DisplayTrace.DisplayTrace()
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
from PluginMgr import register_book_item
|
from PluginMgr import register_report
|
||||||
|
register_report(
|
||||||
# (name,category,options_dialog,write_book_item,options,style_name,style_file,make_default_style)
|
name = 'custom_text',
|
||||||
register_book_item(
|
category = const.CATEGORY_TEXT,
|
||||||
_("Custom Text"),
|
report_class = CustomText,
|
||||||
_("Text"),
|
options_class = CustomTextOptions,
|
||||||
CustomTextDialog,
|
modes = Report.MODE_BKI,
|
||||||
write_book_item,
|
translated_name = _("Custom Text"),
|
||||||
_options,
|
)
|
||||||
_style_name,
|
|
||||||
_style_file,
|
|
||||||
_make_default_style
|
|
||||||
)
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Gramps - a GTK+/GNOME based genealogy program
|
# Gramps - a GTK+/GNOME based genealogy program
|
||||||
#
|
#
|
||||||
# Copyright (C) 2000-2004 Donald N. Allingham
|
# Copyright (C) 2000-2005 Donald N. Allingham
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -56,7 +56,6 @@ from DateHandler import displayer as _dd
|
|||||||
class FamilyGroup(Report.Report):
|
class FamilyGroup(Report.Report):
|
||||||
|
|
||||||
def __init__(self,database,person,options_class):
|
def __init__(self,database,person,options_class):
|
||||||
#,family_handle,doc,output,newpage=0):
|
|
||||||
"""
|
"""
|
||||||
Creates the DetAncestorReport object that produces the report.
|
Creates the DetAncestorReport object that produces the report.
|
||||||
|
|
||||||
@ -73,20 +72,22 @@ class FamilyGroup(Report.Report):
|
|||||||
"""
|
"""
|
||||||
Report.Report.__init__(self,database,person,options_class)
|
Report.Report.__init__(self,database,person,options_class)
|
||||||
|
|
||||||
|
self.family = None
|
||||||
|
|
||||||
spouse_id = options_class.handler.options_dict['spouse_id']
|
spouse_id = options_class.handler.options_dict['spouse_id']
|
||||||
if spouse_id:
|
if spouse_id:
|
||||||
family_list = person.get_family_handle_list()
|
family_list = person.get_family_handle_list()
|
||||||
for family_handle in family_list:
|
for family_handle in family_list:
|
||||||
family = database.get_family_from_handle(family_handle)
|
family = database.get_family_from_handle(family_handle)
|
||||||
if person.get_handle() == family.get_father_handle():
|
if person.get_handle() == family.get_father_handle():
|
||||||
this_spouse_id = family.get_mother_handle()
|
this_spouse_handle = family.get_mother_handle()
|
||||||
else:
|
else:
|
||||||
this_spouse_id = family.get_father_handle()
|
this_spouse_handle = family.get_father_handle()
|
||||||
|
this_spouse = database.get_person_from_handle(this_spouse_handle)
|
||||||
|
this_spouse_id = this_spouse.get_gramps_id()
|
||||||
if spouse_id == this_spouse_id:
|
if spouse_id == this_spouse_id:
|
||||||
self.family = family
|
self.family = family
|
||||||
break
|
break
|
||||||
else:
|
|
||||||
self.family = None
|
|
||||||
|
|
||||||
self.setup()
|
self.setup()
|
||||||
|
|
||||||
@ -161,15 +162,15 @@ class FamilyGroup(Report.Report):
|
|||||||
person = self.database.get_person_from_handle(person_handle)
|
person = self.database.get_person_from_handle(person_handle)
|
||||||
|
|
||||||
if person.get_gender() == RelLib.Person.male:
|
if person.get_gender() == RelLib.Person.male:
|
||||||
id = _("Husband")
|
the_id = _("Husband")
|
||||||
else:
|
else:
|
||||||
id = _("Wife")
|
the_id = _("Wife")
|
||||||
|
|
||||||
self.doc.start_table(id,'FGR-ParentTable')
|
self.doc.start_table(id,'FGR-ParentTable')
|
||||||
self.doc.start_row()
|
self.doc.start_row()
|
||||||
self.doc.start_cell('FGR-ParentHead',3)
|
self.doc.start_cell('FGR-ParentHead',3)
|
||||||
self.doc.start_paragraph('FGR-ParentName')
|
self.doc.start_paragraph('FGR-ParentName')
|
||||||
self.doc.write_text(id + ': ')
|
self.doc.write_text(the_id + ': ')
|
||||||
self.doc.write_text(person.get_primary_name().get_regular_name())
|
self.doc.write_text(person.get_primary_name().get_regular_name())
|
||||||
self.doc.end_paragraph()
|
self.doc.end_paragraph()
|
||||||
self.doc.end_cell()
|
self.doc.end_cell()
|
||||||
@ -448,12 +449,13 @@ class FamilyGroupOptions(ReportOptions.ReportOptions):
|
|||||||
for family_handle in family_list:
|
for family_handle in family_list:
|
||||||
family = database.get_family_from_handle(family_handle)
|
family = database.get_family_from_handle(family_handle)
|
||||||
if person.get_handle() == family.get_father_handle():
|
if person.get_handle() == family.get_father_handle():
|
||||||
spouse_id = family.get_mother_handle()
|
spouse_handle = family.get_mother_handle()
|
||||||
else:
|
else:
|
||||||
spouse_id = family.get_father_handle()
|
spouse_handle = family.get_father_handle()
|
||||||
if spouse_id:
|
if spouse_handle:
|
||||||
spouse = database.get_person_from_handle(spouse_id)
|
spouse = database.get_person_from_handle(spouse_handle)
|
||||||
name = spouse.get_primary_name().get_name()
|
name = spouse.get_primary_name().get_name()
|
||||||
|
spouse_id = spouse.get_gramps_id()
|
||||||
else:
|
else:
|
||||||
name = _("unknown")
|
name = _("unknown")
|
||||||
spouses.append((spouse_id,name))
|
spouses.append((spouse_id,name))
|
||||||
|
@ -161,7 +161,7 @@ class SimpleBookTitleOptions(ReportOptions.ReportOptions):
|
|||||||
footer_string = self.options_dict['footer']
|
footer_string = self.options_dict['footer']
|
||||||
if not footer_string:
|
if not footer_string:
|
||||||
dateinfo = time.localtime(time.time())
|
dateinfo = time.localtime(time.time())
|
||||||
name = dialog.database.get_researcher().get_name()
|
name = dialog.db.get_researcher().get_name()
|
||||||
footer_string = _('Copyright %d %s') % (dateinfo[0], name)
|
footer_string = _('Copyright %d %s') % (dateinfo[0], name)
|
||||||
self.footer_entry = gtk.Entry()
|
self.footer_entry = gtk.Entry()
|
||||||
self.footer_entry.set_text(footer_string)
|
self.footer_entry.set_text(footer_string)
|
||||||
@ -186,9 +186,9 @@ class SimpleBookTitleOptions(ReportOptions.ReportOptions):
|
|||||||
preview_table.attach(self.obj_title,0,1,0,1,gtk.SHRINK|gtk.FILL,gtk.SHRINK|gtk.FILL)
|
preview_table.attach(self.obj_title,0,1,0,1,gtk.SHRINK|gtk.FILL,gtk.SHRINK|gtk.FILL)
|
||||||
|
|
||||||
select_obj_button = gtk.Button(_('From gallery...'))
|
select_obj_button = gtk.Button(_('From gallery...'))
|
||||||
select_obj_button.connect('clicked',self.select_obj,dialog.database)
|
select_obj_button.connect('clicked',self.select_obj,dialog.db)
|
||||||
select_file_button = gtk.Button(_('From file...'))
|
select_file_button = gtk.Button(_('From file...'))
|
||||||
select_file_button.connect('clicked',self.select_file,dialog.database)
|
select_file_button.connect('clicked',self.select_file,dialog.db)
|
||||||
select_table = gtk.Table(1,3)
|
select_table = gtk.Table(1,3)
|
||||||
select_table.set_col_spacings(10)
|
select_table.set_col_spacings(10)
|
||||||
select_table.attach(select_obj_button,
|
select_table.attach(select_obj_button,
|
||||||
@ -210,9 +210,9 @@ class SimpleBookTitleOptions(ReportOptions.ReportOptions):
|
|||||||
dialog.add_frame_option(_('Image'),_('Size'),self.size)
|
dialog.add_frame_option(_('Image'),_('Size'),self.size)
|
||||||
|
|
||||||
object_id = self.options_dict['imgid']
|
object_id = self.options_dict['imgid']
|
||||||
if object_id and dialog.database.get_object_from_gramps_id(object_id):
|
if object_id and dialog.db.get_object_from_gramps_id(object_id):
|
||||||
the_object = dialog.database.get_object_from_gramps_id(object_id)
|
the_object = dialog.db.get_object_from_gramps_id(object_id)
|
||||||
self.setup_object(dialog.database,the_object)
|
self.setup_object(dialog.db,the_object)
|
||||||
else:
|
else:
|
||||||
self.remove_obj_button.set_sensitive(False)
|
self.remove_obj_button.set_sensitive(False)
|
||||||
self.size.set_sensitive(False)
|
self.size.set_sensitive(False)
|
||||||
@ -250,15 +250,6 @@ class SimpleBookTitleOptions(ReportOptions.ReportOptions):
|
|||||||
self.obj_title.set_text(the_object.get_description())
|
self.obj_title.set_text(the_object.get_description())
|
||||||
icon_image = database.get_thumbnail_image(the_object.get_handle())
|
icon_image = database.get_thumbnail_image(the_object.get_handle())
|
||||||
self.preview.set_from_pixbuf(icon_image)
|
self.preview.set_from_pixbuf(icon_image)
|
||||||
# the_type = Utils.get_mime_description(the_object.get_mime_type())
|
|
||||||
# path = the_object.get_path()
|
|
||||||
# thumb_path = Utils.thumb_path(database.get_save_path(),the_object)
|
|
||||||
# pexists = os.path.exists(path)
|
|
||||||
# if pexists and os.path.exists(thumb_path):
|
|
||||||
# self.preview.set_from_pixbuf(gtk.gdk.pixbuf_new_from_file(thumb_path))
|
|
||||||
# else:
|
|
||||||
# icon_image = gtk.gdk.pixbuf_new_from_file(Utils.find_icon(the_type))
|
|
||||||
# self.preview.set_from_pixbuf(icon_image)
|
|
||||||
self.remove_obj_button.set_sensitive(gtk.TRUE)
|
self.remove_obj_button.set_sensitive(gtk.TRUE)
|
||||||
self.size.set_sensitive(gtk.TRUE)
|
self.size.set_sensitive(gtk.TRUE)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user