1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
#!/usr/bin/env python
# This plugin is adapted from the Python Console plugin and the IPython
# cookbook at:
# http://ipython.scipy.org/moin/Cookbook/EmbeddingInGTK
# Copyright (C) 2009 Brian Parma
#
# 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.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import sys
import gtk
import gobject
try: # xl doesn't exist outside of exaile
from xl.nls import gettext as _
from xl import event
except:
from gettext import gettext as _
print 'Running outside of Exaile...'
import ipython_view as ip
import pango
import __builtin__, site
# FIXME: make font, colors into settings?
FONT = "Luxi Mono 10"
PLUGIN = None
MENU_ITEM = None
class Quitter(object):
"""Simple class to handle exit, similar to Python 2.5's.
This Quitter is used to circumvent IPython's circumvention
of the builtin Quitter, since it prevents exaile form closing."""
def __init__(self,exit,name):
self.exit = exit
self.name = name
def __repr__(self):
return 'Type %s() to exit.' % self.name
__str__ = __repr__
def __call__(self):
self.exit() # Passed in exit function
site.setquit() # Restore default builtins
exit() # Call builtin
class IPyConsole(gtk.Window):
"""
A gtk Window with an embedded IPython Console.
"""
def __init__(self, namespace):
gtk.Window.__init__(self)
self.set_title(_("IPython Console - Exaile"))
self.set_size_request(750,550)
self.set_resizable(True)
sw = gtk.ScrolledWindow()
sw.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
ipv = ip.IPythonView()
# so it's exposed in the shell
self.ipv = ipv
# change display to emulate dark gnome-terminal
ipv.modify_font(pango.FontDescription(FONT))
ipv.set_wrap_mode(gtk.WRAP_CHAR)
ipv.modify_base(gtk.STATE_NORMAL, gtk.gdk.color_parse('black'))
ipv.modify_text(gtk.STATE_NORMAL, gtk.gdk.color_parse('lavender'))
ipv.IP.magic_colors('Linux') # IPython color scheme
# or white background?
# ipv.modify_base(gtk.STATE_NORMAL, gtk.gdk.color_parse('white'))
# ipv.modify_text(gtk.STATE_NORMAL, gtk.gdk.color_parse('black'))
# ipv.IP.magic_colors('LightBG') # IPython color scheme
self.set_opacity(0.8) # add a little transparency :)
ipv.updateNamespace(namespace) # expose exaile (passed in)
ipv.updateNamespace({'self':self}) # Expose self to IPython
# prevent exit and quit - freezes window? does bad things
ipv.updateNamespace({'exit':None,
'quit':None})
# This is so when exaile calls exit(), IP doesn't prompt and prevent
# it from closing
__builtin__.exit = Quitter(ipv.IP.magic_Exit, 'exit')
__builtin__.quit = Quitter(ipv.IP.magic_Exit, 'quit')
ipv.show()
sw.add(ipv)
sw.show()
self.add(sw)
self.show()
self.connect('delete_event',lambda x,y:False)
def _enable(exaile):
"""
Enable plugin.
Create menu item.
"""
global MENU_ITEM
MENU_ITEM = gtk.MenuItem(_('Show IPython Console'))
MENU_ITEM.connect('activate', show_console,exaile)
exaile.gui.xml.get_widget('tools_menu').append(MENU_ITEM)
MENU_ITEM.show()
# return True # bad! crashes compiz
def __enb(event, exaile, nothing):
gobject.idle_add(_enable, exaile)
def enable(exaile):
"""
Called when plugin is enabled, or when exaile is loaded with the plugin
on by default.
Wait for exaile to fully load, then call _enable with idle priority.
"""
if exaile.loading:
event.add_callback(__enb, "exaile_loaded")
else:
__enb(None, exaile, None)
def disable(exaile):
"""
Called when the plugin is disabled
"""
global PLUGIN, MENU_ITEM
if PLUGIN:
PLUGIN.destroy()
PLUGIN = None
if MENU_ITEM:
MENU_ITEM.hide()
MENU_ITEM.destroy()
MENU_ITEM = None
def show_console(widget, exaile):
"""
Display window when the menu item is clicked.
"""
global PLUGIN
if PLUGIN is None:
PLUGIN = IPyConsole({'exaile': exaile})
PLUGIN.connect('destroy', console_destroyed)
PLUGIN.present()
def console_destroyed(*args):
"""
Called when the window is closed.
"""
global PLUGIN
PLUGIN = None
if __name__ == '__main__':
"""
If run outside of exaile.
"""
con = IPyConsole({})
con.connect('destroy', gtk.main_quit)
con.show()
gtk.main()
|