gramps/src/plugins/Eval.py

120 lines
3.6 KiB
Python
Raw Normal View History

2003-05-13 03:26:33 +00:00
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2003-2004 Donald N. Allingham
2003-05-13 03:26:33 +00:00
#
# 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$
2003-05-13 03:26:33 +00:00
"""
Provides a python evaluation window
"""
import os
2003-05-14 02:45:11 +00:00
import cStringIO
import sys
2003-05-13 03:26:33 +00:00
import gtk
import gtk.glade
2003-05-14 02:45:11 +00:00
import Utils
2003-08-17 02:14:33 +00:00
from gettext import gettext as _
2003-05-13 03:26:33 +00:00
class EvalWindow:
def __init__(self,parent):
self.parent = parent
self.win_key = self
2003-05-13 03:26:33 +00:00
glade_file = "%s/%s" % (os.path.dirname(__file__),"eval.glade")
2003-08-17 02:14:33 +00:00
self.glade = gtk.glade.XML(glade_file,"top","gramps")
2003-05-13 03:26:33 +00:00
self.top = self.glade.get_widget("top")
2003-05-14 02:45:11 +00:00
self.dbuf = self.glade.get_widget("display").get_buffer()
self.ebuf = self.glade.get_widget("eval").get_buffer()
self.error = self.glade.get_widget("error").get_buffer()
2003-05-13 03:26:33 +00:00
self.glade.signal_autoconnect({
"on_apply_clicked" : self.apply_clicked,
"on_close_clicked" : self.close_clicked,
"on_delete_event" : self.on_delete_event,
2003-05-13 03:26:33 +00:00
"on_clear_clicked" : self.clear_clicked,
})
2003-05-14 02:45:11 +00:00
Utils.set_titles(self.top,self.glade.get_widget('title'),
2003-05-24 03:40:58 +00:00
_("Python Evaluation Window"))
2003-05-14 02:45:11 +00:00
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(_('Python Evaluation Window'))
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()
2003-05-13 03:26:33 +00:00
def apply_clicked(self,obj):
text = unicode(self.ebuf.get_text(self.ebuf.get_start_iter(),
self.ebuf.get_end_iter(),False))
2003-05-14 02:45:11 +00:00
outtext = cStringIO.StringIO()
errtext = cStringIO.StringIO()
sys.stdout = outtext
sys.stderr = errtext
2003-05-13 03:26:33 +00:00
exec(text)
2003-05-14 02:45:11 +00:00
self.dbuf.set_text(outtext.getvalue())
self.error.set_text(errtext.getvalue())
sys.stdout = sys.__stdout__
sys.stderr = sys.__stderr__
2003-05-13 03:26:33 +00:00
def clear_clicked(self,obj):
2003-05-14 02:45:11 +00:00
self.dbuf.set_text("")
self.ebuf.set_text("")
self.error.set_text("")
2003-05-13 03:26:33 +00:00
#------------------------------------------------------------------------
#
#
#
#------------------------------------------------------------------------
from PluginMgr import register_tool
2003-05-13 03:26:33 +00:00
def runtool(database,person,callback,parent):
EvalWindow(parent)
2003-05-13 03:26:33 +00:00
register_tool(
runtool,
2003-05-23 22:35:13 +00:00
_("Python evaluation window"),
category=_("Debug"),
description=_("Provides a window that can evaluate python code")
2003-05-13 03:26:33 +00:00
)