2010-06-10 12:52:36 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# Terminator by Chris Jones <cmsj@tenshu.net>
|
|
|
|
# GPL v2 only
|
|
|
|
"""terminalshot.py - Terminator Plugin to take 'screenshots' of individual
|
|
|
|
terminals"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
import gtk
|
|
|
|
import terminatorlib.plugin as plugin
|
|
|
|
from terminatorlib.translation import _
|
|
|
|
from terminatorlib.util import widget_pixbuf
|
|
|
|
|
2010-06-10 15:56:17 +00:00
|
|
|
# Every plugin you want Terminator to load *must* be listed in 'AVAILABLE'
|
|
|
|
AVAILABLE = ['TerminalShot']
|
2010-06-10 12:52:36 +00:00
|
|
|
|
|
|
|
class TerminalShot(plugin.MenuItem):
|
|
|
|
"""Add custom commands to the terminal menu"""
|
|
|
|
capabilities = ['terminal_menu']
|
2010-06-10 15:53:53 +00:00
|
|
|
dialog_action = gtk.FILE_CHOOSER_ACTION_SAVE
|
|
|
|
dialog_buttons = (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
|
|
|
|
gtk.STOCK_SAVE, gtk.RESPONSE_OK)
|
2010-06-10 12:52:36 +00:00
|
|
|
|
2010-06-10 15:53:53 +00:00
|
|
|
def __init__(self):
|
|
|
|
plugin.MenuItem.__init__(self)
|
2010-06-10 12:52:36 +00:00
|
|
|
|
|
|
|
def callback(self, menuitems, menu, terminal):
|
|
|
|
"""Add our menu items to the menu"""
|
|
|
|
item = gtk.MenuItem(_('Terminal screenshot'))
|
|
|
|
item.connect("activate", self.terminalshot, terminal)
|
|
|
|
menuitems.append(item)
|
|
|
|
|
2010-06-10 15:53:53 +00:00
|
|
|
def terminalshot(self, _widget, terminal):
|
|
|
|
"""Handle the taking, prompting and saving of a terminalshot"""
|
2010-06-10 12:52:36 +00:00
|
|
|
# Grab a pixbuf of the terminal
|
|
|
|
orig_pixbuf = widget_pixbuf(terminal)
|
|
|
|
|
|
|
|
savedialog = gtk.FileChooserDialog(title="Save image",
|
2010-06-10 15:53:53 +00:00
|
|
|
action=self.dialog_action,
|
|
|
|
buttons=self.dialog_buttons)
|
2010-06-10 12:52:36 +00:00
|
|
|
savedialog.set_do_overwrite_confirmation(True)
|
|
|
|
savedialog.set_local_only(True)
|
|
|
|
|
|
|
|
pixbuf = orig_pixbuf.scale_simple(orig_pixbuf.get_width() / 2,
|
|
|
|
orig_pixbuf.get_height() / 2,
|
|
|
|
gtk.gdk.INTERP_BILINEAR)
|
|
|
|
image = gtk.image_new_from_pixbuf(pixbuf)
|
|
|
|
savedialog.set_preview_widget(image)
|
|
|
|
|
|
|
|
savedialog.show_all()
|
|
|
|
response = savedialog.run()
|
2010-06-10 13:51:24 +00:00
|
|
|
path = None
|
2010-06-10 15:53:53 +00:00
|
|
|
if response == gtk.RESPONSE_OK:
|
2010-06-10 12:52:36 +00:00
|
|
|
path = os.path.join(savedialog.get_current_folder(),
|
|
|
|
savedialog.get_filename())
|
|
|
|
orig_pixbuf.save(path, 'png')
|
|
|
|
|
2010-06-10 15:53:53 +00:00
|
|
|
savedialog.destroy()
|