2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-02-15 12:38:55 +05:30
|
|
|
# Copyright (C) 2000-2004 Donald N. Allingham
|
2002-10-20 19:55:16 +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
|
|
|
|
#
|
2003-10-14 07:52:14 +05:30
|
|
|
# $Id$
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
"""
|
|
|
|
The core of the GRAMPS plugin system. This module provides tasks to load
|
|
|
|
plugins from specfied directories, build menus for the different categories,
|
|
|
|
and provide dialog to select and execute plugins.
|
|
|
|
|
|
|
|
Plugins are divided into several categories. This are: reports, tools,
|
2004-05-07 09:28:26 +05:30
|
|
|
importers, exporters, and document generators.
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK libraries
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-11-03 12:05:06 +05:30
|
|
|
import gobject
|
2002-10-20 19:55:16 +05:30
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
2004-11-20 10:16:47 +05:30
|
|
|
import gnome
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard Python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import traceback
|
|
|
|
import os
|
|
|
|
import sys
|
2002-11-03 12:05:06 +05:30
|
|
|
import string
|
2002-10-20 19:55:16 +05:30
|
|
|
from re import compile
|
2004-12-22 07:26:37 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
|
|
|
import Utils
|
2004-09-25 10:42:15 +05:30
|
|
|
import GrampsGconfKeys
|
2003-01-15 10:55:50 +05:30
|
|
|
import Errors
|
2004-12-22 07:26:37 +05:30
|
|
|
import Report
|
2005-01-05 10:32:19 +05:30
|
|
|
import PluginMgr
|
2002-11-03 12:05:06 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# PluginDialog interface class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class PluginDialog:
|
|
|
|
"""Displays the dialog box that allows the user to select the
|
|
|
|
report that is desired."""
|
|
|
|
|
2004-12-28 05:53:49 +05:30
|
|
|
def __init__(self,parent,db,active,item_list,msg,label=None,
|
|
|
|
button_label=None,tool_tip=None):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Display the dialog box, and build up the list of available
|
|
|
|
reports. This is used to build the selection tree on the left
|
|
|
|
hand side of the dailog box."""
|
|
|
|
|
2004-02-28 09:21:59 +05:30
|
|
|
self.parent = parent
|
|
|
|
if self.parent.child_windows.has_key(msg):
|
|
|
|
self.parent.child_windows[msg].present(None)
|
|
|
|
return
|
2002-10-20 19:55:16 +05:30
|
|
|
self.db = db
|
|
|
|
self.active = active
|
|
|
|
self.update = None
|
2002-11-03 12:05:06 +05:30
|
|
|
self.imap = {}
|
2004-02-28 09:21:59 +05:30
|
|
|
self.msg = msg
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-08-17 07:44:33 +05:30
|
|
|
self.dialog = gtk.glade.XML(const.pluginsFile,"report","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.dialog.signal_autoconnect({
|
|
|
|
"on_report_apply_clicked" : self.on_apply_clicked,
|
2004-02-28 09:21:59 +05:30
|
|
|
"destroy_passed_object" : self.close,
|
|
|
|
"on_delete_event" : self.on_delete_event,
|
2002-10-20 19:55:16 +05:30
|
|
|
})
|
|
|
|
|
|
|
|
self.tree = self.dialog.get_widget("tree")
|
2003-03-06 11:42:51 +05:30
|
|
|
self.top = self.dialog.get_widget("report")
|
|
|
|
self.title = self.dialog.get_widget("title")
|
|
|
|
|
|
|
|
Utils.set_titles(self.top, self.title, msg )
|
|
|
|
|
2002-11-03 12:05:06 +05:30
|
|
|
self.store = gtk.TreeStore(gobject.TYPE_STRING)
|
|
|
|
self.selection = self.tree.get_selection()
|
|
|
|
self.selection.connect('changed', self.on_node_selected)
|
|
|
|
col = gtk.TreeViewColumn('',gtk.CellRendererText(),text=0)
|
|
|
|
self.tree.append_column(col)
|
|
|
|
self.tree.set_model(self.store)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.description = self.dialog.get_widget("description")
|
2003-09-30 09:49:35 +05:30
|
|
|
if label:
|
|
|
|
self.description.set_text(label)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.status = self.dialog.get_widget("report_status")
|
2003-03-05 11:31:31 +05:30
|
|
|
|
|
|
|
Utils.set_title_label(self.dialog,msg)
|
|
|
|
|
2003-02-08 22:58:41 +05:30
|
|
|
self.author_name = self.dialog.get_widget("author_name")
|
|
|
|
self.author_email = self.dialog.get_widget("author_email")
|
|
|
|
self.statbox = self.dialog.get_widget("statbox")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-10-14 07:52:14 +05:30
|
|
|
self.apply_button = self.dialog.get_widget("apply")
|
|
|
|
if button_label:
|
|
|
|
self.apply_button.set_label(button_label)
|
|
|
|
else:
|
|
|
|
self.apply_button.set_label(_("_Apply"))
|
|
|
|
self.apply_button.set_use_underline(gtk.TRUE)
|
|
|
|
if tool_tip:
|
2003-12-10 09:01:38 +05:30
|
|
|
try:
|
2004-05-03 09:17:29 +05:30
|
|
|
tt = gtk.tooltips_data_get(self.apply_button)
|
2003-12-10 09:01:38 +05:30
|
|
|
if tt:
|
|
|
|
tt[0].set_tip(self.apply_button,tool_tip)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
2003-10-14 07:52:14 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.run_tool = None
|
2004-12-23 09:18:23 +05:30
|
|
|
self.report_vs_tool = len(item_list[0]) == 9
|
|
|
|
if self.report_vs_tool:
|
|
|
|
self.build_report_tree(item_list)
|
|
|
|
else:
|
|
|
|
self.build_tool_tree(item_list)
|
2004-02-28 09:21:59 +05:30
|
|
|
self.add_itself_to_menu()
|
|
|
|
self.top.show()
|
|
|
|
|
|
|
|
def on_delete_event(self,obj,b):
|
|
|
|
self.remove_itself_from_menu()
|
|
|
|
|
|
|
|
def close(self,ok=0):
|
|
|
|
self.remove_itself_from_menu()
|
|
|
|
self.top.destroy()
|
|
|
|
|
|
|
|
def add_itself_to_menu(self):
|
|
|
|
self.parent.child_windows[self.msg] = self
|
|
|
|
self.win_menu_item = gtk.MenuItem(self.msg)
|
|
|
|
self.win_menu_item.connect("activate",self.present)
|
|
|
|
self.win_menu_item.show()
|
|
|
|
self.parent.winsmenu.append(self.win_menu_item)
|
|
|
|
|
|
|
|
def remove_itself_from_menu(self):
|
|
|
|
del self.parent.child_windows[self.msg]
|
|
|
|
self.win_menu_item.destroy()
|
|
|
|
|
|
|
|
def present(self,obj):
|
|
|
|
self.top.present()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def on_apply_clicked(self,obj):
|
|
|
|
"""Execute the selected report"""
|
|
|
|
|
2004-12-23 09:18:23 +05:30
|
|
|
if self.report_vs_tool:
|
|
|
|
(report_class,options_class,title,category,name) = self.run_tool
|
|
|
|
Report.report(self.db,self.active,
|
|
|
|
report_class,options_class,title,name,category)
|
|
|
|
elif self.run_tool:
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.update:
|
2004-05-14 00:01:48 +05:30
|
|
|
self.run_tool(self.db,self.active,self.update,self.parent)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-05-14 00:01:48 +05:30
|
|
|
self.run_tool(self.db,self.active)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2002-11-03 12:05:06 +05:30
|
|
|
def on_node_selected(self,obj):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Updates the informational display on the right hand side of
|
|
|
|
the dialog box with the description of the selected report"""
|
|
|
|
|
2004-08-20 17:41:56 +05:30
|
|
|
store,node = self.selection.get_selected()
|
|
|
|
if node:
|
|
|
|
path = store.get_path(node)
|
|
|
|
if not node or not self.imap.has_key(path):
|
2003-02-08 22:58:41 +05:30
|
|
|
self.statbox.hide()
|
2002-11-03 12:05:06 +05:30
|
|
|
return
|
2003-02-08 22:58:41 +05:30
|
|
|
self.statbox.show()
|
2002-11-03 12:05:06 +05:30
|
|
|
data = self.imap[path]
|
|
|
|
|
2004-12-23 09:18:23 +05:30
|
|
|
if self.report_vs_tool:
|
|
|
|
(report_class,options_class,title,
|
|
|
|
category,name,doc,status,author,email) = data
|
|
|
|
else:
|
|
|
|
title = data[0]
|
|
|
|
task = data[1]
|
|
|
|
doc = data[2]
|
|
|
|
status = data[3]
|
|
|
|
author = data[4]
|
|
|
|
email = data[5]
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.description.set_text(doc)
|
2003-02-08 22:58:41 +05:30
|
|
|
self.status.set_text(status)
|
2004-05-12 09:28:14 +05:30
|
|
|
self.title.set_text('<span weight="bold" size="larger">%s</span>' % title)
|
|
|
|
self.title.set_use_markup(1)
|
2003-02-08 22:58:41 +05:30
|
|
|
self.author_name.set_text(author)
|
|
|
|
self.author_email.set_text(email)
|
2004-12-23 09:18:23 +05:30
|
|
|
if self.report_vs_tool:
|
|
|
|
self.run_tool = (report_class,options_class,title,category,name)
|
|
|
|
else:
|
|
|
|
self.run_tool = task
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-12-23 09:18:23 +05:30
|
|
|
def build_tool_tree(self,item_list):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Populates a GtkTree with each menu item assocated with a entry
|
|
|
|
in the lists. The list must consist of a tuples with the following
|
|
|
|
format:
|
|
|
|
|
2003-02-08 22:58:41 +05:30
|
|
|
(task_to_call, category, report name, description, image, status, author_name, author_email)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
Items in the same category are grouped under the same submen. The
|
|
|
|
task_to_call is bound to the 'select' callback of the menu entry."""
|
2002-11-03 12:05:06 +05:30
|
|
|
|
|
|
|
ilist = []
|
2003-04-22 21:10:24 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
# build the tree items and group together based on the category name
|
|
|
|
item_hash = {}
|
2004-12-23 09:18:23 +05:30
|
|
|
for report in item_list:
|
2004-05-12 09:28:14 +05:30
|
|
|
t = (report[2],report[0],report[3],report[4],report[5],report[6])
|
2002-10-20 19:55:16 +05:30
|
|
|
if item_hash.has_key(report[1]):
|
|
|
|
item_hash[report[1]].append(t)
|
|
|
|
else:
|
|
|
|
item_hash[report[1]] = [t]
|
|
|
|
|
|
|
|
# add a submenu for each category, and populate it with the
|
|
|
|
# GtkTreeItems that are associated with it.
|
|
|
|
key_list = item_hash.keys()
|
|
|
|
key_list.sort()
|
2002-11-03 12:05:06 +05:30
|
|
|
key_list.reverse()
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
prev = None
|
|
|
|
for key in key_list:
|
|
|
|
data = item_hash[key]
|
2002-11-03 12:05:06 +05:30
|
|
|
node = self.store.insert_after(None,prev)
|
|
|
|
self.store.set(node,0,key)
|
2002-10-20 19:55:16 +05:30
|
|
|
next = None
|
|
|
|
data.sort()
|
|
|
|
for item in data:
|
2002-11-03 12:05:06 +05:30
|
|
|
next = self.store.insert_after(node,next)
|
|
|
|
ilist.append((next,item))
|
|
|
|
self.store.set(next,0,item[0])
|
|
|
|
for next,tab in ilist:
|
|
|
|
path = self.store.get_path(next)
|
|
|
|
self.imap[path] = tab
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-12-23 09:18:23 +05:30
|
|
|
def build_report_tree(self,item_list):
|
|
|
|
"""Populates a GtkTree with each menu item assocated with a entry
|
|
|
|
in the lists. The list must consist of a tuples with the following
|
|
|
|
format:
|
|
|
|
|
|
|
|
(task_to_call, category, report name, description, image, status, author_name, author_email)
|
|
|
|
|
|
|
|
Items in the same category are grouped under the same submen. The
|
|
|
|
task_to_call is bound to the 'select' callback of the menu entry."""
|
|
|
|
|
|
|
|
ilist = []
|
|
|
|
|
|
|
|
# build the tree items and group together based on the category name
|
|
|
|
item_hash = {}
|
|
|
|
for report in item_list:
|
|
|
|
category = const.standalone_categories[report[3]]
|
|
|
|
if item_hash.has_key(category):
|
|
|
|
item_hash[category].append(report)
|
|
|
|
else:
|
|
|
|
item_hash[category] = [report]
|
|
|
|
|
|
|
|
# add a submenu for each category, and populate it with the
|
|
|
|
# GtkTreeItems that are associated with it.
|
|
|
|
key_list = item_hash.keys()
|
|
|
|
key_list.sort()
|
|
|
|
key_list.reverse()
|
|
|
|
|
|
|
|
prev = None
|
|
|
|
for key in key_list:
|
|
|
|
data = item_hash[key]
|
|
|
|
node = self.store.insert_after(None,prev)
|
|
|
|
self.store.set(node,0,key)
|
|
|
|
next = None
|
|
|
|
data.sort(lambda x,y: cmp(x[2],y[2]))
|
|
|
|
for item in data:
|
|
|
|
next = self.store.insert_after(node,next)
|
|
|
|
ilist.append((next,item))
|
|
|
|
self.store.set(next,0,item[2])
|
|
|
|
for next,tab in ilist:
|
|
|
|
path = self.store.get_path(next)
|
|
|
|
self.imap[path] = tab
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# ReportPlugins interface class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class ReportPlugins(PluginDialog):
|
|
|
|
"""Displays the dialog box that allows the user to select the
|
|
|
|
report that is desired."""
|
|
|
|
|
2004-02-28 09:21:59 +05:30
|
|
|
def __init__(self,parent,db,active):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Display the dialog box, and build up the list of available
|
|
|
|
reports. This is used to build the selection tree on the left
|
|
|
|
hand side of the dailog box."""
|
2005-01-05 10:32:19 +05:30
|
|
|
PluginDialog.__init__(
|
|
|
|
self,parent,
|
|
|
|
db,
|
|
|
|
active,
|
|
|
|
PluginMgr.report_list,_("Report Selection"),
|
|
|
|
_("Select a report from those available on the left."),
|
|
|
|
_("_Generate"), _("Generate selected report"))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# ToolPlugins interface class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class ToolPlugins(PluginDialog):
|
|
|
|
"""Displays the dialog box that allows the user to select the tool
|
|
|
|
that is desired."""
|
|
|
|
|
2004-02-28 09:21:59 +05:30
|
|
|
def __init__(self,parent,db,active,update):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Display the dialog box, and build up the list of available
|
|
|
|
reports. This is used to build the selection tree on the left
|
|
|
|
hand side of the dailog box."""
|
|
|
|
|
2005-01-05 10:32:19 +05:30
|
|
|
PluginDialog.__init__(
|
|
|
|
self,
|
|
|
|
parent,
|
|
|
|
db,
|
|
|
|
active,
|
|
|
|
PluginMgr.tool_list,
|
|
|
|
_("Tool Selection"),
|
|
|
|
_("Select a tool from those available on the left."),
|
|
|
|
_("_Run"),
|
|
|
|
_("Run selected tool"))
|
2002-10-20 19:55:16 +05:30
|
|
|
self.update = update
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# PluginStatus
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class PluginStatus:
|
|
|
|
"""Displays a dialog showing the status of loaded plugins"""
|
|
|
|
|
|
|
|
def __init__(self):
|
2005-01-05 10:32:19 +05:30
|
|
|
if PluginMgr.status_up:
|
|
|
|
PluginMgr.status_up.close(None)
|
|
|
|
PluginMgr.status_up = self
|
2004-11-20 10:16:47 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
import cStringIO
|
|
|
|
|
2003-08-17 07:44:33 +05:30
|
|
|
self.glade = gtk.glade.XML(const.pluginsFile,"plugstat","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.top = self.glade.get_widget("plugstat")
|
2003-03-06 11:42:51 +05:30
|
|
|
self.top.set_title("%s - GRAMPS" % _('Plugin status'))
|
2002-10-20 19:55:16 +05:30
|
|
|
window = self.glade.get_widget("text")
|
2004-11-20 10:16:47 +05:30
|
|
|
self.pop_button = self.glade.get_widget("pop_button")
|
|
|
|
if GrampsGconfKeys.get_pop_plugin_status():
|
|
|
|
self.pop_button.set_active(1)
|
|
|
|
else:
|
|
|
|
self.pop_button.set_active(0)
|
|
|
|
self.pop_button.connect('toggled',
|
|
|
|
lambda obj: GrampsGconfKeys.save_pop_plugin_status(self.pop_button.get_active()))
|
|
|
|
GrampsGconfKeys.client.notify_add("/apps/gramps/behavior/pop-plugin-status",
|
|
|
|
self.pop_button_update)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.glade.signal_autoconnect({
|
2004-11-20 10:16:47 +05:30
|
|
|
'on_close_clicked' : self.close,
|
|
|
|
'on_help_clicked' : self.help,
|
|
|
|
'on_plugstat_delete_event' : self.on_delete,
|
2002-10-20 19:55:16 +05:30
|
|
|
})
|
|
|
|
|
|
|
|
info = cStringIO.StringIO()
|
2003-03-07 07:51:18 +05:30
|
|
|
|
2005-01-05 10:32:19 +05:30
|
|
|
if len(PluginMgr.expect_list) + len(PluginMgr.failmsg_list) == 0:
|
2003-03-07 07:51:18 +05:30
|
|
|
window.get_buffer().set_text(_('All modules were successfully loaded.'))
|
|
|
|
else:
|
|
|
|
info.write(_("The following modules could not be loaded:"))
|
|
|
|
info.write("\n\n")
|
|
|
|
|
2005-01-05 10:32:19 +05:30
|
|
|
for (filename,msg) in PluginMgr.expect_list:
|
2004-08-20 17:41:56 +05:30
|
|
|
info.write("%s: %s\n\n" % (filename,msg))
|
2003-03-07 07:51:18 +05:30
|
|
|
|
2005-01-05 10:32:19 +05:30
|
|
|
for (filename,msgs) in PluginMgr.failmsg_list:
|
2003-03-07 07:51:18 +05:30
|
|
|
error = str(msgs[0])
|
|
|
|
if error[0:11] == "exceptions.":
|
|
|
|
error = error[11:]
|
2004-08-20 17:41:56 +05:30
|
|
|
info.write("%s: %s\n" % (filename,error) )
|
2003-03-07 07:51:18 +05:30
|
|
|
traceback.print_exception(msgs[0],msgs[1],msgs[2],None,info)
|
|
|
|
info.write('\n')
|
|
|
|
info.seek(0)
|
|
|
|
window.get_buffer().set_text(info.read())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-11-20 10:16:47 +05:30
|
|
|
def on_delete(self,obj1,obj2):
|
2005-01-05 10:32:19 +05:30
|
|
|
PluginMgr.status_up = None
|
2004-11-20 10:16:47 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def close(self,obj):
|
|
|
|
self.top.destroy()
|
2005-01-05 10:32:19 +05:30
|
|
|
PluginMgr.status_up = None
|
2004-11-20 10:16:47 +05:30
|
|
|
|
|
|
|
def help(self,obj):
|
|
|
|
"""Display the GRAMPS manual"""
|
|
|
|
gnome.help_display('gramps-manual','gramps-getting-started')
|
|
|
|
|
|
|
|
def pop_button_update(self, client,cnxn_id,entry,data):
|
|
|
|
self.pop_button.set_active(GrampsGconfKeys.get_pop_plugin_status())
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Building pulldown menus
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def build_menu(top_menu,list,callback):
|
|
|
|
report_menu = gtk.Menu()
|
|
|
|
report_menu.show()
|
|
|
|
|
2004-08-20 17:41:56 +05:30
|
|
|
hash_data = {}
|
2002-10-20 19:55:16 +05:30
|
|
|
for report in list:
|
2004-08-20 17:41:56 +05:30
|
|
|
if hash_data.has_key(report[1]):
|
|
|
|
hash_data[report[1]].append((report[2],report[0]))
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-08-20 17:41:56 +05:30
|
|
|
hash_data[report[1]] = [(report[2],report[0])]
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-08-20 17:41:56 +05:30
|
|
|
catlist = hash_data.keys()
|
2002-10-20 19:55:16 +05:30
|
|
|
catlist.sort()
|
|
|
|
for key in catlist:
|
|
|
|
entry = gtk.MenuItem(key)
|
|
|
|
entry.show()
|
|
|
|
report_menu.append(entry)
|
|
|
|
submenu = gtk.Menu()
|
|
|
|
submenu.show()
|
|
|
|
entry.set_submenu(submenu)
|
2004-08-20 17:41:56 +05:30
|
|
|
lst = hash_data[key]
|
|
|
|
lst.sort()
|
|
|
|
for name in lst:
|
2003-07-16 02:59:38 +05:30
|
|
|
subentry = gtk.MenuItem("%s..." % name[0])
|
2002-10-20 19:55:16 +05:30
|
|
|
subentry.show()
|
|
|
|
subentry.connect("activate",callback,name[1])
|
|
|
|
submenu.append(subentry)
|
|
|
|
top_menu.set_submenu(report_menu)
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# build_report_menu
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def build_report_menu(top_menu,callback):
|
2004-12-22 07:26:37 +05:30
|
|
|
# build_menu(top_menu,_reports,callback)
|
|
|
|
#def build_menu(top_menu,list,callback):
|
|
|
|
report_menu = gtk.Menu()
|
|
|
|
report_menu.show()
|
|
|
|
|
|
|
|
hash_data = {}
|
2005-01-05 10:32:19 +05:30
|
|
|
for report in PluginMgr.report_list:
|
2004-12-22 10:25:12 +05:30
|
|
|
standalone_category = const.standalone_categories[report[3]]
|
2004-12-22 07:26:37 +05:30
|
|
|
if hash_data.has_key(standalone_category):
|
|
|
|
hash_data[standalone_category].append(
|
2004-12-22 10:25:12 +05:30
|
|
|
(report[0],report[1],report[2],report[4],report[3]))
|
2004-12-22 07:26:37 +05:30
|
|
|
else:
|
|
|
|
hash_data[standalone_category] = [
|
2004-12-22 10:25:12 +05:30
|
|
|
(report[0],report[1],report[2],report[4],report[3])]
|
|
|
|
|
|
|
|
# 0 1 2 3 4
|
|
|
|
#report_class, options_class, translated_name, name, category,
|
2004-12-22 07:26:37 +05:30
|
|
|
|
|
|
|
catlist = hash_data.keys()
|
|
|
|
catlist.sort()
|
|
|
|
for key in catlist:
|
|
|
|
entry = gtk.MenuItem(key)
|
|
|
|
entry.show()
|
|
|
|
report_menu.append(entry)
|
|
|
|
submenu = gtk.Menu()
|
|
|
|
submenu.show()
|
|
|
|
entry.set_submenu(submenu)
|
|
|
|
lst = hash_data[key]
|
|
|
|
lst.sort()
|
|
|
|
for name in lst:
|
2004-12-22 10:25:12 +05:30
|
|
|
subentry = gtk.MenuItem("%s..." % name[2])
|
2004-12-22 07:26:37 +05:30
|
|
|
subentry.show()
|
2004-12-22 10:25:12 +05:30
|
|
|
subentry.connect("activate",callback,Report.report,name[0],name[1],name[2],name[3],name[4])
|
2004-12-22 07:26:37 +05:30
|
|
|
submenu.append(subentry)
|
|
|
|
top_menu.set_submenu(report_menu)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# build_tools_menu
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def build_tools_menu(top_menu,callback):
|
2005-01-05 10:32:19 +05:30
|
|
|
build_menu(top_menu,PluginMgr.tool_list,callback)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# get_text_doc_menu
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-12-22 07:26:37 +05:30
|
|
|
|
2004-12-28 05:53:49 +05:30
|
|
|
class GrampsDocFormatComboBox(gtk.ComboBox):
|
|
|
|
|
|
|
|
def set(self,tables,callback,obj=None,active=None):
|
|
|
|
self.store = gtk.ListStore(str)
|
|
|
|
self.set_model(self.store)
|
|
|
|
cell = gtk.CellRendererText()
|
|
|
|
self.pack_start(cell,True)
|
|
|
|
self.add_attribute(cell,'text',0)
|
|
|
|
|
|
|
|
out_pref = GrampsGconfKeys.get_output_preference()
|
|
|
|
index = 0
|
|
|
|
_textdoc.sort()
|
|
|
|
active_index = 0
|
|
|
|
for item in _textdoc:
|
|
|
|
if tables and item[2] == 0:
|
|
|
|
continue
|
|
|
|
name = item[0]
|
|
|
|
self.store.append(row=[name])
|
|
|
|
#if callback:
|
|
|
|
# menuitem.connect("activate",callback)
|
|
|
|
if name == active:
|
|
|
|
active_index = index
|
|
|
|
elif not active and name == out_pref:
|
|
|
|
active_index = index
|
|
|
|
index = index + 1
|
|
|
|
self.set_active(active_index)
|
|
|
|
|
|
|
|
def get_label(self):
|
|
|
|
return _textdoc[self.get_active()][0]
|
|
|
|
|
|
|
|
def get_reference(self):
|
|
|
|
return _textdoc[self.get_active()][1]
|
|
|
|
|
|
|
|
def get_paper(self):
|
|
|
|
return _textdoc[self.get_active()][3]
|
|
|
|
|
|
|
|
def get_styles(self):
|
|
|
|
return _textdoc[self.get_active()][4]
|
|
|
|
|
|
|
|
def get_ext(self):
|
|
|
|
return _textdoc[self.get_active()][5]
|
|
|
|
|
|
|
|
def get_printable(self):
|
|
|
|
return _textdoc[self.get_active()][6]
|
|
|
|
|
|
|
|
class GrampsDrawFormatComboBox(gtk.ComboBox):
|
|
|
|
|
|
|
|
def set(self,tables,callback,obj=None,active=None):
|
|
|
|
self.store = gtk.ListStore(str)
|
|
|
|
self.set_model(self.store)
|
|
|
|
cell = gtk.CellRendererText()
|
|
|
|
self.pack_start(cell,True)
|
|
|
|
self.add_attribute(cell,'text',0)
|
|
|
|
|
|
|
|
out_pref = GrampsGconfKeys.get_output_preference()
|
|
|
|
index = 0
|
|
|
|
_drawdoc.sort()
|
|
|
|
active_index = 0
|
|
|
|
for item in _drawdoc:
|
|
|
|
if tables and item[2] == 0:
|
|
|
|
continue
|
|
|
|
name = item[0]
|
|
|
|
self.store.append(row=[name])
|
|
|
|
#if callback:
|
|
|
|
# menuitem.connect("activate",callback)
|
|
|
|
if name == active:
|
|
|
|
active_index = index
|
|
|
|
elif not active and name == out_pref:
|
|
|
|
active_index = index
|
|
|
|
index = index + 1
|
|
|
|
self.set_active(active_index)
|
2004-12-22 07:26:37 +05:30
|
|
|
|
2004-12-28 05:53:49 +05:30
|
|
|
def get_reference(self):
|
|
|
|
return _drawdoc[self.get_active()][1]
|
|
|
|
|
|
|
|
def get_label(self):
|
|
|
|
return _drawdoc[self.get_active()][0]
|
|
|
|
|
|
|
|
def get_paper(self):
|
|
|
|
return _drawdoc[self.get_active()][2]
|
|
|
|
|
|
|
|
def get_styles(self):
|
|
|
|
return _drawdoc[self.get_active()][3]
|
|
|
|
|
|
|
|
def get_ext(self):
|
|
|
|
return _drawdoc[self.get_active()][4]
|
|
|
|
|
|
|
|
def get_printable(self):
|
|
|
|
return _drawdoc[self.get_active()][5]
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-12-30 05:51:49 +05:30
|
|
|
class GrampsBookFormatComboBox(gtk.ComboBox):
|
2003-06-30 08:42:22 +05:30
|
|
|
|
2004-12-30 05:51:49 +05:30
|
|
|
def set(self,tables,callback,obj=None,active=None):
|
|
|
|
self.store = gtk.ListStore(str)
|
|
|
|
self.set_model(self.store)
|
|
|
|
cell = gtk.CellRendererText()
|
|
|
|
self.pack_start(cell,True)
|
|
|
|
self.add_attribute(cell,'text',0)
|
|
|
|
|
|
|
|
out_pref = GrampsGconfKeys.get_output_preference()
|
|
|
|
index = 0
|
|
|
|
_drawdoc.sort()
|
|
|
|
active_index = 0
|
|
|
|
self.data = []
|
|
|
|
for item in _bookdoc:
|
|
|
|
if tables and item[2] == 0:
|
|
|
|
continue
|
|
|
|
self.data.append(item)
|
|
|
|
name = item[0]
|
|
|
|
self.store.append(row=[name])
|
|
|
|
if name == active:
|
|
|
|
active_index = index
|
|
|
|
elif not active and name == out_pref:
|
|
|
|
active_index = index
|
|
|
|
index += 1
|
|
|
|
self.set_active(active_index)
|
|
|
|
|
|
|
|
def get_reference(self):
|
|
|
|
return self.data[self.get_active()][1]
|
|
|
|
|
|
|
|
def get_label(self):
|
|
|
|
return self.data[self.get_active()][0]
|
|
|
|
|
|
|
|
def get_paper(self):
|
|
|
|
return self.data[self.get_active()][3]
|
|
|
|
|
|
|
|
def get_ext(self):
|
|
|
|
return self.data[self.get_active()][5]
|
|
|
|
|
|
|
|
def get_printable(self):
|
|
|
|
return self.data[self.get_active()][6]
|