Better traceback checking, improved documentation
svn: r1055
This commit is contained in:
parent
331fb9ecda
commit
dbcbc1428e
@ -75,6 +75,7 @@ class EditPerson:
|
|||||||
def __init__(self,person,db,callback=None):
|
def __init__(self,person,db,callback=None):
|
||||||
"""Creates an edit window. Associates a person with the window."""
|
"""Creates an edit window. Associates a person with the window."""
|
||||||
self.person = person
|
self.person = person
|
||||||
|
print 1/0
|
||||||
self.original_id = person.getId()
|
self.original_id = person.getId()
|
||||||
self.db = db
|
self.db = db
|
||||||
self.callback = callback
|
self.callback = callback
|
||||||
|
@ -65,7 +65,7 @@ trans: po/template.po
|
|||||||
po/template.po: *.py *.glade */*.py */*.glade
|
po/template.po: *.py *.glade */*.py */*.glade
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm -f core *.pyo *.pyc *.bak *~
|
-rm -f core *.pyo *.pyc *.bak *.so *~
|
||||||
|
|
||||||
# Add PYTHON suffix rules to make's vocabulary
|
# Add PYTHON suffix rules to make's vocabulary
|
||||||
.SUFFIXES: .py .pyo
|
.SUFFIXES: .py .pyo
|
||||||
|
497
src/TextDoc.py
497
src/TextDoc.py
@ -18,12 +18,25 @@
|
|||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#
|
#
|
||||||
|
|
||||||
|
"""
|
||||||
|
Provides base interface to text based documents. Specific document
|
||||||
|
interfaces should be derived from the core classes.
|
||||||
|
"""
|
||||||
|
|
||||||
|
__author__ = "Donald N. Allingham"
|
||||||
|
__version__ = "Revision:$"
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# standard python modules
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
import string
|
import string
|
||||||
import os
|
import os
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Try to abstract SAX1 from SAX2
|
# SAX interface
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
try:
|
try:
|
||||||
@ -31,6 +44,11 @@ try:
|
|||||||
except:
|
except:
|
||||||
from _xmlplus.sax import make_parser,handler,SAXParseException
|
from _xmlplus.sax import make_parser,handler,SAXParseException
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# constants
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
FONT_SANS_SERIF = 0
|
FONT_SANS_SERIF = 0
|
||||||
FONT_SERIF = 1
|
FONT_SERIF = 1
|
||||||
|
|
||||||
@ -42,7 +60,16 @@ PARA_ALIGN_LEFT = 1
|
|||||||
PARA_ALIGN_RIGHT = 2
|
PARA_ALIGN_RIGHT = 2
|
||||||
PARA_ALIGN_JUSTIFY= 3
|
PARA_ALIGN_JUSTIFY= 3
|
||||||
|
|
||||||
|
#------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# cnv2color
|
||||||
|
#
|
||||||
|
#------------------------------------------------------------------------
|
||||||
def cnv2color(text):
|
def cnv2color(text):
|
||||||
|
"""
|
||||||
|
converts a hex value in the form of #XXXXXX into a tuple of integers
|
||||||
|
representing the RGB values
|
||||||
|
"""
|
||||||
c0 = string.atoi(text[1:3],16)
|
c0 = string.atoi(text[1:3],16)
|
||||||
c1 = string.atoi(text[3:5],16)
|
c1 = string.atoi(text[3:5],16)
|
||||||
c2 = string.atoi(text[5:7],16)
|
c2 = string.atoi(text[5:7],16)
|
||||||
@ -50,44 +77,84 @@ def cnv2color(text):
|
|||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
# PaperStyle
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class PaperStyle:
|
class PaperStyle:
|
||||||
|
"""
|
||||||
|
Defines the dimensions of a sheet of paper. All dimensions are in
|
||||||
|
centimeters.
|
||||||
|
"""
|
||||||
def __init__(self,name,height,width):
|
def __init__(self,name,height,width):
|
||||||
|
"""
|
||||||
|
Creates a new paper style with.
|
||||||
|
|
||||||
|
name - Name of the new style
|
||||||
|
height - page height in centimeters
|
||||||
|
width - page width in centimeters
|
||||||
|
"""
|
||||||
self.name = name
|
self.name = name
|
||||||
self.orientation = PAPER_PORTRAIT
|
self.orientation = PAPER_PORTRAIT
|
||||||
self.height = height
|
self.height = height
|
||||||
self.width = width
|
self.width = width
|
||||||
|
|
||||||
def get_name(self):
|
def get_name(self):
|
||||||
|
"Returns the name of the paper style"
|
||||||
return self.name
|
return self.name
|
||||||
|
|
||||||
def get_orientation(self):
|
def get_orientation(self):
|
||||||
|
"Returns the page orientation (PAPER_PORTRAIT or PAPER_LANDSCAPE)"
|
||||||
return self.orientation
|
return self.orientation
|
||||||
|
|
||||||
def set_orientation(self,val):
|
def set_orientation(self,val):
|
||||||
|
"""
|
||||||
|
Sets the page orientation.
|
||||||
|
|
||||||
|
val - new orientation, should be either PAPER_PORTRAIT or
|
||||||
|
PAPER_LANDSCAPE
|
||||||
|
"""
|
||||||
self.orientation = val
|
self.orientation = val
|
||||||
|
|
||||||
def get_height(self):
|
def get_height(self):
|
||||||
|
"Returns the page height in cm"
|
||||||
return self.height
|
return self.height
|
||||||
|
|
||||||
def get_width(self):
|
def get_width(self):
|
||||||
|
"Returns the page width in cm"
|
||||||
return self.width
|
return self.width
|
||||||
|
|
||||||
def get_height_inches(self):
|
def get_height_inches(self):
|
||||||
|
"Returns the page height in inches"
|
||||||
return self.height / 2.54
|
return self.height / 2.54
|
||||||
|
|
||||||
def get_width_inches(self):
|
def get_width_inches(self):
|
||||||
|
"Returns the page width in inches"
|
||||||
return self.width / 2.54
|
return self.width / 2.54
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
# FontStyle
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class FontStyle:
|
class FontStyle:
|
||||||
|
"""
|
||||||
|
Defines a font style. Controls the font face, size, color, and
|
||||||
|
attributes. In order to remain generic, the only font faces available
|
||||||
|
are FONT_SERIF and FONT_SANS_SERIF. Document formatters should convert
|
||||||
|
these to the appropriate fonts for the target format.
|
||||||
|
|
||||||
|
The FontStyle represents the desired characteristics. There are no
|
||||||
|
guarentees that the document format generator will be able implement
|
||||||
|
all or any of the characteristics.
|
||||||
|
"""
|
||||||
|
|
||||||
def __init__(self, style=None):
|
def __init__(self, style=None):
|
||||||
|
"""
|
||||||
|
Creates a new FontStyle object, accepting the default values.
|
||||||
|
|
||||||
|
style - if specified, initializes the FontStyle from the passed
|
||||||
|
FontStyle instead of using the defaults.
|
||||||
|
"""
|
||||||
if style:
|
if style:
|
||||||
self.face = style.face
|
self.face = style.face
|
||||||
self.size = style.size
|
self.size = style.size
|
||||||
@ -104,6 +171,18 @@ class FontStyle:
|
|||||||
self.under = 0
|
self.under = 0
|
||||||
|
|
||||||
def set(self,face=None,size=None,italic=None,bold=None,underline=None,color=None):
|
def set(self,face=None,size=None,italic=None,bold=None,underline=None,color=None):
|
||||||
|
"""
|
||||||
|
Sets font characteristics.
|
||||||
|
|
||||||
|
face - font type face, either FONT_SERIF or FONT_SANS_SERIF
|
||||||
|
size - type face size in points
|
||||||
|
italic - 1 enables italics, 0 disables italics
|
||||||
|
bold - 1 enables bold face, 0 disables bold face
|
||||||
|
underline - 1 enables underline, 0 disables underline
|
||||||
|
color - an RGB color representation in the form of three integers
|
||||||
|
in the range of 0-255 represeting the red, green, and blue
|
||||||
|
components of a color.
|
||||||
|
"""
|
||||||
if face != None:
|
if face != None:
|
||||||
self.set_type_face(face)
|
self.set_type_face(face)
|
||||||
if size != None:
|
if size != None:
|
||||||
@ -167,11 +246,24 @@ class FontStyle:
|
|||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
# TableStyle
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class TableStyle:
|
class TableStyle:
|
||||||
|
"""
|
||||||
|
Specifies the style or format of a table. The TableStyle contains the
|
||||||
|
characteristics of table width (in percentage of the full width), the
|
||||||
|
number of columns, and the width of each column as a percentage of the
|
||||||
|
width of the table.
|
||||||
|
"""
|
||||||
def __init__(self,obj=None):
|
def __init__(self,obj=None):
|
||||||
|
"""
|
||||||
|
Creates a new TableStyle object, with the values initialized to
|
||||||
|
empty, with allocating space for up to 100 columns.
|
||||||
|
|
||||||
|
obj - if not None, then the object created gets is attributes from
|
||||||
|
the passed object instead of being initialized to empty.
|
||||||
|
"""
|
||||||
if obj:
|
if obj:
|
||||||
self.width = obj.width
|
self.width = obj.width
|
||||||
self.columns = obj.columns
|
self.columns = obj.columns
|
||||||
@ -182,35 +274,67 @@ class TableStyle:
|
|||||||
self.colwid = [ 0 ] * 100
|
self.colwid = [ 0 ] * 100
|
||||||
|
|
||||||
def set_width(self,width):
|
def set_width(self,width):
|
||||||
|
"""Sets the width of the table in terms of percent of the available
|
||||||
|
width"""
|
||||||
self.width = width
|
self.width = width
|
||||||
|
|
||||||
def get_width(self):
|
def get_width(self):
|
||||||
|
"Returns the specified width as a percentage of the available space"
|
||||||
return self.width
|
return self.width
|
||||||
|
|
||||||
def set_columns(self,columns):
|
def set_columns(self,columns):
|
||||||
|
"""Sets the number of columns.
|
||||||
|
|
||||||
|
columns - number of columns that should be used.
|
||||||
|
"""
|
||||||
self.columns = columns
|
self.columns = columns
|
||||||
|
|
||||||
def get_columns(self):
|
def get_columns(self):
|
||||||
|
"Returns the number of columns"
|
||||||
return self.columns
|
return self.columns
|
||||||
|
|
||||||
def set_column_widths(self, list):
|
def set_column_widths(self, list):
|
||||||
|
"""Sets the width of all the columns at once, taking the percentages
|
||||||
|
from the passed list.
|
||||||
|
"""
|
||||||
self.columns = len(list)
|
self.columns = len(list)
|
||||||
for i in range(self.columns):
|
for i in range(self.columns):
|
||||||
self.colwid[i] = list[i]
|
self.colwid[i] = list[i]
|
||||||
|
|
||||||
def set_column_width(self,index,width):
|
def set_column_width(self,index,width):
|
||||||
|
"""Sets the width of a specified column to the specified width.
|
||||||
|
|
||||||
|
index - column being set (index starts at 0)
|
||||||
|
width - percentage of the table width assigned to the column
|
||||||
|
"""
|
||||||
self.colwid[index] = width
|
self.colwid[index] = width
|
||||||
|
|
||||||
def get_column_width(self,index):
|
def get_column_width(self,index):
|
||||||
|
"""
|
||||||
|
Returns the column width of the specified column as a percentage of
|
||||||
|
the entire table width.
|
||||||
|
|
||||||
|
index - column to return (index starts at 0)
|
||||||
|
"""
|
||||||
return self.colwid[index]
|
return self.colwid[index]
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
# TableCellStyle
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class TableCellStyle:
|
class TableCellStyle:
|
||||||
|
"""
|
||||||
|
Defines the style of a particular table cell. Characteristics are:
|
||||||
|
right border, left border, top border, bottom border, and padding.
|
||||||
|
"""
|
||||||
def __init__(self,obj=None):
|
def __init__(self,obj=None):
|
||||||
|
"""
|
||||||
|
Creates a new TableCellStyle instance.
|
||||||
|
|
||||||
|
obj - if not None, specifies that the values should be copied from
|
||||||
|
the passed object instead of being initialized to empty.
|
||||||
|
"""
|
||||||
if obj:
|
if obj:
|
||||||
self.rborder = obj.rborder
|
self.rborder = obj.rborder
|
||||||
self.lborder = obj.lborder
|
self.lborder = obj.lborder
|
||||||
@ -227,36 +351,62 @@ class TableCellStyle:
|
|||||||
self.longlist = 0
|
self.longlist = 0
|
||||||
|
|
||||||
def set_padding(self,val):
|
def set_padding(self,val):
|
||||||
|
"Returns the cell padding in centimeters"
|
||||||
self.padding = val
|
self.padding = val
|
||||||
|
|
||||||
def set_right_border(self,val):
|
def set_right_border(self,val):
|
||||||
|
"""
|
||||||
|
Defines if a right border in used
|
||||||
|
|
||||||
|
val - if 1, a right border is used, if 0, it is not
|
||||||
|
"""
|
||||||
self.rborder = val
|
self.rborder = val
|
||||||
|
|
||||||
def set_left_border(self,val):
|
def set_left_border(self,val):
|
||||||
|
"""
|
||||||
|
Defines if a left border in used
|
||||||
|
|
||||||
|
val - if 1, a left border is used, if 0, it is not
|
||||||
|
"""
|
||||||
self.lborder = val
|
self.lborder = val
|
||||||
|
|
||||||
def set_top_border(self,val):
|
def set_top_border(self,val):
|
||||||
|
"""
|
||||||
|
Defines if a top border in used
|
||||||
|
|
||||||
|
val - if 1, a top border is used, if 0, it is not
|
||||||
|
"""
|
||||||
self.tborder = val
|
self.tborder = val
|
||||||
|
|
||||||
def set_bottom_border(self,val):
|
def set_bottom_border(self,val):
|
||||||
|
"""
|
||||||
|
Defines if a bottom border in used
|
||||||
|
|
||||||
|
val - if 1, a bottom border is used, if 0, it is not
|
||||||
|
"""
|
||||||
self.bborder = val
|
self.bborder = val
|
||||||
|
|
||||||
def set_longlist(self,val):
|
def set_longlist(self,val):
|
||||||
self.longlist = val
|
self.longlist = val
|
||||||
|
|
||||||
def get_padding(self):
|
def get_padding(self):
|
||||||
|
"Returns the cell padding in centimeters"
|
||||||
return self.padding
|
return self.padding
|
||||||
|
|
||||||
def get_right_border(self):
|
def get_right_border(self):
|
||||||
|
"Returns 1 if a right border is requested"
|
||||||
return self.rborder
|
return self.rborder
|
||||||
|
|
||||||
def get_left_border(self):
|
def get_left_border(self):
|
||||||
|
"Returns 1 if a left border is requested"
|
||||||
return self.lborder
|
return self.lborder
|
||||||
|
|
||||||
def get_top_border(self):
|
def get_top_border(self):
|
||||||
|
"Returns 1 if a top border is requested"
|
||||||
return self.tborder
|
return self.tborder
|
||||||
|
|
||||||
def get_bottom_border(self):
|
def get_bottom_border(self):
|
||||||
|
"Returns 1 if a bottom border is requested"
|
||||||
return self.bborder
|
return self.bborder
|
||||||
|
|
||||||
def get_longlist(self):
|
def get_longlist(self):
|
||||||
@ -264,24 +414,33 @@ class TableCellStyle:
|
|||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
# ParagraphStyle
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class ParagraphStyle:
|
class ParagraphStyle:
|
||||||
def __init__(self,p=None):
|
"""
|
||||||
if p:
|
Defines the characteristics of a paragraph. The characteristics are:
|
||||||
self.font = FontStyle(p.font)
|
font (a FontStyle instance), right margin, left margin, first indent,
|
||||||
self.rmargin = p.rmargin
|
alignment, level, top border, bottom border, right border, left
|
||||||
self.lmargin = p.lmargin
|
border, padding, and background color.
|
||||||
self.first_indent = p.first_indent
|
|
||||||
self.align = p.align
|
source - if not None, then the ParagraphStyle is created using the
|
||||||
self.level = p.level
|
values of the source instead of the default values.
|
||||||
self.top_border = p.top_border
|
"""
|
||||||
self.bottom_border = p.bottom_border
|
def __init__(self,source=None):
|
||||||
self.right_border = p.right_border
|
if source:
|
||||||
self.left_border = p.left_border
|
self.font = FontStyle(source.font)
|
||||||
self.pad = p.pad
|
self.rmargin = source.rmargin
|
||||||
self.bgcolor = p.bgcolor
|
self.lmargin = source.lmargin
|
||||||
|
self.first_indent = source.first_indent
|
||||||
|
self.align = source.align
|
||||||
|
self.level = source.level
|
||||||
|
self.top_border = source.top_border
|
||||||
|
self.bottom_border = source.bottom_border
|
||||||
|
self.right_border = source.right_border
|
||||||
|
self.left_border = source.left_border
|
||||||
|
self.pad = source.pad
|
||||||
|
self.bgcolor = source.bgcolor
|
||||||
else:
|
else:
|
||||||
self.font = FontStyle()
|
self.font = FontStyle()
|
||||||
self.rmargin = 0
|
self.rmargin = 0
|
||||||
@ -296,9 +455,25 @@ class ParagraphStyle:
|
|||||||
self.pad = 0
|
self.pad = 0
|
||||||
self.bgcolor = (255,255,255)
|
self.bgcolor = (255,255,255)
|
||||||
|
|
||||||
def set(self,rmargin=None,lmargin=None,first_indent=None,align=None,\
|
def set(self,rmargin=None,lmargin=None,first_indent=None,align=None,
|
||||||
tborder=None,bborder=None,rborder=None,lborder=None,pad=None,
|
tborder=None,bborder=None,rborder=None,lborder=None,pad=None,
|
||||||
bgcolor=None,font=None):
|
bgcolor=None,font=None):
|
||||||
|
"""
|
||||||
|
Allows the values of the object to be set.
|
||||||
|
|
||||||
|
rmargin - right margin in centimeters
|
||||||
|
lmargin - left margin in centimeters
|
||||||
|
first_indent - first line indent in centimeters
|
||||||
|
align - alignment type (PARA_ALIGN_LEFT, PARA_ALIGN_RIGHT,
|
||||||
|
PARA_ALIGN_CENTER, or PARA_ALIGN_JUSTIFY)
|
||||||
|
tborder - non zero indicates that a top border should be used
|
||||||
|
bborder - non zero indicates that a bottom border should be used
|
||||||
|
rborder - non zero indicates that a right border should be used
|
||||||
|
lborder - non zero indicates that a left border should be used
|
||||||
|
pad - padding in centimeters
|
||||||
|
bgcolor - background color of the paragraph as an RGB tuple.
|
||||||
|
font - FontStyle instance that defines the font
|
||||||
|
"""
|
||||||
if font != None:
|
if font != None:
|
||||||
self.font = FontStyle(font)
|
self.font = FontStyle(font)
|
||||||
if pad != None:
|
if pad != None:
|
||||||
@ -323,60 +498,124 @@ class ParagraphStyle:
|
|||||||
self.set_first_indent(first_indent)
|
self.set_first_indent(first_indent)
|
||||||
|
|
||||||
def set_header_level(self,level):
|
def set_header_level(self,level):
|
||||||
|
"""
|
||||||
|
Sets the header level for the paragraph. This is useful for
|
||||||
|
numbered paragraphs. A value of 1 indicates a header level
|
||||||
|
format of X, a value of two implies X.X, etc. A value of zero
|
||||||
|
means no header level.
|
||||||
|
"""
|
||||||
self.level = level
|
self.level = level
|
||||||
|
|
||||||
def get_header_level(self):
|
def get_header_level(self):
|
||||||
|
"Returns the header level of the paragraph"
|
||||||
return self.level
|
return self.level
|
||||||
|
|
||||||
def set_font(self,font):
|
def set_font(self,font):
|
||||||
|
"""
|
||||||
|
Sets the font style of the paragraph.
|
||||||
|
|
||||||
|
font - FontStyle object containing the font definition to use.
|
||||||
|
"""
|
||||||
self.font = FontStyle(font)
|
self.font = FontStyle(font)
|
||||||
|
|
||||||
def get_font(self):
|
def get_font(self):
|
||||||
|
"Returns the FontStyle of the paragraph"
|
||||||
return self.font
|
return self.font
|
||||||
|
|
||||||
def set_padding(self,val):
|
def set_padding(self,val):
|
||||||
|
"""
|
||||||
|
Sets the paragraph padding in centimeters
|
||||||
|
|
||||||
|
val - floating point value indicating the padding in centimeters
|
||||||
|
"""
|
||||||
self.pad = val
|
self.pad = val
|
||||||
|
|
||||||
def get_padding(self):
|
def get_padding(self):
|
||||||
|
"""Returns a the padding of the paragraph"""
|
||||||
return self.pad
|
return self.pad
|
||||||
|
|
||||||
def set_top_border(self,val):
|
def set_top_border(self,val):
|
||||||
|
"""
|
||||||
|
Sets the presence or absence of top border.
|
||||||
|
|
||||||
|
val - 1 indicates a border should be used, 0 indicates no border.
|
||||||
|
"""
|
||||||
self.top_border = val
|
self.top_border = val
|
||||||
|
|
||||||
def get_top_border(self):
|
def get_top_border(self):
|
||||||
|
"Returns 1 if a top border is specified"
|
||||||
return self.top_border
|
return self.top_border
|
||||||
|
|
||||||
def set_bottom_border(self,val):
|
def set_bottom_border(self,val):
|
||||||
|
"""
|
||||||
|
Sets the presence or absence of bottom border.
|
||||||
|
|
||||||
|
val - 1 indicates a border should be used, 0 indicates no border.
|
||||||
|
"""
|
||||||
self.bottom_border = val
|
self.bottom_border = val
|
||||||
|
|
||||||
def get_bottom_border(self):
|
def get_bottom_border(self):
|
||||||
|
"Returns 1 if a bottom border is specified"
|
||||||
return self.bottom_border
|
return self.bottom_border
|
||||||
|
|
||||||
def set_left_border(self,val):
|
def set_left_border(self,val):
|
||||||
|
"""
|
||||||
|
Sets the presence or absence of left border.
|
||||||
|
|
||||||
|
val - 1 indicates a border should be used, 0 indicates no border.
|
||||||
|
"""
|
||||||
self.left_border = val
|
self.left_border = val
|
||||||
|
|
||||||
def get_background_color(self):
|
|
||||||
return self.bgcolor
|
|
||||||
|
|
||||||
def set_background_color(self,color):
|
|
||||||
self.bgcolor = color
|
|
||||||
|
|
||||||
def get_left_border(self):
|
def get_left_border(self):
|
||||||
|
"Returns 1 if a left border is specified"
|
||||||
return self.left_border
|
return self.left_border
|
||||||
|
|
||||||
def set_right_border(self,val):
|
def set_right_border(self,val):
|
||||||
|
"""
|
||||||
|
Sets the presence or absence of rigth border.
|
||||||
|
|
||||||
|
val - 1 indicates a border should be used, 0 indicates no border.
|
||||||
|
"""
|
||||||
self.right_border = val
|
self.right_border = val
|
||||||
|
|
||||||
def get_right_border(self):
|
def get_right_border(self):
|
||||||
|
"Returns 1 if a right border is specified"
|
||||||
return self.right_border
|
return self.right_border
|
||||||
|
|
||||||
|
def get_background_color(self):
|
||||||
|
"""
|
||||||
|
Returns a tuple indicating the RGB components of the background
|
||||||
|
color
|
||||||
|
"""
|
||||||
|
return self.bgcolor
|
||||||
|
|
||||||
|
def set_background_color(self,color):
|
||||||
|
"""
|
||||||
|
Sets the background color of the paragraph.
|
||||||
|
|
||||||
|
color - tuple representing the RGB components of a color (0,0,0)
|
||||||
|
to (255,255,255)
|
||||||
|
"""
|
||||||
|
self.bgcolor = color
|
||||||
|
|
||||||
def set_alignment(self,align):
|
def set_alignment(self,align):
|
||||||
|
"""
|
||||||
|
Sets the pargraph alignment.
|
||||||
|
|
||||||
|
align - PARA_ALIGN_LEFT, PARA_ALIGN_RIGHT, PARA_ALIGN_CENTER, or
|
||||||
|
PARA_ALIGN_JUSTIFY
|
||||||
|
"""
|
||||||
self.align = align
|
self.align = align
|
||||||
|
|
||||||
def get_alignment(self):
|
def get_alignment(self):
|
||||||
|
"Returns the alignment of the paragraph"
|
||||||
return self.align
|
return self.align
|
||||||
|
|
||||||
def get_alignment_text(self):
|
def get_alignment_text(self):
|
||||||
|
"""
|
||||||
|
Returns a text string representing the alginment, either 'left',
|
||||||
|
'right', 'center', or 'justify'
|
||||||
|
"""
|
||||||
if self.align == PARA_ALIGN_LEFT:
|
if self.align == PARA_ALIGN_LEFT:
|
||||||
return "left"
|
return "left"
|
||||||
elif self.align == PARA_ALIGN_CENTER:
|
elif self.align == PARA_ALIGN_CENTER:
|
||||||
@ -413,32 +652,70 @@ class ParagraphStyle:
|
|||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
# StyleSheetList
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class StyleSheetList:
|
class StyleSheetList:
|
||||||
|
"""
|
||||||
|
Interface into the user's defined style sheets. Each StyleSheetList
|
||||||
|
has a predefined default style specified by the report. Additional
|
||||||
|
styles are loaded from a specified XML file if it exists.
|
||||||
|
"""
|
||||||
|
|
||||||
def __init__(self,file,defstyle):
|
def __init__(self,file,defstyle):
|
||||||
|
"""
|
||||||
|
Creates a new StyleSheetList from the specified default style and
|
||||||
|
any other styles that may be defined in the specified file.
|
||||||
|
|
||||||
|
file - XML file that contains style definitions
|
||||||
|
defstyle - default style
|
||||||
|
"""
|
||||||
self.map = { "default" : defstyle }
|
self.map = { "default" : defstyle }
|
||||||
self.file = os.path.expanduser("~/.gramps/" + file)
|
self.file = os.path.expanduser("~/.gramps/" + file)
|
||||||
self.parse()
|
self.parse()
|
||||||
|
|
||||||
def delete_style_sheet(self,name):
|
def delete_style_sheet(self,name):
|
||||||
|
"""
|
||||||
|
Removes a style from the list. Since each style must have a
|
||||||
|
unique name, the name is used to delete the stylesheet.
|
||||||
|
|
||||||
|
name - Name of the style to delete
|
||||||
|
"""
|
||||||
del self.map[name]
|
del self.map[name]
|
||||||
|
|
||||||
def get_style_sheet_map(self):
|
def get_style_sheet_map(self):
|
||||||
|
"""
|
||||||
|
Returns the map of names to styles.
|
||||||
|
"""
|
||||||
return self.map
|
return self.map
|
||||||
|
|
||||||
def get_style_sheet(self,name):
|
def get_style_sheet(self,name):
|
||||||
|
"""
|
||||||
|
Returns the StyleSheet associated with the name
|
||||||
|
|
||||||
|
name - name associated with the desired StyleSheet.
|
||||||
|
"""
|
||||||
return self.map[name]
|
return self.map[name]
|
||||||
|
|
||||||
def get_style_names(self):
|
def get_style_names(self):
|
||||||
|
"Returns a list of all the style names in the StyleSheetList"
|
||||||
return self.map.keys()
|
return self.map.keys()
|
||||||
|
|
||||||
def set_style_sheet(self,name,style):
|
def set_style_sheet(self,name,style):
|
||||||
|
"""
|
||||||
|
Adds or replaces a StyleSheet in the StyleSheetList. The
|
||||||
|
default style may not be replaced.
|
||||||
|
|
||||||
|
name - name assocated with the StyleSheet to add or replace.
|
||||||
|
style - definition of the StyleSheet
|
||||||
|
"""
|
||||||
if name != "default":
|
if name != "default":
|
||||||
self.map[name] = style
|
self.map[name] = style
|
||||||
|
|
||||||
def save(self):
|
def save(self):
|
||||||
|
"""
|
||||||
|
Saves the current StyleSheet definitions to the associated file.
|
||||||
|
"""
|
||||||
f = open(self.file,"w")
|
f = open(self.file,"w")
|
||||||
f.write("<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n")
|
f.write("<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n")
|
||||||
f.write('<stylelist>\n')
|
f.write('<stylelist>\n')
|
||||||
@ -477,8 +754,10 @@ class StyleSheetList:
|
|||||||
f.write('</stylelist>\n')
|
f.write('</stylelist>\n')
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
|
||||||
def parse(self):
|
def parse(self):
|
||||||
|
"""
|
||||||
|
Loads the StyleSheets from the associated file, if it exists.
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
parser = make_parser()
|
parser = make_parser()
|
||||||
parser.setContentHandler(SheetParser(self))
|
parser.setContentHandler(SheetParser(self))
|
||||||
@ -488,11 +767,21 @@ class StyleSheetList:
|
|||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
# StyleSheet
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class StyleSheet:
|
class StyleSheet:
|
||||||
|
"""
|
||||||
|
A collection of named paragraph styles.
|
||||||
|
"""
|
||||||
|
|
||||||
def __init__(self,obj=None):
|
def __init__(self,obj=None):
|
||||||
|
"""
|
||||||
|
Creates a new empty StyleSheet.
|
||||||
|
|
||||||
|
obj - if not None, creates the StyleSheet from the values in
|
||||||
|
obj, instead of creating an empty StyleSheet
|
||||||
|
"""
|
||||||
self.style_list = {}
|
self.style_list = {}
|
||||||
if obj != None:
|
if obj != None:
|
||||||
for style_name in obj.style_list.keys():
|
for style_name in obj.style_list.keys():
|
||||||
@ -500,27 +789,51 @@ class StyleSheet:
|
|||||||
self.style_list[style_name] = ParagraphStyle(style)
|
self.style_list[style_name] = ParagraphStyle(style)
|
||||||
|
|
||||||
def clear(self):
|
def clear(self):
|
||||||
|
"Removes all paragraph styles from the StyleSheet"
|
||||||
self.style_list = {}
|
self.style_list = {}
|
||||||
|
|
||||||
def add_style(self,name,style):
|
def add_style(self,name,style):
|
||||||
|
"""
|
||||||
|
Adds a paragraph style to the style sheet.
|
||||||
|
|
||||||
|
name - name of the ParagraphStyle
|
||||||
|
style - PargraphStyle instance to be added.
|
||||||
|
"""
|
||||||
self.style_list[name] = ParagraphStyle(style)
|
self.style_list[name] = ParagraphStyle(style)
|
||||||
|
|
||||||
def get_names(self):
|
def get_names(self):
|
||||||
|
"Returns the the list of paragraph names in the StyleSheet"
|
||||||
return self.style_list.keys()
|
return self.style_list.keys()
|
||||||
|
|
||||||
def get_styles(self):
|
def get_styles(self):
|
||||||
|
"Returns the paragraph name/ParagraphStyle map"
|
||||||
return self.style_list
|
return self.style_list
|
||||||
|
|
||||||
def get_style(self,name):
|
def get_style(self,name):
|
||||||
|
"""
|
||||||
|
Returns the ParagraphStyle associated with the name
|
||||||
|
|
||||||
|
name - name of the ParagraphStyle that is wanted
|
||||||
|
"""
|
||||||
return self.style_list[name]
|
return self.style_list[name]
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
# SheetParser
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
class SheetParser(handler.ContentHandler):
|
class SheetParser(handler.ContentHandler):
|
||||||
|
"""
|
||||||
|
SAX parsing class for the StyleSheetList XML file.
|
||||||
|
"""
|
||||||
|
|
||||||
def __init__(self,sheetlist):
|
def __init__(self,sheetlist):
|
||||||
|
"""
|
||||||
|
Creates a SheetParser class that populates the passed StyleSheetList
|
||||||
|
class.
|
||||||
|
|
||||||
|
sheetlist - StyleSheetList instance to be loaded from the file.
|
||||||
|
"""
|
||||||
handler.ContentHandler.__init__(self)
|
handler.ContentHandler.__init__(self)
|
||||||
self.sheetlist = sheetlist
|
self.sheetlist = sheetlist
|
||||||
self.f = None
|
self.f = None
|
||||||
@ -529,10 +842,10 @@ class SheetParser(handler.ContentHandler):
|
|||||||
self.sname = None
|
self.sname = None
|
||||||
self.pname = None
|
self.pname = None
|
||||||
|
|
||||||
def setDocumentLocator(self,locator):
|
|
||||||
self.locator = locator
|
|
||||||
|
|
||||||
def startElement(self,tag,attrs):
|
def startElement(self,tag,attrs):
|
||||||
|
"""
|
||||||
|
Overridden class that handles the start of a XML element
|
||||||
|
"""
|
||||||
if tag == "sheet":
|
if tag == "sheet":
|
||||||
self.s = StyleSheet(self.sheetlist.map["default"])
|
self.s = StyleSheet(self.sheetlist.map["default"])
|
||||||
self.sname = attrs['name']
|
self.sname = attrs['name']
|
||||||
@ -561,31 +874,48 @@ class SheetParser(handler.ContentHandler):
|
|||||||
self.pname = attrs['name']
|
self.pname = attrs['name']
|
||||||
|
|
||||||
def endElement(self,tag):
|
def endElement(self,tag):
|
||||||
|
"Overridden class that handles the start of a XML element"
|
||||||
if tag == "style":
|
if tag == "style":
|
||||||
self.p.set_font(self.f)
|
self.p.set_font(self.f)
|
||||||
self.s.add_style(self.pname,self.p)
|
self.s.add_style(self.pname,self.p)
|
||||||
elif tag == "sheet":
|
elif tag == "sheet":
|
||||||
self.sheetlist.set_style_sheet(self.sname,self.s)
|
self.sheetlist.set_style_sheet(self.sname,self.s)
|
||||||
|
|
||||||
def characters(self, data):
|
|
||||||
pass
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
#
|
# TextDoc
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class TextDoc:
|
class TextDoc:
|
||||||
def __init__(self,styles,type,template,orientation=PAPER_PORTRAIT):
|
"""
|
||||||
|
Base class for text document generators. Different output formats,
|
||||||
|
such as OpenOffice, AbiWord, and LaTeX are derived from this base
|
||||||
|
class, providing a common interface to all document generators.
|
||||||
|
"""
|
||||||
|
def __init__(self,styles,paper_type,template,orientation=PAPER_PORTRAIT):
|
||||||
|
"""
|
||||||
|
Creates a TextDoc instance, which provides a document generation
|
||||||
|
interface. This class should never be instantiated directly, but
|
||||||
|
only through a derived class.
|
||||||
|
|
||||||
|
styles - StyleSheet containing the paragraph styles used.
|
||||||
|
paper_type - PaperStyle instance containing information about
|
||||||
|
the paper. If set to None, then the document is
|
||||||
|
not a page oriented document (e.g. HTML)
|
||||||
|
template - Format template for document generators that are
|
||||||
|
not page oriented.
|
||||||
|
orientation - page orientation, either PAPER_PORTRAIT or
|
||||||
|
PAPER_LANDSCAPE
|
||||||
|
"""
|
||||||
self.orientation = orientation
|
self.orientation = orientation
|
||||||
self.template = template
|
self.template = template
|
||||||
if orientation == PAPER_PORTRAIT:
|
if orientation == PAPER_PORTRAIT:
|
||||||
self.width = type.get_width()
|
self.width = paper_type.get_width()
|
||||||
self.height = type.get_height()
|
self.height = paper_type.get_height()
|
||||||
else:
|
else:
|
||||||
self.width = type.get_height()
|
self.width = paper_type.get_height()
|
||||||
self.height = type.get_width()
|
self.height = paper_type.get_width()
|
||||||
self.paper = type
|
self.paper = paper_type
|
||||||
self.tmargin = 2.54
|
self.tmargin = 2.54
|
||||||
self.bmargin = 2.54
|
self.bmargin = 2.54
|
||||||
self.lmargin = 2.54
|
self.lmargin = 2.54
|
||||||
@ -601,37 +931,83 @@ class TextDoc:
|
|||||||
self.photo_list = []
|
self.photo_list = []
|
||||||
|
|
||||||
def set_owner(self,owner):
|
def set_owner(self,owner):
|
||||||
|
"""
|
||||||
|
Sets the name of the owner of the document.
|
||||||
|
|
||||||
|
owner - User's name
|
||||||
|
"""
|
||||||
self.owner = owner
|
self.owner = owner
|
||||||
|
|
||||||
def add_photo(self,name,align,w_cm,h_cm):
|
def add_photo(self,name,align,w_cm,h_cm):
|
||||||
"""adds a photo of the specified width (in centimeters)"""
|
"""
|
||||||
|
Adds a photo of the specified width (in centimeters)
|
||||||
|
|
||||||
|
name - filename of the image to add
|
||||||
|
align - alignment of the image. Valid values are 'left', 'right',
|
||||||
|
'center', and 'single'
|
||||||
|
w_cm - width in centimeters
|
||||||
|
h_cm - height in centimeters
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def get_usable_width(self):
|
def get_usable_width(self):
|
||||||
|
"""
|
||||||
|
Returns the width of the text area in centimeters. The value is
|
||||||
|
the page width less the margins.
|
||||||
|
"""
|
||||||
return self.width - (self.rmargin + self.lmargin)
|
return self.width - (self.rmargin + self.lmargin)
|
||||||
|
|
||||||
def get_usable_height(self):
|
def get_usable_height(self):
|
||||||
|
"""
|
||||||
|
Returns the height of the text area in centimeters. The value is
|
||||||
|
the page height less the margins.
|
||||||
|
"""
|
||||||
return self.height - (self.tmargin + self.bmargin)
|
return self.height - (self.tmargin + self.bmargin)
|
||||||
|
|
||||||
def creator(self,name):
|
def creator(self,name):
|
||||||
|
"Returns the owner name"
|
||||||
self.name = name
|
self.name = name
|
||||||
|
|
||||||
def set_title(self,name):
|
def set_title(self,name):
|
||||||
|
"""
|
||||||
|
Sets the title of the document.
|
||||||
|
|
||||||
|
name - Title of the document
|
||||||
|
"""
|
||||||
self.title = name
|
self.title = name
|
||||||
|
|
||||||
def add_table_style(self,name,style):
|
def add_table_style(self,name,style):
|
||||||
|
"""
|
||||||
|
Adds the TableStyle with the specfied name.
|
||||||
|
|
||||||
|
name - name of the table style
|
||||||
|
style - TableStyle instance to be added
|
||||||
|
"""
|
||||||
self.table_styles[name] = TableStyle(style)
|
self.table_styles[name] = TableStyle(style)
|
||||||
|
|
||||||
def add_cell_style(self,name,style):
|
def add_cell_style(self,name,style):
|
||||||
|
"""
|
||||||
|
Adds the TableCellStyle with the specfied name.
|
||||||
|
|
||||||
|
name - name of the table cell style
|
||||||
|
style - TableCellStyle instance to be added
|
||||||
|
"""
|
||||||
self.cell_styles[name] = TableCellStyle(style)
|
self.cell_styles[name] = TableCellStyle(style)
|
||||||
|
|
||||||
def open(self,filename):
|
def open(self,filename):
|
||||||
|
"""
|
||||||
|
Opens the document.
|
||||||
|
|
||||||
|
filename - path name of the file to create
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
|
"Closes the document"
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def page_break(self):
|
def page_break(self):
|
||||||
|
"Forces a page break, creating a new page"
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def start_bold(self):
|
def start_bold(self):
|
||||||
@ -641,32 +1017,61 @@ class TextDoc:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
def start_paragraph(self,style_name,leader=None):
|
def start_paragraph(self,style_name,leader=None):
|
||||||
|
"""
|
||||||
|
Starts a new pargraph, using the specified style name.
|
||||||
|
|
||||||
|
style_name - name of the PargraphStyle to use for the paragraph.
|
||||||
|
leader - Leading text for a pargraph. Typically ssed for numbering.
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def end_paragraph(self):
|
def end_paragraph(self):
|
||||||
|
"Ends the current parsgraph"
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def start_table(self,name,style_name):
|
def start_table(self,name,style_name):
|
||||||
|
"""
|
||||||
|
Starts a new table.
|
||||||
|
|
||||||
|
name - Unique name of the table.
|
||||||
|
style_name - TableStyle to use for the new table
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def end_table(self):
|
def end_table(self):
|
||||||
|
"Ends the current table"
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def start_row(self):
|
def start_row(self):
|
||||||
|
"Starts a new row on the current table"
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def end_row(self):
|
def end_row(self):
|
||||||
|
"Ends the current row on the current table"
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def start_cell(self,style_name,span=1):
|
def start_cell(self,style_name,span=1):
|
||||||
|
"""
|
||||||
|
Starts a new table cell, using the paragraph style specified.
|
||||||
|
|
||||||
|
style_name - TableCellStyle to use for the cell
|
||||||
|
span - number of columns to span
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def end_cell(self):
|
def end_cell(self):
|
||||||
|
"Ends the current table cell"
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def horizontal_line(self):
|
def horizontal_line(self):
|
||||||
|
"Creates a horizontal line"
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def write_text(self,text):
|
def write_text(self,text):
|
||||||
pass
|
"""
|
||||||
|
Writes the text in the current paragraph. Should only be used after a
|
||||||
|
start_paragraph and before an end_paragraph.
|
||||||
|
|
||||||
|
text - text to write.
|
||||||
|
"""
|
||||||
|
pass
|
||||||
|
@ -60,6 +60,7 @@ from MediaView import MediaView
|
|||||||
|
|
||||||
from QuestionDialog import QuestionDialog
|
from QuestionDialog import QuestionDialog
|
||||||
|
|
||||||
|
import DisplayTrace
|
||||||
import Filter
|
import Filter
|
||||||
import const
|
import const
|
||||||
import Plugins
|
import Plugins
|
||||||
@ -73,6 +74,8 @@ import Marriage
|
|||||||
import Find
|
import Find
|
||||||
import VersionControl
|
import VersionControl
|
||||||
import ReadXML
|
import ReadXML
|
||||||
|
import AddSpouse
|
||||||
|
import ChooseParents
|
||||||
|
|
||||||
from GrampsXML import GrampsXML
|
from GrampsXML import GrampsXML
|
||||||
try:
|
try:
|
||||||
@ -476,7 +479,6 @@ class Gramps:
|
|||||||
|
|
||||||
def on_add_sp_clicked(self,obj):
|
def on_add_sp_clicked(self,obj):
|
||||||
"""Add a new spouse to the current person"""
|
"""Add a new spouse to the current person"""
|
||||||
import AddSpouse
|
|
||||||
if self.active_person:
|
if self.active_person:
|
||||||
if self.active_family and not self.active_spouse:
|
if self.active_family and not self.active_spouse:
|
||||||
top = libglade.GladeXML(const.gladeFile, "add_or_new")
|
top = libglade.GladeXML(const.gladeFile, "add_or_new")
|
||||||
@ -487,18 +489,27 @@ class Gramps:
|
|||||||
})
|
})
|
||||||
self.addornew = top.get_widget('add_or_new')
|
self.addornew = top.get_widget('add_or_new')
|
||||||
else:
|
else:
|
||||||
AddSpouse.AddSpouse(self.db,self.active_person,
|
try:
|
||||||
self.load_family,self.redisplay_person_list)
|
AddSpouse.AddSpouse(self.db,self.active_person,
|
||||||
|
self.load_family,self.redisplay_person_list)
|
||||||
|
except:
|
||||||
|
DisplayTrace.DisplayTrace()
|
||||||
|
|
||||||
def add_new_choose_spouse(self,obj):
|
def add_new_choose_spouse(self,obj):
|
||||||
import AddSpouse
|
|
||||||
Utils.destroy_passed_object(self.addornew)
|
Utils.destroy_passed_object(self.addornew)
|
||||||
AddSpouse.SetSpouse(self.db,self.active_person,self.active_family,
|
try:
|
||||||
self.load_family, self.redisplay_person_list)
|
AddSpouse.SetSpouse(self.db,self.active_person,self.active_family,
|
||||||
|
self.load_family, self.redisplay_person_list)
|
||||||
|
except:
|
||||||
|
DisplayTrace.DisplayTrace()
|
||||||
|
|
||||||
def on_edit_sp_clicked(self,obj):
|
def on_edit_sp_clicked(self,obj):
|
||||||
"""Edit the marriage information for the current family"""
|
"""Edit the marriage information for the current family"""
|
||||||
if self.active_person:
|
if self.active_person:
|
||||||
Marriage.Marriage(self.active_family,self.db,self.new_after_edit)
|
try:
|
||||||
|
Marriage.Marriage(self.active_family,self.db,self.new_after_edit)
|
||||||
|
except:
|
||||||
|
DisplayTrace.DisplayTrace()
|
||||||
|
|
||||||
def on_delete_sp_clicked(self,obj):
|
def on_delete_sp_clicked(self,obj):
|
||||||
"""Delete the currently selected spouse from the family"""
|
"""Delete the currently selected spouse from the family"""
|
||||||
@ -569,18 +580,23 @@ class Gramps:
|
|||||||
"""Create a new child to add to the existing family"""
|
"""Create a new child to add to the existing family"""
|
||||||
import SelectChild
|
import SelectChild
|
||||||
if self.active_person:
|
if self.active_person:
|
||||||
SelectChild.NewChild(self.db,self.active_family,
|
try:
|
||||||
self.active_person,self.update_after_newchild,
|
SelectChild.NewChild(self.db,self.active_family,
|
||||||
self.update_after_edit,
|
self.active_person,self.update_after_newchild,
|
||||||
GrampsCfg.lastnamegen)
|
self.update_after_edit,
|
||||||
|
GrampsCfg.lastnamegen)
|
||||||
|
except:
|
||||||
|
DisplayTrace.DisplayTrace()
|
||||||
|
|
||||||
def on_choose_parents_clicked(self,obj):
|
def on_choose_parents_clicked(self,obj):
|
||||||
import ChooseParents
|
|
||||||
if self.active_person:
|
if self.active_person:
|
||||||
ChooseParents.ChooseParents(self.db,self.active_person,
|
try:
|
||||||
self.active_parents,self.load_family,
|
ChooseParents.ChooseParents(self.db,self.active_person,
|
||||||
self.full_update)
|
self.active_parents,self.load_family,
|
||||||
|
self.full_update)
|
||||||
|
except:
|
||||||
|
DisplayTrace.DisplayTrace()
|
||||||
|
|
||||||
def on_new_clicked(self,obj):
|
def on_new_clicked(self,obj):
|
||||||
"""Prompt for permission to close the current database"""
|
"""Prompt for permission to close the current database"""
|
||||||
|
|
||||||
@ -735,7 +751,10 @@ class Gramps:
|
|||||||
import ReadGedcom
|
import ReadGedcom
|
||||||
|
|
||||||
self.topWindow.set_title("%s - GRAMPS" % filename)
|
self.topWindow.set_title("%s - GRAMPS" % filename)
|
||||||
ReadGedcom.importData(self.db,filename)
|
try:
|
||||||
|
ReadGedcom.importData(self.db,filename)
|
||||||
|
except:
|
||||||
|
DisplayTrace.DisplayTrace()
|
||||||
self.full_update()
|
self.full_update()
|
||||||
|
|
||||||
def read_file(self,filename):
|
def read_file(self,filename):
|
||||||
@ -872,8 +891,11 @@ class Gramps:
|
|||||||
|
|
||||||
def load_new_person(self,obj):
|
def load_new_person(self,obj):
|
||||||
self.active_person = Person()
|
self.active_person = Person()
|
||||||
EditPerson.EditPerson(self.active_person,self.db,
|
try:
|
||||||
self.new_after_edit)
|
EditPerson.EditPerson(self.active_person,self.db,
|
||||||
|
self.new_after_edit)
|
||||||
|
except:
|
||||||
|
DisplayTrace.DisplayTrace()
|
||||||
|
|
||||||
def on_delete_person_clicked(self,obj):
|
def on_delete_person_clicked(self,obj):
|
||||||
if len(self.person_list.selection) == 1:
|
if len(self.person_list.selection) == 1:
|
||||||
@ -1284,7 +1306,10 @@ class Gramps:
|
|||||||
|
|
||||||
def load_person(self,person):
|
def load_person(self,person):
|
||||||
if person:
|
if person:
|
||||||
EditPerson.EditPerson(person, self.db, self.update_after_edit)
|
try:
|
||||||
|
EditPerson.EditPerson(person, self.db, self.update_after_edit)
|
||||||
|
except:
|
||||||
|
DisplayTrace.DisplayTrace()
|
||||||
|
|
||||||
def build_spouse_dropdown(self):
|
def build_spouse_dropdown(self):
|
||||||
list = []
|
list = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user