gramps/src/plugins/DumpGenderStats.py

118 lines
3.8 KiB
Python
Raw Normal View History

#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2000-2006 Martin Hawlisch, Donald N. Allingham
#
# 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
#
# $Id$
"Dump gender stats"
import gtk
import ListModel
2006-04-14 10:06:25 +05:30
import ManagedWindow
from PluginUtils import Tool, register_tool
_GENDER = [ _(u'female'), _(u'male'), _(u'unknown') ]
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
2006-04-14 10:06:25 +05:30
class DumpGenderStats(Tool.Tool, ManagedWindow.ManagedWindow):
def __init__(self, dbstate, uistate, options_class, name, callback=None):
self.label = _("Gender Statistics tool")
2006-04-14 10:06:25 +05:30
Tool.Tool.__init__(self, dbstate, options_class, name)
if uistate:
ManagedWindow.ManagedWindow.__init__(self,uistate,[],
self.__class__)
2005-12-06 12:08:09 +05:30
stats_list = []
2006-04-14 10:06:25 +05:30
for name in dbstate.db.genderStats.stats.keys():
2005-12-06 12:08:09 +05:30
stats_list.append(
(name,)
2006-04-14 10:06:25 +05:30
+ dbstate.db.genderStats.stats[name]
+ (_GENDER[dbstate.db.genderStats.guess_gender(name)],)
2005-12-06 12:08:09 +05:30
)
2006-04-14 10:06:25 +05:30
if uistate:
2005-12-06 12:08:09 +05:30
titles = [
2006-06-22 05:39:20 +05:30
(_('Name'),0,100),
(_('Male'),1,70,ListModel.INTEGER),
(_('Female'),2,70,ListModel.INTEGER),
(_('Unknown'),3,70,ListModel.INTEGER),
(_('Guess'),4,70)
2005-12-06 12:08:09 +05:30
]
treeview = gtk.TreeView()
model = ListModel.ListModel(treeview,titles)
for entry in stats_list:
model.add(entry,entry[0])
2006-04-14 10:06:25 +05:30
window = gtk.Window()
window.set_default_size(400,300)
2005-12-06 12:08:09 +05:30
s = gtk.ScrolledWindow()
s.add(treeview)
window.add(s)
window.show_all()
self.set_window(window,None,self.label)
self.show()
2006-04-14 10:06:25 +05:30
2005-12-06 12:08:09 +05:30
else:
print "\t%s\t%s\t%s\t%s\t%s\n" % (
'Name','Male','Female','Unknown','Guess')
for entry in stats_list:
print "\t%s\t%s\t%s\t%s\t%s" % entry
def build_menu_names(self,obj):
return (self.label,None)
2005-12-06 12:08:09 +05:30
#------------------------------------------------------------------------
#
#
#
#------------------------------------------------------------------------
class DumpGenderStatsOptions(Tool.ToolOptions):
"""
Defines options and provides handling interface.
"""
def __init__(self,name,person_id=None):
Tool.ToolOptions.__init__(self,name,person_id)
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
2005-12-06 12:08:09 +05:30
if __debug__:
register_tool(
name = 'dgenstats',
category = Tool.TOOL_DEBUG,
tool_class = DumpGenderStats,
options_class = DumpGenderStatsOptions,
modes = Tool.MODE_GUI | Tool.MODE_CLI,
translated_name = _("Dumps gender statistics"),
description = _("Will dump the statistics for the gender guessing "
"from the first name.")
)