161 lines
4.9 KiB
Python
161 lines
4.9 KiB
Python
import moo
|
|
import gtk
|
|
import pango
|
|
import re
|
|
|
|
ActionInfo = moo.edit.Plugin.ActionInfo
|
|
UIInfo = moo.edit.Plugin.UIInfo
|
|
|
|
SHOW_LOG_WINDOW = False
|
|
|
|
try:
|
|
import pyconsole
|
|
have_pyconsole = True
|
|
except ImportError:
|
|
have_pyconsole = False
|
|
|
|
PLUGIN_ID = "PyStuff"
|
|
|
|
class FileLine(object):
|
|
def __init__(self, filename, line):
|
|
object.__init__(self)
|
|
self.filename = filename
|
|
self.line = line
|
|
|
|
class Plugin(moo.edit.Plugin):
|
|
def __init__(self):
|
|
moo.edit.Plugin.__init__(self)
|
|
|
|
self.info = {
|
|
"id" : PLUGIN_ID,
|
|
"name" : "Python Stuff",
|
|
"description" : "Python stuff",
|
|
"author" : "Yevgen Muntyan <muntyan@math.tamu.edu>",
|
|
"version" : "3.1415926",
|
|
"enabled" : True,
|
|
"visible" : True
|
|
}
|
|
|
|
if SHOW_LOG_WINDOW:
|
|
a = ActionInfo(moo.edit.EditWindow, "ShowLogWindow",
|
|
name="Show Log Window",
|
|
label="Show Log Window",
|
|
callback=self.show_log_window)
|
|
self.actions.append(a)
|
|
self.ui.append(UIInfo("ToolsMenu", "ShowLogWindow"))
|
|
|
|
if have_pyconsole:
|
|
a = ActionInfo(moo.edit.EditWindow, "ShowPythonConsole",
|
|
name="Show Python Console",
|
|
label="Show Python Console",
|
|
callback=self.show_console)
|
|
self.actions.append(a)
|
|
self.ui.append(UIInfo("ToolsMenu", "ShowPythonConsole"))
|
|
|
|
""" Run file """
|
|
self.file_pat = re.compile(r'\s*File\s*"([^"]+)",\s*line\s*(\d+).*')
|
|
a = ActionInfo(moo.edit.EditWindow, "RunFile",
|
|
name="Run File",
|
|
label="Run File",
|
|
icon_stock_id=moo.utils.STOCK_EXECUTE,
|
|
accel="<shift>F9",
|
|
callback=self.run_file)
|
|
self.actions.append(a)
|
|
self.ui.append(UIInfo("ToolsMenu", "RunFile"))
|
|
|
|
def show_log_window(self, window):
|
|
moo.app.get_instance().show_python_console()
|
|
|
|
def show_console(self, window):
|
|
window = gtk.Window()
|
|
swin = gtk.ScrolledWindow()
|
|
swin.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_ALWAYS)
|
|
window.add(swin)
|
|
|
|
console_type = pyconsole.ConsoleType(moo.edit.TextView)
|
|
console = console_type(use_rlcompleter=False, start_script=
|
|
"import moo\nimport gtk\n")
|
|
console.set_property("highlight-current-line", False)
|
|
editor = moo.edit.editor_instance()
|
|
mgr = editor.get_lang_mgr()
|
|
lang = mgr.get_lang("PythonConsole")
|
|
console.set_lang(lang)
|
|
console.modify_font(pango.FontDescription("Courier New 11"))
|
|
|
|
swin.add(console)
|
|
window.set_default_size(400,300)
|
|
window.set_title("pythony")
|
|
window.show_all()
|
|
|
|
|
|
def ensure_output(self, window):
|
|
pane = window.get_pane(PLUGIN_ID)
|
|
if not pane:
|
|
label = moo.utils.PaneLabel(icon_stock_id=moo.utils.STOCK_EXECUTE, label="Output")
|
|
output = moo.edit.CmdView()
|
|
output.set_property("highlight-current-line", True)
|
|
output.connect("activate", self.output_activate)
|
|
output.connect("stderr-line", self.stderr_line)
|
|
|
|
pane = gtk.ScrolledWindow()
|
|
pane.set_shadow_type(gtk.SHADOW_ETCHED_IN)
|
|
pane.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
|
|
pane.add(output)
|
|
pane.show_all()
|
|
|
|
pane.output = output
|
|
window.add_pane(PLUGIN_ID, pane, label, moo.utils.PANE_POS_BOTTOM)
|
|
return pane
|
|
|
|
def output_activate(self, output, line):
|
|
data = output.get_line_data(line)
|
|
|
|
if not data:
|
|
return False
|
|
|
|
editor = moo.edit.editor_instance()
|
|
editor.open_file(None, output, data.filename)
|
|
|
|
doc = editor.get_doc(data.filename)
|
|
|
|
if not doc:
|
|
return True
|
|
|
|
editor.set_active_doc(doc)
|
|
doc.grab_focus()
|
|
|
|
if data.line >= 0:
|
|
doc.move_cursor(data.line, -1, True)
|
|
|
|
return True
|
|
|
|
def stderr_line(self, output, line):
|
|
match = self.file_pat.match(line)
|
|
|
|
if not match:
|
|
return False
|
|
|
|
data = FileLine(match.group(1), int(match.group(2)) - 1)
|
|
|
|
line_no = output.start_line()
|
|
output.write(line, -1, output.lookup_tag("error"))
|
|
output.end_line()
|
|
output.set_line_data(line_no, data)
|
|
|
|
return True
|
|
|
|
def run_file(self, window):
|
|
doc = window.get_active_doc()
|
|
if not doc or not doc.save():
|
|
return
|
|
pane = self.ensure_output(window)
|
|
pane.output.clear()
|
|
window.paned.present_pane(pane)
|
|
pane.output.run_command("python '%s'" % doc.get_filename())
|
|
|
|
def detach_win(self, window):
|
|
window.remove_pane(PLUGIN_ID)
|
|
|
|
moo.edit.plugin_register(Plugin)
|
|
# kate: indent-width 4; space-indent on
|