eog-plugins r56 - in trunk: . plugins/pythonconsole



Author: friemann
Date: Sun Feb 15 10:58:22 2009
New Revision: 56
URL: http://svn.gnome.org/viewvc/eog-plugins?rev=56&view=rev

Log:
2009-02-15  Felix Riemann  <friemann svn gnome org>

	* configure.ac:
	* plugins/pythonconsole/*:
	Add pythonconsole plugin based on the gedit plugin of the same name.
	Fixes bug #462338 (Diego Escalante Urrelo, Francisco Rojas).


Added:
   trunk/plugins/pythonconsole/
   trunk/plugins/pythonconsole/Makefile.am
   trunk/plugins/pythonconsole/console.py
   trunk/plugins/pythonconsole/pythonconsole.eog-plugin.desktop.in
   trunk/plugins/pythonconsole/pythonconsole.py
Modified:
   trunk/ChangeLog
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Sun Feb 15 10:58:22 2009
@@ -70,9 +70,9 @@
 USEFUL_PLUGINS="postr champlain"
 DEFAULT_PLUGINS="postr champlain"
 
-PYTHON_ALL_PLUGINS=""
-PYTHON_USEFUL_PLUGINS=""
-PYTHON_DEFAULT_PLUGINS=""
+PYTHON_ALL_PLUGINS="pythonconsole"
+PYTHON_USEFUL_PLUGINS="pythonconsole"
+PYTHON_DEFAULT_PLUGINS="pythonconsole"
 
 DIST_PLUGINS="$ALL_PLUGINS $PYTHON_ALL_PLUGINS"
 
@@ -334,8 +334,9 @@
 AC_CONFIG_FILES([
 Makefile
 plugins/Makefile
-plugins/postr/Makefile
 plugins/champlain/Makefile
+plugins/postr/Makefile
+plugins/pythonconsole/Makefile
 po/Makefile.in])
 
 AC_OUTPUT

Added: trunk/plugins/pythonconsole/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/plugins/pythonconsole/Makefile.am	Sun Feb 15 10:58:22 2009
@@ -0,0 +1,16 @@
+# Python Console plugin
+plugindir = $(libdir)/eog/plugins
+plugin_in_files = pythonconsole.eog-plugin.desktop.in
+
+plugin_PYTHON = \
+	pythonconsole.py \
+	console.py
+
+%.eog-plugin: %.eog-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
+
+plugin_DATA = $(plugin_in_files:.eog-plugin.desktop.in=.eog-plugin)
+
+EXTRA_DIST = $(plugin_in_files)
+
+CLEANFILES = $(plugin_DATA)
+DISTCLEANFILES = $(plugin_DATA)

Added: trunk/plugins/pythonconsole/console.py
==============================================================================
--- (empty file)
+++ trunk/plugins/pythonconsole/console.py	Sun Feb 15 10:58:22 2009
@@ -0,0 +1,304 @@
+# -*- coding: utf-8 -*-
+
+# pythonconsole.py -- Console widget
+#
+# Copyright (C) 2006 - Steve FrÃcinaux
+#
+# 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, 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.
+
+# Parts from "Interactive Python-GTK Console" (stolen from epiphany's console.py)
+#     Copyright (C), 1998 James Henstridge <james daa com au>
+#     Copyright (C), 2005 Adam Hooper <adamh densi com>
+# Bits from gedit Python Console Plugin
+#     Copyrignt (C), 2005 RaphaÃl Slinckx
+
+import string
+import sys
+import re
+import traceback
+import gobject
+import gtk
+import pango
+
+__all__ = ('PythonConsole', 'OutFile')
+
+class PythonConsole(gtk.ScrolledWindow):
+	def __init__(self, namespace = {}):
+		gtk.ScrolledWindow.__init__(self)
+
+		self.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC);
+		self.set_shadow_type(gtk.SHADOW_IN)
+		self.view = gtk.TextView()
+		self.view.modify_font(pango.FontDescription('Monospace'))
+		self.view.set_editable(True)
+		self.view.set_wrap_mode(gtk.WRAP_WORD_CHAR)
+		self.add(self.view)
+		self.view.show()
+
+		buffer = self.view.get_buffer()
+		self.normal = buffer.create_tag("normal")
+		self.error  = buffer.create_tag("error")
+		self.error.set_property("foreground", "red")
+		self.command = buffer.create_tag("command")
+		self.command.set_property("foreground", "blue")
+
+		self.__spaces_pattern = re.compile(r'^\s+')		
+		self.namespace = namespace
+
+		self.block_command = False
+
+		# Init first line
+		buffer.create_mark("input-line", buffer.get_end_iter(), True)
+		buffer.insert(buffer.get_end_iter(), ">>> ")
+		buffer.create_mark("input", buffer.get_end_iter(), True)
+
+		# Init history
+		self.history = ['']
+		self.history_pos = 0
+		self.current_command = ''
+		self.namespace['__history__'] = self.history
+
+		# Set up hooks for standard output.
+		self.stdout = OutFile(self, sys.stdout.fileno(), self.normal)
+		self.stderr = OutFile(self, sys.stderr.fileno(), self.error)
+		
+		# Signals
+		self.view.connect("key-press-event", self.__key_press_event_cb)
+		buffer.connect("mark-set", self.__mark_set_cb)
+		
+ 		
+	def __key_press_event_cb(self, view, event):
+		if event.keyval == gtk.keysyms.d and event.state == gtk.gdk.CONTROL_MASK:
+			self.destroy()
+		
+		elif event.keyval == gtk.keysyms.Return and event.state == gtk.gdk.CONTROL_MASK:
+			# Get the command
+			buffer = view.get_buffer()
+			inp_mark = buffer.get_mark("input")
+			inp = buffer.get_iter_at_mark(inp_mark)
+			cur = buffer.get_end_iter()
+			line = buffer.get_text(inp, cur)
+			self.current_command = self.current_command + line + "\n"
+			self.history_add(line)
+
+			# Prepare the new line
+			cur = buffer.get_end_iter()
+			buffer.insert(cur, "\n... ")
+			cur = buffer.get_end_iter()
+			buffer.move_mark(inp_mark, cur)
+			
+			# Keep indentation of precendent line
+			spaces = re.match(self.__spaces_pattern, line)
+			if spaces is not None:
+				buffer.insert(cur, line[spaces.start() : spaces.end()])
+				cur = buffer.get_end_iter()
+				
+			buffer.place_cursor(cur)
+			gobject.idle_add(self.scroll_to_end)
+			return True
+		
+		elif event.keyval == gtk.keysyms.Return:
+			# Get the marks
+			buffer = view.get_buffer()
+			lin_mark = buffer.get_mark("input-line")
+			inp_mark = buffer.get_mark("input")
+
+			# Get the command line
+			inp = buffer.get_iter_at_mark(inp_mark)
+			cur = buffer.get_end_iter()
+			line = buffer.get_text(inp, cur)
+			self.current_command = self.current_command + line + "\n"
+			self.history_add(line)
+
+			# Make the line blue
+			lin = buffer.get_iter_at_mark(lin_mark)
+			buffer.apply_tag(self.command, lin, cur)
+			buffer.insert(cur, "\n")
+			
+			cur_strip = self.current_command.rstrip()
+
+			if cur_strip.endswith(":") \
+			or (self.current_command[-2:] != "\n\n" and self.block_command):
+				# Unfinished block command
+				self.block_command = True
+				com_mark = "... "
+			elif cur_strip.endswith("\\"):
+				com_mark = "... "
+			else:
+				# Eval the command
+				self.__run(self.current_command)
+				self.current_command = ''
+				self.block_command = False
+				com_mark = ">>> "
+
+			# Prepare the new line
+			cur = buffer.get_end_iter()
+			buffer.move_mark(lin_mark, cur)
+			buffer.insert(cur, com_mark)
+			cur = buffer.get_end_iter()
+			buffer.move_mark(inp_mark, cur)
+			buffer.place_cursor(cur)
+			gobject.idle_add(self.scroll_to_end)
+			return True
+
+		elif event.keyval == gtk.keysyms.KP_Down or event.keyval == gtk.keysyms.Down:
+			# Next entry from history
+			view.emit_stop_by_name("key_press_event")
+			self.history_down()
+			gobject.idle_add(self.scroll_to_end)
+			return True
+
+		elif event.keyval == gtk.keysyms.KP_Up or event.keyval == gtk.keysyms.Up:
+			# Previous entry from history
+			view.emit_stop_by_name("key_press_event")
+			self.history_up()
+			gobject.idle_add(self.scroll_to_end)
+			return True
+
+		elif event.keyval == gtk.keysyms.KP_Left or event.keyval == gtk.keysyms.Left or \
+		     event.keyval == gtk.keysyms.BackSpace:
+			buffer = view.get_buffer()
+			inp = buffer.get_iter_at_mark(buffer.get_mark("input"))
+			cur = buffer.get_iter_at_mark(buffer.get_insert())
+			return inp.compare(cur) == 0
+
+		elif event.keyval == gtk.keysyms.Home:
+			# Go to the begin of the command instead of the begin of the line
+			buffer = view.get_buffer()
+			inp = buffer.get_iter_at_mark(buffer.get_mark("input"))
+			if event.state == gtk.gdk.SHIFT_MASK:
+				buffer.move_mark_by_name("insert", inp)
+			else:
+				buffer.place_cursor(inp)
+			return True
+		
+	def __mark_set_cb(self, buffer, iter, name):
+		input = buffer.get_iter_at_mark(buffer.get_mark("input"))
+		pos   = buffer.get_iter_at_mark(buffer.get_insert())
+		self.view.set_editable(pos.compare(input) != -1)
+
+	def get_command_line(self):
+		buffer = self.view.get_buffer()
+		inp = buffer.get_iter_at_mark(buffer.get_mark("input"))
+		cur = buffer.get_end_iter()
+		return buffer.get_text(inp, cur)
+	
+	def set_command_line(self, command):
+		buffer = self.view.get_buffer()
+		mark = buffer.get_mark("input")
+		inp = buffer.get_iter_at_mark(mark)
+		cur = buffer.get_end_iter()
+		buffer.delete(inp, cur)
+		buffer.insert(inp, command)
+		buffer.select_range(buffer.get_iter_at_mark(mark), buffer.get_end_iter())
+		self.view.grab_focus()
+	
+	def history_add(self, line):
+		if line.strip() != '':
+			self.history_pos = len(self.history)
+			self.history[self.history_pos - 1] = line
+			self.history.append('')
+	
+	def history_up(self):
+		if self.history_pos > 0:
+			self.history[self.history_pos] = self.get_command_line()
+			self.history_pos = self.history_pos - 1
+			self.set_command_line(self.history[self.history_pos])
+			
+	def history_down(self):
+		if self.history_pos < len(self.history) - 1:
+			self.history[self.history_pos] = self.get_command_line()
+			self.history_pos = self.history_pos + 1
+			self.set_command_line(self.history[self.history_pos])
+	
+	def scroll_to_end(self):
+		iter = self.view.get_buffer().get_end_iter()
+		self.view.scroll_to_iter(iter, 0.0)
+		return False
+
+	def write(self, text, tag = None):
+		buffer = self.view.get_buffer()
+		if tag is None:
+			buffer.insert(buffer.get_end_iter(), text)
+		else:
+			buffer.insert_with_tags(buffer.get_end_iter(), text, tag)
+		gobject.idle_add(self.scroll_to_end)
+ 	
+ 	def eval(self, command, display_command = False):
+		buffer = self.view.get_buffer()
+		lin = buffer.get_mark("input-line")
+		buffer.delete(buffer.get_iter_at_mark(lin),
+		              buffer.get_end_iter())
+ 
+		if isinstance(command, list) or isinstance(command, tuple):
+ 			for c in command:
+		 		if display_command:
+		 			self.write(">>> " + c + "\n", self.command)
+ 				self.__run(c)
+		else:
+	 		if display_command:
+	 			self.write(">>> " + c + "\n", self.command)
+			self.__run(command) 
+
+		cur = buffer.get_end_iter()
+		buffer.move_mark_by_name("input-line", cur)
+		buffer.insert(cur, ">>> ")
+		cur = buffer.get_end_iter()
+		buffer.move_mark_by_name("input", cur)
+		self.view.scroll_to_iter(buffer.get_end_iter(), 0.0)
+	
+ 	def __run(self, command):
+		sys.stdout, self.stdout = self.stdout, sys.stdout
+		sys.stderr, self.stderr = self.stderr, sys.stderr
+		
+		try:
+			try:
+				r = eval(command, self.namespace, self.namespace)
+				if r is not None:
+					print `r`
+			except SyntaxError:
+				exec command in self.namespace
+		except:
+			if hasattr(sys, 'last_type') and sys.last_type == SystemExit:
+				self.destroy()
+			else:
+				traceback.print_exc()
+
+		sys.stdout, self.stdout = self.stdout, sys.stdout
+		sys.stderr, self.stderr = self.stderr, sys.stderr
+
+	def destroy(self):
+		pass
+		#gtk.ScrolledWindow.destroy(self)
+		
+class OutFile:
+	"""A fake output file object. It sends output to a TK test widget,
+	and if asked for a file number, returns one set on instance creation"""
+	def __init__(self, console, fn, tag):
+		self.fn = fn
+		self.console = console
+		self.tag = tag
+	def close(self):         pass
+	def flush(self):         pass
+	def fileno(self):        return self.fn
+	def isatty(self):        return 0
+	def read(self, a):       return ''
+	def readline(self):      return ''
+	def readlines(self):     return []
+	def write(self, s):      self.console.write(s, self.tag)
+	def writelines(self, l): self.console.write(l, self.tag)
+	def seek(self, a):       raise IOError, (29, 'Illegal seek')
+	def tell(self):          raise IOError, (29, 'Illegal seek')
+	truncate = tell

Added: trunk/plugins/pythonconsole/pythonconsole.eog-plugin.desktop.in
==============================================================================
--- (empty file)
+++ trunk/plugins/pythonconsole/pythonconsole.eog-plugin.desktop.in	Sun Feb 15 10:58:22 2009
@@ -0,0 +1,10 @@
+[Eog Plugin]
+Loader=python
+Module=pythonconsole
+IAge=2
+_Name=Python Console
+_Description=Python console for Eye of GNOME
+Icon=about
+Authors=Diego Escalante Urrelo <diegoe gnome org>
+Copyright=Copyright  2008 Diego Escalante Urrelo
+Website=http://www.gnome.org/

Added: trunk/plugins/pythonconsole/pythonconsole.py
==============================================================================
--- (empty file)
+++ trunk/plugins/pythonconsole/pythonconsole.py	Sun Feb 15 10:58:22 2009
@@ -0,0 +1,100 @@
+# -*- coding: utf-8 -*-
+
+# __init__.py -- plugin object
+#
+# Copyright (C) 2007 - Diego Escalante Urrelo
+# Copyright (C) 2006 - Steve FrÃcinaux
+#
+# 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, 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.
+
+# Parts from "Interactive Python-GTK Console" (stolen from gedit's python console.pe which was actually stolen from epiphany's console.py)
+#     Copyright (C), 1998 James Henstridge <james daa com au>
+#     Copyright (C), 2005 Adam Hooper <adamh densi com>
+#     Copyrignt (C), 2005 RaphaÃl Slinckx
+
+import gtk
+import eog
+from console import PythonConsole
+
+ui_str = """
+	<ui>
+	  <menubar name="MainMenu">
+	    <menu name="ToolsMenu" action="Tools">
+	      <separator/>
+	      <menuitem name="PythonConsole" action="PythonConsole"/>
+	      <separator/>
+	    </menu>
+	  </menubar>
+	</ui>
+	"""
+
+class PythonConsolePlugin(eog.Plugin):
+
+	def __init__(self):
+		eog.Plugin.__init__(self)
+		self.console_window = None
+			
+	def activate(self, window):
+		data = dict()
+		ui_manager = window.get_ui_manager()
+		data['group'] = gtk.ActionGroup('PythonConsole')
+		data['group'].add_actions([('PythonConsole', None, 'P_ython Console', None, None, self.console_cb)], window)
+		ui_manager.insert_action_group(data['group'], 0)
+		data['ui_id'] = ui_manager.add_ui_from_string(ui_str)
+		window.set_data('PythonConsolePluginInfo', data)
+		window.connect('delete-event', self.self_deactivate)
+	
+	def deactivate(self, window):
+		data = window.get_data('PythonConsolePluginInfo')
+		ui_manager = window.get_ui_manager()
+		ui_manager.remove_ui(data['ui_id'])
+		ui_manager.remove_action_group(data['group'])
+		ui_manager.ensure_update()
+		window.set_data("PythonConsolePluginInfo", None)
+		if self.console_window is not None:
+			self.console_window.destroy()
+		
+	def console_cb(self, action, window):
+		if not self.console_window:
+			self.console_window = gtk.Window()
+			console = PythonConsole(namespace = {'__builtins__' : __builtins__,
+		    	                                 'eog' : eog,
+		        	                             'window' : window})
+			console.set_size_request(600, 400)
+			console.eval('print "You can access the main window through ' \
+		    	         '\'window\' :\\n%s" % window', False)
+			
+			
+			self.console_window.set_title('Python Console')
+			self.console_window.add(console)
+			self.console_window.connect('delete-event', self.on_delete_cb)
+			self.console_window.show_all()
+			self.console_window.set_transient_for(window)
+			self.console_window.set_destroy_with_parent(True)
+		else:
+			self.console_window.show_all()
+		self.console_window.grab_focus()
+	
+	def on_delete_cb(self, window, event):
+		window.destroy()
+		self.console_window = None
+
+# This is a workaround for a ref-counting problem with python plugins.
+# This deactivates the plugin once the window that was used to activate
+# it is closed. Breaks multi-window-usability though.
+# See bug #460781 for more information.
+	def self_deactivate(self, window, event):
+		self.deactivate(window)
+



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]