2003-06-13 09:30:24 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2005-01-19 10:17:36 +05:30
|
|
|
# Copyright (C) 2003-2005 Donald N. Allingham
|
2003-06-13 09:30:24 +05:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2004-05-05 07:34:30 +05:30
|
|
|
# $Id$
|
|
|
|
|
2005-01-02 12:10:08 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
from gettext import gettext as _
|
|
|
|
|
2003-06-13 09:30:24 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gnome/gtk
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import gtk
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-08-30 04:17:06 +05:30
|
|
|
import BaseDoc
|
2003-06-13 09:30:24 +05:30
|
|
|
import Report
|
2005-01-02 12:10:08 +05:30
|
|
|
import ReportOptions
|
|
|
|
import const
|
2003-06-13 09:30:24 +05:30
|
|
|
from SubstKeywords import SubstKeywords
|
2005-01-19 10:17:36 +05:30
|
|
|
from ReportUtils import pt2cm
|
2003-06-13 09:30:24 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# FanChart
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2005-01-02 12:10:08 +05:30
|
|
|
class FanChart(Report.Report):
|
|
|
|
|
|
|
|
def __init__(self,database,person,options_class):
|
|
|
|
"""
|
|
|
|
Creates the FanChart object that produces the report.
|
|
|
|
|
|
|
|
The arguments are:
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
display -
|
|
|
|
"""
|
|
|
|
Report.Report.__init__(self,database,person,options_class)
|
|
|
|
|
2004-05-05 07:34:30 +05:30
|
|
|
self.height = 0
|
2003-06-13 09:30:24 +05:30
|
|
|
self.lines = 0
|
2005-01-02 12:10:08 +05:30
|
|
|
self.display = "%n"
|
|
|
|
self.map = [None] * 32
|
|
|
|
self.text= {}
|
|
|
|
self.box_width = 0
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2005-01-24 22:03:47 +05:30
|
|
|
def define_graphics_styles(self):
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
|
|
|
g.set_paragraph_style('FC-Title')
|
2003-09-13 10:26:04 +05:30
|
|
|
g.set_line_width(0)
|
2003-06-13 09:30:24 +05:30
|
|
|
self.doc.add_draw_style("t",g)
|
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((255,212,210))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
|
|
|
self.doc.add_draw_style("FC-c1",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((255,212,210))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_line_width(0)
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.add_draw_style("FC-c1n",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((251,204,158))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
|
|
|
self.doc.add_draw_style("FC-c2",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((251,204,158))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_line_width(0)
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.add_draw_style("FC-c2n",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((255,255,111))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
|
|
|
self.doc.add_draw_style("FC-c3",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((255,255,111))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_line_width(0)
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.add_draw_style("FC-c3n",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((158,255,158))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
|
|
|
self.doc.add_draw_style("FC-c4",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((158,255,158))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_line_width(0)
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.add_draw_style("FC-c4n",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((156,205,255))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
|
|
|
self.doc.add_draw_style("FC-c5",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
g = BaseDoc.GraphicsStyle()
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_fill_color((156,205,255))
|
2003-08-30 04:17:06 +05:30
|
|
|
g.set_paragraph_style('FC-Normal')
|
2003-06-13 09:30:24 +05:30
|
|
|
g.set_line_width(0)
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.add_draw_style("FC-c5n",g)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2005-01-02 12:10:08 +05:30
|
|
|
def apply_filter(self,person_handle,index):
|
2003-06-13 09:30:24 +05:30
|
|
|
"""traverse the ancestors recursively until either the end
|
|
|
|
of a line is found, or until we reach the maximum number of
|
|
|
|
generations that we want to deal with"""
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
if (not person_handle) or (index >= 32):
|
2003-06-13 09:30:24 +05:30
|
|
|
return
|
2004-07-28 07:59:07 +05:30
|
|
|
self.map[index-1] = person_handle
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2004-05-05 07:34:30 +05:30
|
|
|
self.text[index-1] = []
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
subst = SubstKeywords(self.database,person_handle)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
|
|
|
for line in self.display:
|
|
|
|
self.text[index-1].append(subst.replace(line))
|
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
self.font = self.doc.style_list["FC-Normal"].get_font()
|
2004-05-05 07:34:30 +05:30
|
|
|
for line in self.text[index-1]:
|
2004-08-21 02:56:51 +05:30
|
|
|
self.box_width = max(self.box_width,self.doc.string_width(self.font,line))
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2004-05-05 07:34:30 +05:30
|
|
|
self.lines = max(self.lines,len(self.text[index-1]))
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2004-08-07 10:46:57 +05:30
|
|
|
person = self.database.get_person_from_handle(person_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
family_handle = person.get_main_parents_family_handle()
|
|
|
|
if family_handle:
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2005-01-02 12:10:08 +05:30
|
|
|
self.apply_filter(family.get_father_handle(),index*2)
|
|
|
|
self.apply_filter(family.get_mother_handle(),(index*2)+1)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
|
|
|
def write_report(self):
|
|
|
|
|
2005-01-02 12:10:08 +05:30
|
|
|
self.apply_filter(self.start_person.get_handle(),1)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
|
|
|
block_size = self.doc.get_usable_width()/14.0
|
2003-08-30 04:17:06 +05:30
|
|
|
|
2003-06-13 09:30:24 +05:30
|
|
|
size = min(self.doc.get_usable_width(),self.doc.get_usable_height()*2.0)/2.0
|
|
|
|
y = self.doc.get_usable_height()
|
|
|
|
max_lines = int(size/block_size)
|
|
|
|
center = (self.doc.get_usable_width()/2.0)
|
|
|
|
|
|
|
|
self.doc.start_page()
|
|
|
|
|
2005-01-02 12:10:08 +05:30
|
|
|
n = self.start_person.get_primary_name().get_regular_name()
|
2003-06-13 09:30:24 +05:30
|
|
|
self.doc.center_text('t', _('Five Generation Fan Chart for %s') % n, center, 0)
|
|
|
|
|
|
|
|
self.circle_5(center,y,block_size)
|
|
|
|
self.circle_4(center,y,block_size)
|
|
|
|
self.circle_3(center,y,block_size)
|
|
|
|
self.circle_2(center,y,block_size)
|
|
|
|
self.circle_1(center,y,block_size)
|
|
|
|
|
|
|
|
self.doc.end_page()
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def get_info(self,person_handle):
|
2004-08-07 10:46:57 +05:30
|
|
|
person = self.database.get_person_from_handle(person_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
pn = person.get_primary_name()
|
2004-05-05 07:34:30 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
birth_handle = person.get_birth_handle()
|
|
|
|
if birth_handle:
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
b = self.database.get_event_from_handle(birth_handle).get_date_object().get_year()
|
2004-10-12 06:59:39 +05:30
|
|
|
if b == 0:
|
2004-05-05 07:34:30 +05:30
|
|
|
b = ""
|
|
|
|
else:
|
2003-06-13 09:30:24 +05:30
|
|
|
b = ""
|
2004-05-05 07:34:30 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
death_handle = person.get_death_handle()
|
|
|
|
if death_handle:
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
d = self.database.get_event_from_handle(death_handle).get_date_object().get_year()
|
2004-10-12 06:59:39 +05:30
|
|
|
if d == 0:
|
2004-05-05 07:34:30 +05:30
|
|
|
d = ""
|
|
|
|
else:
|
2003-06-13 09:30:24 +05:30
|
|
|
d = ""
|
|
|
|
|
|
|
|
if b or d:
|
|
|
|
val = "%s - %s" % (str(b),str(d))
|
|
|
|
else:
|
|
|
|
val = ""
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
return [ pn.get_first_name(), pn.get_surname(), val ]
|
2003-06-13 09:30:24 +05:30
|
|
|
|
|
|
|
def circle_1(self,center,y,size):
|
2003-08-30 04:17:06 +05:30
|
|
|
(xc,yc) = self.doc.draw_wedge("FC-c1", center, y, size, 180, 360)
|
|
|
|
self.doc.rotate_text("FC-c1n", self.get_info(self.map[0]), xc, yc ,0)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
|
|
|
def circle_2(self,center,y,size):
|
2003-08-30 04:17:06 +05:30
|
|
|
(xc,yc) = self.doc.draw_wedge("FC-c2", center, y, size*2, 180, 270, size)
|
2003-06-13 09:30:24 +05:30
|
|
|
if self.map[1]:
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.rotate_text("FC-c2n", self.get_info(self.map[1]), xc, yc, -45)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
(xc,yc) = self.doc.draw_wedge("FC-c2", center, y, size*2, 270, 360, size)
|
2003-06-13 09:30:24 +05:30
|
|
|
if self.map[2]:
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.rotate_text("FC-c2n", self.get_info(self.map[2]), xc,yc ,45)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
|
|
|
def circle_3(self,center,y,size):
|
|
|
|
delta = 45
|
|
|
|
sangle = -67.5
|
|
|
|
for index in range(3,7):
|
|
|
|
start = 180+(index-3)*45
|
|
|
|
stop = start+45
|
2003-08-30 04:17:06 +05:30
|
|
|
(xc,yc) = self.doc.draw_wedge("FC-c3", center, y, size*3, start, stop, size*2)
|
2003-06-13 09:30:24 +05:30
|
|
|
if self.map[index]:
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.rotate_text("FC-c3n", self.get_info(self.map[index]),
|
2003-06-13 09:30:24 +05:30
|
|
|
xc,yc ,sangle)
|
|
|
|
sangle += 45
|
|
|
|
|
|
|
|
def circle_4(self,center,y,size):
|
|
|
|
delta = 22.5
|
|
|
|
sangle = -78.75 + 90
|
|
|
|
for i in range(0,8):
|
|
|
|
start_angle = 180 + (i * delta)
|
|
|
|
end_angle = 180 + ((i+1) * delta)
|
2003-08-30 04:17:06 +05:30
|
|
|
(xc,yc) = self.doc.draw_wedge("FC-c4", center, y, size*5, start_angle,
|
2003-06-13 09:30:24 +05:30
|
|
|
end_angle, size*3)
|
|
|
|
if i == 4:
|
|
|
|
sangle += 180
|
|
|
|
if self.map[i+7]:
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.rotate_text("FC-c4n", self.get_info(self.map[i+7]),
|
2003-06-13 09:30:24 +05:30
|
|
|
xc,yc ,sangle)
|
|
|
|
sangle += 22.5
|
|
|
|
|
|
|
|
def circle_5(self,center,y,size):
|
|
|
|
delta = 11.25
|
|
|
|
sangle = -84.625 + 90
|
|
|
|
for i in range(0,16):
|
|
|
|
start_angle = 180 + (i * delta)
|
|
|
|
end_angle = 180 + ((i+1) * delta)
|
2003-08-30 04:17:06 +05:30
|
|
|
(xc,yc) = self.doc.draw_wedge("FC-c5", center, y, size*7, start_angle,
|
2003-06-13 09:30:24 +05:30
|
|
|
end_angle, size*5)
|
|
|
|
if i == 8:
|
|
|
|
sangle += 180
|
|
|
|
if self.map[i+15]:
|
2003-08-30 04:17:06 +05:30
|
|
|
self.doc.rotate_text("FC-c5n", self.get_info(self.map[i+15]),
|
2003-06-13 09:30:24 +05:30
|
|
|
xc,yc ,sangle)
|
|
|
|
sangle += 11.25
|
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2005-01-02 12:10:08 +05:30
|
|
|
class FanChartOptions(ReportOptions.ReportOptions):
|
|
|
|
|
|
|
|
"""
|
|
|
|
Defines options and provides handling interface.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self,name,person_id=None):
|
|
|
|
ReportOptions.ReportOptions.__init__(self,name,person_id)
|
|
|
|
|
|
|
|
|
|
|
|
def make_default_style(self,default_style):
|
|
|
|
"""Make the default output style for the Fan Chart report."""
|
|
|
|
f = BaseDoc.FontStyle()
|
|
|
|
f.set_size(8)
|
|
|
|
f.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
|
|
|
p = BaseDoc.ParagraphStyle()
|
|
|
|
p.set_font(f)
|
|
|
|
p.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
|
|
|
p.set_description(_('The basic style used for the text display.'))
|
|
|
|
default_style.add_style("FC-Normal",p)
|
|
|
|
|
|
|
|
f = BaseDoc.FontStyle()
|
|
|
|
f.set_size(20)
|
|
|
|
f.set_bold(1)
|
|
|
|
f.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
|
|
|
p = BaseDoc.ParagraphStyle()
|
|
|
|
p.set_font(f)
|
|
|
|
p.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
|
|
|
p.set_description(_('The style used for the title.'))
|
|
|
|
default_style.add_style("FC-Title",p)
|
2003-06-13 09:30:24 +05:30
|
|
|
|
2003-08-30 04:17:06 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2005-01-05 10:32:19 +05:30
|
|
|
from PluginMgr import register_report
|
2003-06-13 09:30:24 +05:30
|
|
|
register_report(
|
2005-01-02 12:10:08 +05:30
|
|
|
name = 'fan_chart',
|
|
|
|
category = const.CATEGORY_DRAW,
|
|
|
|
report_class = FanChart,
|
|
|
|
options_class = FanChartOptions,
|
|
|
|
modes = Report.MODE_GUI | Report.MODE_BKI | Report.MODE_CLI,
|
|
|
|
translated_name = _("Fan Chart"),
|
|
|
|
status = _("Alpha"),
|
|
|
|
author_name = "Donald N. Allingham",
|
|
|
|
author_email = "dallingham@users.sourceforge.net",
|
|
|
|
description = _("Produces a five generation fan chart")
|
2003-08-30 04:17:06 +05:30
|
|
|
)
|