0f1878e639
* src/plugins/changetype.glade: delete event. * src/plugins/ReorderIds.py: Disable for the time being. * src/plugins/Eval.py: icon, window management, single instance. * src/plugins/eval.glade: dialog. * src/plugins/Leak.py: icon, window management, single instance. * src/plugins/leak.glade: dialog. svn: r4234
139 lines
4.2 KiB
Python
139 lines
4.2 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2003-2005 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$
|
|
|
|
"""
|
|
Show uncollected objects in a window.
|
|
"""
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# standard python modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import os
|
|
from gettext import gettext as _
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# GNOME/GTK modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import gtk
|
|
import gtk.glade
|
|
import gc
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# GRAMPS modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
import Utils
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Actual tool
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class Leak:
|
|
|
|
def __init__(self,parent):
|
|
self.parent = parent
|
|
if self.parent.child_windows.has_key(self.__class__):
|
|
self.parent.child_windows[self.__class__].present(None)
|
|
return
|
|
self.win_key = self.__class__
|
|
|
|
glade_file = "%s/%s" % (os.path.dirname(__file__),"leak.glade")
|
|
self.glade = gtk.glade.XML(glade_file,"top","gramps")
|
|
|
|
self.top = self.glade.get_widget("top")
|
|
self.top.set_icon(self.parent.topWindow.get_icon())
|
|
self.eval = self.glade.get_widget("eval")
|
|
self.ebuf = self.eval.get_buffer()
|
|
gc.set_debug(gc.DEBUG_UNCOLLECTABLE | gc.DEBUG_OBJECTS | gc.DEBUG_SAVEALL)
|
|
|
|
self.title = _('Uncollected Objects Tool')
|
|
Utils.set_titles(self.top,
|
|
self.glade.get_widget('title'),
|
|
self.title)
|
|
|
|
self.glade.signal_autoconnect({
|
|
"on_apply_clicked" : self.apply_clicked,
|
|
"on_delete_event" : self.on_delete_event,
|
|
"on_close_clicked" : self.close_clicked,
|
|
})
|
|
self.display()
|
|
|
|
self.add_itself_to_menu()
|
|
self.top.show()
|
|
|
|
def on_delete_event(self,obj,b):
|
|
self.remove_itself_from_menu()
|
|
|
|
def close_clicked(self,obj):
|
|
self.remove_itself_from_menu()
|
|
self.top.destroy()
|
|
|
|
def add_itself_to_menu(self):
|
|
self.parent.child_windows[self.win_key] = self
|
|
self.parent_menu_item = gtk.MenuItem(self.title)
|
|
self.parent_menu_item.connect("activate",self.present)
|
|
self.parent_menu_item.show()
|
|
self.parent.winsmenu.append(self.parent_menu_item)
|
|
|
|
def remove_itself_from_menu(self):
|
|
del self.parent.child_windows[self.win_key]
|
|
self.parent_menu_item.destroy()
|
|
|
|
def present(self,obj):
|
|
self.top.present()
|
|
|
|
def display(self):
|
|
gc.collect()
|
|
mylist = []
|
|
if len(gc.garbage):
|
|
for each in gc.garbage:
|
|
mylist.append(str(each))
|
|
self.ebuf.set_text(_("Uncollected objects:\n\n") + '\n\n'.join(mylist))
|
|
else:
|
|
self.ebuf.set_text(_("No uncollected objects\n") + str(gc.get_debug()))
|
|
|
|
def apply_clicked(self,obj):
|
|
self.display()
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
#
|
|
#
|
|
#------------------------------------------------------------------------
|
|
from PluginMgr import register_tool
|
|
|
|
def runtool(database,person,callback,parent=None):
|
|
Leak(parent)
|
|
|
|
register_tool(
|
|
runtool,
|
|
_("Show uncollected objects"),
|
|
category=_("Debug"),
|
|
description=_("Provide a window listing all uncollected objects"),
|
|
)
|