* src/plugins/SimpleBookTitle.py: Convert to new scheme.

* src/docgen/LPRDoc.py: Support photo alignments.
* src/Report.py: Fix interface creation order.


svn: r3883
This commit is contained in:
Alex Roitman 2005-01-08 05:54:49 +00:00
parent d9291bb183
commit 5b5d4d4094
4 changed files with 215 additions and 368 deletions

View File

@ -10,6 +10,10 @@
* src/plugins/BookReport.py: Import Plugins module. * src/plugins/BookReport.py: Import Plugins module.
* src/NameEdit.py (NameEditor.__init__): Typos. * src/NameEdit.py (NameEditor.__init__): Typos.
* src/plugins/SimpleBookTitle.py: Convert to new scheme.
* src/docgen/LPRDoc.py: Support photo alignments.
* src/Report.py: Fix interface creation order.
2005-01-07 Eero Tamminen <eerot@sf> 2005-01-07 Eero Tamminen <eerot@sf>
* src/Makefile.am: Added GrampsKeys.py and GrampsIniKeys.py so * src/Makefile.am: Added GrampsKeys.py and GrampsIniKeys.py so
that Gramps starts up after installation that Gramps starts up after installation

View File

@ -2,7 +2,7 @@
# Gramps - a GTK+/GNOME based genealogy program # Gramps - a GTK+/GNOME based genealogy program
# #
# Copyright (C) 2001 David R. Hampton # Copyright (C) 2001 David R. Hampton
# Copyright (C) 2001-2004 Donald N. Allingham # Copyright (C) 2001-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
@ -337,10 +337,6 @@ class BareReportDialog:
# self.window.set_response_sensitive(1,gtk.TRUE) # self.window.set_response_sensitive(1,gtk.TRUE)
self.window.set_resize_mode(0) self.window.set_resize_mode(0)
# Build the list of widgets that are used to extend the Options
# frame and to create other frames
self.add_user_options()
# Set up and run the dialog. These calls are not in top down # Set up and run the dialog. These calls are not in top down
# order when looking at the dialog box as there is some # order when looking at the dialog box as there is some
# interaction between the various frames. # interaction between the various frames.
@ -353,6 +349,11 @@ class BareReportDialog:
self.tbl.set_border_width(6) self.tbl.set_border_width(6)
self.col = 0 self.col = 0
self.window.vbox.add(self.tbl) self.window.vbox.add(self.tbl)
# Build the list of widgets that are used to extend the Options
# frame and to create other frames
self.add_user_options()
self.setup_center_person() self.setup_center_person()
self.setup_target_frame() self.setup_target_frame()
self.setup_format_frame() self.setup_format_frame()

View File

@ -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
# #
# Modifications and feature additions: # Modifications and feature additions:
# 2002 Donald A. Peterson # 2002 Donald A. Peterson
@ -49,7 +49,7 @@ if gnomeprint.Context.__dict__.has_key('grestore'):
support_photos = 1 support_photos = 1
else: else:
support_photos = 0 support_photos = 0
print "LPRDoc: Photos and rotated text (used in TimeChart)" print "LPRDoc: Photos and rotated text (used in FanChart)"
print " are not supported for direct printing." print " are not supported for direct printing."
print " Get gnome-python from CVS" print " Get gnome-python from CVS"
print " or wait for the next gnome-python release." print " or wait for the next gnome-python release."
@ -463,6 +463,12 @@ class GnomePrintPhoto:
""" """
return self.width return self.width
def get_alignment(self):
"""
Return the alignment of the photo.
"""
return self.alignment
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# LPRDoc class # LPRDoc class
@ -697,13 +703,13 @@ class LPRDoc(BaseDoc.BaseDoc):
self.right_margin - self.left_margin) self.right_margin - self.left_margin)
self.brand_new_page = 0 self.brand_new_page = 0
def write_photo(self,photo,x,y,width): def write_photo(self,photo,x,y,alloc_width):
""" """
Write the photo. Write the photo.
photo - GnomePrintPhoto instance photo - GnomePrintPhoto instance
x,y - coordinates to start at x,y - coordinates to start at
width - allocated width alloc_width - allocated width
""" """
self.brand_new_page = 0 self.brand_new_page = 0
@ -711,7 +717,7 @@ class LPRDoc(BaseDoc.BaseDoc):
if not support_photos: if not support_photos:
return (x,y) return (x,y)
# end FIXME # end FIXME
width = photo.get_width() width = photo.get_width()
height = photo.get_height() height = photo.get_height()
@ -720,8 +726,15 @@ class LPRDoc(BaseDoc.BaseDoc):
self.start_page() self.start_page()
y = self.y y = self.y
if photo.get_alignment() == 'center':
add_x = 0.5* (alloc_width - width)
elif photo.get_alignment() == 'right':
add_x = alloc_width - width
else:
add_x = 0
self.gpc.gsave() self.gpc.gsave()
self.gpc.translate(x,y-height) self.gpc.translate(x+add_x,y-height)
self.gpc.scale(width,height) self.gpc.scale(width,height)
if photo.get_has_alpha(): if photo.get_has_alpha():

View File

@ -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
@ -25,6 +25,15 @@
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
import os import os
import time
from gettext import gettext as _
#------------------------------------------------------------------------
#
# gtk
#
#------------------------------------------------------------------------
import gtk
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
@ -33,14 +42,11 @@ import os
#------------------------------------------------------------------------ #------------------------------------------------------------------------
import Report import Report
import BaseDoc import BaseDoc
import Errors
from QuestionDialog import ErrorDialog
from gettext import gettext as _
import SelectObject import SelectObject
import Utils import Utils
import AddMedia import AddMedia
import const
import gtk import ReportOptions
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
@ -49,36 +55,36 @@ import gtk
#------------------------------------------------------------------------ #------------------------------------------------------------------------
class SimpleBookTitle(Report.Report): class SimpleBookTitle(Report.Report):
def __init__(self,database, def __init__(self,database,person,options_class):
person,title_string,subtitle_string,object_handle,image_size, """
footer_string,doc,output,newpage=0): Creates SimpleBookTitle object that produces the report.
self.map = {}
self.database = database
self.start = person
self.title_string = title_string
self.object_handle = object_handle
self.image_size = image_size
self.subtitle_string = subtitle_string
self.footer_string = footer_string
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.
title - Title string.
subtitle - Subtitle string.
imgid - Gramps ID of the media object to use as an image.
imgsize - Size for the image.
footer - Footer string.
"""
Report.Report.__init__(self,database,person,options_class)
self.title_string = options_class.handler.options_dict['title']
self.image_size = options_class.handler.options_dict['imgsize']
self.subtitle_string = options_class.handler.options_dict['subtitle']
self.footer_string = options_class.handler.options_dict['footer']
self.object_id = options_class.handler.options_dict['imgid']
def write_report(self): def write_report(self):
if self.newpage:
self.doc.page_break()
self.doc.start_paragraph('SBT-Title') self.doc.start_paragraph('SBT-Title')
self.doc.write_text(self.title_string) self.doc.write_text(self.title_string)
self.doc.end_paragraph() self.doc.end_paragraph()
@ -87,9 +93,9 @@ class SimpleBookTitle(Report.Report):
self.doc.write_text(self.subtitle_string) self.doc.write_text(self.subtitle_string)
self.doc.end_paragraph() self.doc.end_paragraph()
if self.object_handle: if self.object_id:
object = self.database.get_object(self.object_handle) the_object = self.database.get_object_from_gramps_id(self.object_id)
name = object.get_path() name = the_object.get_path()
if self.image_size: if self.image_size:
image_size = self.image_size image_size = self.image_size
else: else:
@ -102,222 +108,87 @@ class SimpleBookTitle(Report.Report):
self.doc.write_text(self.footer_string) self.doc.write_text(self.footer_string)
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 Simple Boot Title report."""
font = BaseDoc.FontStyle()
font.set(face=BaseDoc.FONT_SANS_SERIF,size=16,bold=1,italic=1)
para = BaseDoc.ParagraphStyle()
para.set_font(font)
para.set_header_level(1)
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
para.set(pad=0.5)
para.set_description(_('The style used for the title of the page.'))
default_style.add_style("SBT-Title",para)
font = BaseDoc.FontStyle()
font.set(face=BaseDoc.FONT_SANS_SERIF,size=14,italic=1)
para = BaseDoc.ParagraphStyle()
para.set_font(font)
para.set_header_level(2)
para.set(pad=0.5)
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
para.set_description(_('The style used for the subtitle.'))
default_style.add_style("SBT-Subtitle",para)
font = BaseDoc.FontStyle()
font.set(face=BaseDoc.FONT_SANS_SERIF,size=10,italic=1)
para = BaseDoc.ParagraphStyle()
para.set_font(font)
para.set_header_level(2)
para.set(pad=0.5)
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
para.set_description(_('The style used for the footer.'))
default_style.add_style("SBT-Footer",para)
#-------------------------------------------------------------------------
#
# Define pre-set image sizes
#
#-------------------------------------------------------------------------
_sizes = (
( _('Fit page'), 0 ),
( _('%d cm') % 5, 5 ),
( _('%d cm') % 10, 10 ),
( _('%d cm') % 15, 15 ),
)
#-------------------------------------------------------------------------
#
# make_paper_menu
#
#-------------------------------------------------------------------------
def make_size_menu(main_menu,def_size_index=0):
index = 0
myMenu = gtk.Menu()
for size in _sizes:
name = size[0]
menuitem = gtk.MenuItem(name)
menuitem.show()
myMenu.append(menuitem)
if index == def_size_index:
myMenu.set_active(index)
index = index + 1
main_menu.set_menu(myMenu)
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# Set up sane defaults for the book_item #
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
_style_file = "simple_book_title.xml" class SimpleBookTitleOptions(ReportOptions.ReportOptions):
_style_name = "default"
_person_handle = "" """
_title_string = "" Defines options and provides handling interface.
_subtitle_string = "" """
_object_handle = ""
_size_index = 0
_footer_string = ""
_options = ( def __init__(self,name,person_id=None):
_person_handle, ReportOptions.ReportOptions.__init__(self,name,person_id)
_title_string,
_subtitle_string,
_object_handle,
_size_index,
_footer_string
)
def set_new_options(self):
# Options specific for this report
self.options_dict = {
'title' : _('Title of the Book'),
'subtitle' : _('Subtitle of the Book'),
'imgid' : '',
'imgsize' : 0.0,
'footer' : '',
}
self.options_help = {
'title' : ("=str","Title string for the report",
"Whatever String You Wish"),
'subtitle' : ("=str","Subtitle string for the report",
"Whatever String You Wish"),
'footer' : ("=str","Footer string for the report",
"Whatever String You Wish"),
'imgid' : ("=ID","Gramps ID of the media object to use as an image.",
"Valid GRAMPS ID of an image."),
'imgsize' : ("=num","Size of the image.",
["Floating point value (in cm)",
"0 (to fit the page)."],
False),
}
#------------------------------------------------------------------------ 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 SimpleBookTitleDialog(Report.BareReportDialog):
def __init__(self,database,person,opt,stl):
self.options = opt
self.db = database
if self.options[0]:
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)
if self.options[1]:
self.title_string = self.options[1]
else:
self.title_string = _('Title of the Book')
if self.options[2]:
self.subtitle_string = self.options[2]
else:
self.subtitle_string = _('Subtitle of the Book')
if self.options[3]:
self.object_handle = self.options[3]
else:
self.object_handle = ""
if self.options[4]:
self.size_index = int(self.options[4])
else:
self.size_index = 0
if self.options[5]:
self.footer_string = self.options[5]
else:
import time
dateinfo = time.localtime(time.time())
name = self.db.get_researcher().get_name()
self.footer_string = _('Copyright %d %s') % (dateinfo[0], name)
self.title_entry.set_text(self.title_string)
self.subtitle_entry.set_text(self.subtitle_string)
self.footer_entry.set_text(self.footer_string)
self.size_menu.set_history(self.size_index)
if self.object_handle:
object = self.db.get_object(self.object_handle)
self.obj_title.set_text(object.get_description())
the_type = Utils.get_mime_description(object.get_mime_type())
path = object.get_path()
thumb_path = Utils.thumb_path(self.db.get_save_path(),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.size_menu.set_sensitive(gtk.TRUE)
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" % (_("Title Page"))
def get_header(self, name):
"""The header line at the top of the dialog contents"""
return _("Title Page 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.title_entry = gtk.Entry() self.title_entry = gtk.Entry()
self.title_entry.set_text(self.options_dict['title'])
self.subtitle_entry = gtk.Entry() self.subtitle_entry = gtk.Entry()
self.subtitle_entry.set_text(self.options_dict['subtitle'])
footer_string = self.options_dict['footer']
if not footer_string:
dateinfo = time.localtime(time.time())
name = dialog.database.get_researcher().get_name()
footer_string = _('Copyright %d %s') % (dateinfo[0], name)
self.footer_entry = gtk.Entry() self.footer_entry = gtk.Entry()
self.add_frame_option(_('Text'),_('Title'),self.title_entry) self.footer_entry.set_text(footer_string)
self.add_frame_option(_('Text'),_('Subtitle'),self.subtitle_entry)
self.add_frame_option(_('Text'),_('Footer'),self.footer_entry) dialog.add_frame_option(_('Text'),_('Title'),self.title_entry)
dialog.add_frame_option(_('Text'),_('Subtitle'),self.subtitle_entry)
dialog.add_frame_option(_('Text'),_('Footer'),self.footer_entry)
frame = gtk.Frame() frame = gtk.Frame()
frame.set_size_request(96,96) frame.set_size_request(96,96)
self.preview = gtk.Image() self.preview = gtk.Image()
frame.add(self.preview) frame.add(self.preview)
self.obj_title = gtk.Label('') self.obj_title = gtk.Label('')
self.remove_obj_button = gtk.Button(None,gtk.STOCK_REMOVE) self.remove_obj_button = gtk.Button(None,gtk.STOCK_REMOVE)
self.remove_obj_button.connect('clicked',self.remove_obj) self.remove_obj_button.connect('clicked',self.remove_obj)
self.remove_obj_button.set_sensitive(gtk.FALSE)
preview_table = gtk.Table(2,1) preview_table = gtk.Table(2,1)
preview_table.set_row_spacings(10) preview_table.set_row_spacings(10)
preview_table.attach(frame,0,1,1,2,gtk.SHRINK|gtk.FILL,gtk.SHRINK|gtk.FILL) preview_table.attach(frame,0,1,1,2,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) 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) select_obj_button.connect('clicked',self.select_obj,dialog.database)
select_file_button = gtk.Button(_('From file...')) select_file_button = gtk.Button(_('From file...'))
select_file_button.connect('clicked',self.select_file) select_file_button.connect('clicked',self.select_file,dialog.database)
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,
@ -327,155 +198,113 @@ class SimpleBookTitleDialog(Report.BareReportDialog):
select_table.attach(self.remove_obj_button, select_table.attach(self.remove_obj_button,
2,3,0,1,gtk.SHRINK|gtk.FILL,gtk.SHRINK|gtk.FILL) 2,3,0,1,gtk.SHRINK|gtk.FILL,gtk.SHRINK|gtk.FILL)
self.size_menu = gtk.OptionMenu() self.size = gtk.SpinButton()
make_size_menu(self.size_menu) self.size.set_digits(2)
self.size_menu.set_sensitive(gtk.FALSE) self.size.set_increments(1,2)
self.size.set_range(0,20)
self.size.set_numeric(gtk.TRUE)
self.size.set_value(self.options_dict['imgsize'])
self.add_frame_option(_('Image'),_('Preview'),preview_table) dialog.add_frame_option(_('Image'),_('Preview'),preview_table)
self.add_frame_option(_('Image'),_('Select'),select_table) dialog.add_frame_option(_('Image'),_('Select'),select_table)
self.add_frame_option(_('Image'),_('Size'),self.size_menu) dialog.add_frame_option(_('Image'),_('Size'),self.size)
def parse_report_options_frame(self): object_id = self.options_dict['imgid']
"""Parse the report options frame of the dialog. Save the user selected choices for later use.""" if object_id and dialog.database.get_object_from_gramps_id(object_id):
the_object = dialog.database.get_object_from_gramps_id(object_id)
self.setup_object(dialog.database,the_object)
else:
self.remove_obj_button.set_sensitive(False)
self.size.set_sensitive(False)
# 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.
# get values from the widgets """
self.title_string = unicode(self.title_entry.get_text()) self.options_dict['title'] = unicode(self.title_entry.get_text())
self.subtitle_string = unicode(self.subtitle_entry.get_text()) self.options_dict['subtitle'] = unicode(self.subtitle_entry.get_text())
self.footer_string = unicode(self.footer_entry.get_text()) self.options_dict['footer'] = unicode(self.footer_entry.get_text())
self.size_index = self.size_menu.get_history() self.options_dict['imgsize'] = self.size.get_value()
def on_cancel(self, obj):
pass
def remove_obj(self, obj): def remove_obj(self, obj):
self.object_handle = "" self.options_dict['imgid'] = ""
self.obj_title.set_text('') self.obj_title.set_text('')
self.preview.set_from_pixbuf(None) self.preview.set_from_pixbuf(None)
self.remove_obj_button.set_sensitive(gtk.FALSE) self.remove_obj_button.set_sensitive(gtk.FALSE)
self.size_menu.set_sensitive(gtk.FALSE) self.size.set_sensitive(gtk.FALSE)
def select_obj(self, obj): def select_obj(self,obj,database):
s_o = SelectObject.SelectObject(self.db,_("Select an Object")) s_o = SelectObject.SelectObject(database,_("Select an Object"))
object = s_o.run() the_object = s_o.run()
if object: self.setup_object(database,the_object)
self.object_handle = object.get_handle()
else: def select_file(self,obj,database):
a_o = AddMedia.AddMediaObject(database)
the_object = a_o.run()
self.setup_object(database,the_object)
def setup_object(self,database,the_object):
if not the_object:
return return
self.obj_title.set_text(object.get_description()) self.options_dict['imgid'] = the_object.get_gramps_id()
the_type = Utils.get_mime_description(object.get_mime_type()) self.obj_title.set_text(the_object.get_description())
path = object.get_path() icon_image = database.get_thumbnail_image(the_object.get_handle())
thumb_path = Utils.thumb_path(self.db.get_save_path(),object) self.preview.set_from_pixbuf(icon_image)
pexists = os.path.exists(path) # the_type = Utils.get_mime_description(the_object.get_mime_type())
if pexists and os.path.exists(thumb_path): # path = the_object.get_path()
self.preview.set_from_pixbuf(gtk.gdk.pixbuf_new_from_file(thumb_path)) # thumb_path = Utils.thumb_path(database.get_save_path(),the_object)
else: # pexists = os.path.exists(path)
icon_image = gtk.gdk.pixbuf_new_from_file(Utils.find_icon(the_type)) # if pexists and os.path.exists(thumb_path):
self.preview.set_from_pixbuf(icon_image) # 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_menu.set_sensitive(gtk.TRUE) self.size.set_sensitive(gtk.TRUE)
def select_file(self, obj): def make_default_style(self,default_style):
a_o = AddMedia.AddMediaObject(self.db) """Make the default output style for the Simple Boot Title report."""
object = a_o.run() font = BaseDoc.FontStyle()
if object: font.set(face=BaseDoc.FONT_SANS_SERIF,size=16,bold=1,italic=1)
self.object_handle = object.get_handle() para = BaseDoc.ParagraphStyle()
else: para.set_font(font)
return para.set_header_level(1)
self.obj_title.set_text(object.get_description()) para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
the_type = Utils.get_mime_description(object.get_mime_type()) para.set(pad=0.5)
path = object.get_path() para.set_description(_('The style used for the title of the page.'))
thumb_path = Utils.thumb_path(self.db.get_save_path(),object) default_style.add_style("SBT-Title",para)
pexists = os.path.exists(path)
if pexists and os.path.exists(thumb_path): font = BaseDoc.FontStyle()
self.preview.set_from_pixbuf(gtk.gdk.pixbuf_new_from_file(thumb_path)) font.set(face=BaseDoc.FONT_SANS_SERIF,size=14,italic=1)
else: para = BaseDoc.ParagraphStyle()
icon_image = gtk.gdk.pixbuf_new_from_file(Utils.find_icon(the_type)) para.set_font(font)
self.preview.set_from_pixbuf(icon_image) para.set_header_level(2)
self.remove_obj_button.set_sensitive(gtk.TRUE) para.set(pad=0.5)
self.size_menu.set_sensitive(gtk.TRUE) para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
para.set_description(_('The style used for the subtitle.'))
default_style.add_style("SBT-Subtitle",para)
def on_ok_clicked(self, obj): font = BaseDoc.FontStyle()
"""The user is satisfied with the dialog choices. Parse all options font.set(face=BaseDoc.FONT_SANS_SERIF,size=10,italic=1)
and close the window.""" para = BaseDoc.ParagraphStyle()
para.set_font(font)
# Preparation para.set_header_level(2)
self.parse_style_frame() para.set(pad=0.5)
self.parse_report_options_frame() para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
para.set_description(_('The style used for the footer.'))
if self.new_person: default_style.add_style("SBT-Footer",para)
self.person = self.new_person
self.options = ( self.person.get_handle(),
self.title_string, self.subtitle_string,
self.object_handle, self.size_index, self.footer_string )
self.style_name = self.selected_style.get_name()
#------------------------------------------------------------------------
#
# Function to write Book Item
#
#------------------------------------------------------------------------
def write_book_item(database,person,doc,options,newpage=0):
"""Write the Title Page using options set.
All user dialog has already been handled and the output file opened."""
try:
if options[0]:
person = database.get_person_from_handle(options[0])
if options[1]:
title_string = options[1]
else:
title_string = _('Title of the Book')
if options[2]:
subtitle_string = options[2]
else:
subtitle_string = _('Subtitle of the Book')
if options[3]:
object_handle = options[3]
else:
object_handle = ""
if options[4]:
size_index = int(options[4])
else:
size_index = 0
size = _sizes[size_index][1]
if options[5]:
footer_string = options[5]
else:
import time
dateinfo = time.localtime(time.time())
name = database.get_researcher().get_name()
footer_string = _('Copyright %d %s') % (dateinfo[0], name)
return SimpleBookTitle(database, person,
title_string, subtitle_string, object_handle, size,
footer_string, 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 = 'simple_book_title',
register_book_item( category = const.CATEGORY_TEXT,
_("Title Page"), report_class = SimpleBookTitle,
_("Title"), options_class = SimpleBookTitleOptions,
SimpleBookTitleDialog, modes = Report.MODE_BKI,
write_book_item, translated_name = _("Title Page"),
_options, )
_style_name,
_style_file,
_make_default_style
)