2009-08-07 23:31:44 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# Terminator by Chris Jones <cmsj@tenshu.net>
|
|
|
|
# GPL v2 only
|
|
|
|
"""window.py - class for the main Terminator window"""
|
|
|
|
|
|
|
|
import pygtk
|
|
|
|
pygtk.require('2.0')
|
|
|
|
import gobject
|
|
|
|
import gtk
|
|
|
|
|
2009-08-09 23:11:31 +00:00
|
|
|
from util import dbg, err
|
2009-08-10 22:09:49 +00:00
|
|
|
from version import APP_NAME
|
2009-08-07 23:31:44 +00:00
|
|
|
from container import Container
|
2009-08-10 23:15:31 +00:00
|
|
|
from newterminator import Terminator
|
2009-10-05 21:16:28 +00:00
|
|
|
from terminal import Terminal
|
2009-11-14 17:30:03 +00:00
|
|
|
from paned import HPaned, VPaned
|
2009-08-07 23:31:44 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
import deskbar.core.keybinder as bindkey
|
|
|
|
except ImportError:
|
|
|
|
err('Unable to find python bindings for deskbar, "hide_window" is not' \
|
|
|
|
'available.')
|
|
|
|
|
2009-08-18 12:57:35 +00:00
|
|
|
# pylint: disable-msg=R0904
|
2009-08-07 23:31:44 +00:00
|
|
|
class Window(Container, gtk.Window):
|
|
|
|
"""Class implementing a top-level Terminator window"""
|
|
|
|
|
2009-08-10 23:15:31 +00:00
|
|
|
terminator = None
|
2009-08-07 23:31:44 +00:00
|
|
|
title = None
|
|
|
|
isfullscreen = None
|
2009-08-09 23:07:40 +00:00
|
|
|
ismaximised = None
|
2009-08-07 23:31:44 +00:00
|
|
|
hidebound = None
|
2009-08-09 22:25:53 +00:00
|
|
|
hidefunc = None
|
2009-10-05 21:16:28 +00:00
|
|
|
cnxids = None
|
2009-08-07 23:31:44 +00:00
|
|
|
|
2009-10-06 23:08:13 +00:00
|
|
|
term_zoomed = gobject.property(type=bool, default=False)
|
|
|
|
|
2009-08-19 00:06:07 +00:00
|
|
|
def __init__(self):
|
2009-08-07 23:31:44 +00:00
|
|
|
"""Class initialiser"""
|
2009-08-10 23:15:31 +00:00
|
|
|
self.terminator = Terminator()
|
2009-11-07 01:40:43 +00:00
|
|
|
self.terminator.window = self
|
2009-10-05 21:16:28 +00:00
|
|
|
self.cnxids = []
|
2009-08-10 23:15:31 +00:00
|
|
|
|
2009-08-19 00:06:07 +00:00
|
|
|
Container.__init__(self)
|
2009-08-07 23:31:44 +00:00
|
|
|
gtk.Window.__init__(self)
|
2009-08-09 21:00:43 +00:00
|
|
|
gobject.type_register(Window)
|
|
|
|
self.register_signals(Window)
|
2009-08-07 23:31:44 +00:00
|
|
|
|
|
|
|
self.set_property('allow-shrink', True)
|
2009-08-10 22:09:49 +00:00
|
|
|
self.apply_icon()
|
|
|
|
|
2009-08-07 23:31:44 +00:00
|
|
|
self.register_callbacks()
|
|
|
|
self.apply_config()
|
|
|
|
|
2009-09-02 20:10:28 +00:00
|
|
|
self.title = WindowTitle(self)
|
|
|
|
self.title.update()
|
|
|
|
|
2009-08-07 23:31:44 +00:00
|
|
|
def register_callbacks(self):
|
|
|
|
"""Connect the GTK+ signals we care about"""
|
|
|
|
self.connect('key-press-event', self.on_key_press)
|
|
|
|
self.connect('delete_event', self.on_delete_event)
|
|
|
|
self.connect('destroy', self.on_destroy_event)
|
|
|
|
self.connect('window-state-event', self.on_window_state_changed)
|
|
|
|
|
2009-08-09 22:25:53 +00:00
|
|
|
# Attempt to grab a global hotkey for hiding the window.
|
|
|
|
# If we fail, we'll never hide the window, iconifying instead.
|
2009-08-09 23:07:40 +00:00
|
|
|
try:
|
|
|
|
self.hidebound = bindkey.tomboy_keybinder_bind(
|
|
|
|
self.config['keybindings']['hide_window'],
|
|
|
|
self.on_hide_window)
|
|
|
|
except NameError:
|
|
|
|
pass
|
|
|
|
|
2009-08-09 22:25:53 +00:00
|
|
|
if not self.hidebound:
|
2009-08-07 23:31:44 +00:00
|
|
|
dbg('Unable to bind hide_window key, another instance has it.')
|
2009-08-09 22:25:53 +00:00
|
|
|
self.hidefunc = self.iconify
|
|
|
|
else:
|
|
|
|
self.hidefunc = self.hide
|
2009-08-07 23:31:44 +00:00
|
|
|
|
|
|
|
def apply_config(self):
|
|
|
|
"""Apply various configuration options"""
|
|
|
|
self.set_fullscreen(self.config['fullscreen'])
|
2009-08-19 00:06:07 +00:00
|
|
|
self.set_maximised(self.config['maximise'])
|
2009-08-07 23:31:44 +00:00
|
|
|
self.set_borderless(self.config['borderless'])
|
|
|
|
self.set_real_transparency(self.config['enable_real_transparency'])
|
|
|
|
if self.hidebound:
|
|
|
|
self.set_hidden(self.config['hidden'])
|
|
|
|
else:
|
|
|
|
self.set_iconified(self.config['hidden'])
|
|
|
|
|
2009-08-10 22:09:49 +00:00
|
|
|
def apply_icon(self):
|
|
|
|
"""Set the window icon"""
|
|
|
|
icon_theme = gtk.IconTheme()
|
|
|
|
|
|
|
|
try:
|
|
|
|
icon = icon_theme.load_icon(APP_NAME, 48, 0)
|
|
|
|
except NameError:
|
|
|
|
dbg('Unable to load 48px Terminator icon')
|
|
|
|
icon = self.render_icon(gtk.STOCK_DIALOG_INFO, gtk.ICON_SIZE_BUTTON)
|
|
|
|
|
|
|
|
self.set_icon(icon)
|
|
|
|
|
2009-08-07 23:31:44 +00:00
|
|
|
def on_key_press(self, window, event):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Handle a keyboard event"""
|
2009-08-07 23:31:44 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
def on_delete_event(self, window, event, data=None):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Handle a window close request"""
|
2009-08-07 23:31:44 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
def on_destroy_event(self, widget, data=None):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Handle window descruction"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def on_hide_window(self, data):
|
|
|
|
"""Handle a request to hide/show the window"""
|
2009-08-07 23:31:44 +00:00
|
|
|
pass
|
|
|
|
|
2009-08-18 12:57:35 +00:00
|
|
|
# pylint: disable-msg=W0613
|
2009-08-07 23:31:44 +00:00
|
|
|
def on_window_state_changed(self, window, event):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Handle the state of the window changing"""
|
2009-08-07 23:31:44 +00:00
|
|
|
self.isfullscreen = bool(event.new_window_state &
|
|
|
|
gtk.gdk.WINDOW_STATE_FULLSCREEN)
|
|
|
|
self.ismaximised = bool(event.new_window_state &
|
|
|
|
gtk.gdk.WINDOW_STATE_MAXIMIZED)
|
|
|
|
dbg('window state changed: fullscreen %s, maximised %s' %
|
|
|
|
(self.isfullscreen, self.ismaximised))
|
2009-08-09 23:07:40 +00:00
|
|
|
|
2009-08-07 23:31:44 +00:00
|
|
|
return(False)
|
|
|
|
|
|
|
|
def set_maximised(self, value):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Set the maximised state of the window from the supplied value"""
|
2009-08-07 23:31:44 +00:00
|
|
|
if value == True:
|
|
|
|
self.maximize()
|
|
|
|
else:
|
|
|
|
self.unmaximize()
|
|
|
|
|
|
|
|
def set_fullscreen(self, value):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Set the fullscreen state of the window from the supplied value"""
|
2009-08-07 23:31:44 +00:00
|
|
|
if value == True:
|
|
|
|
self.fullscreen()
|
|
|
|
else:
|
|
|
|
self.unfullscreen()
|
|
|
|
|
|
|
|
def set_borderless(self, value):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Set the state of the window border from the supplied value"""
|
2009-08-07 23:31:44 +00:00
|
|
|
self.set_decorated (not value)
|
|
|
|
|
|
|
|
def set_hidden(self, value):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Set the visibility of the window from the supplied value"""
|
2009-08-07 23:31:44 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
def set_iconified(self, value):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Set the minimised state of the window from the value"""
|
2009-08-07 23:31:44 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
def set_real_transparency(self, value):
|
2009-08-09 23:07:40 +00:00
|
|
|
"""Enable RGBA if supported on the current screen"""
|
2009-08-07 23:31:44 +00:00
|
|
|
screen = self.get_screen()
|
|
|
|
if value:
|
|
|
|
colormap = screen.get_rgba_colormap()
|
|
|
|
else:
|
|
|
|
colormap = screen.get_rgb_colormap()
|
|
|
|
|
|
|
|
if colormap:
|
|
|
|
self.set_colormap(colormap)
|
|
|
|
|
2009-08-27 23:20:22 +00:00
|
|
|
def add(self, widget):
|
|
|
|
"""Add a widget to the window by way of gtk.Window.add()"""
|
2009-10-05 21:16:28 +00:00
|
|
|
if isinstance(widget, Terminal):
|
|
|
|
self.cnxids.append(widget.connect('close-term', self.closeterm))
|
|
|
|
self.cnxids.append(widget.connect('title-change',
|
|
|
|
self.title.set_title))
|
|
|
|
self.cnxids.append(widget.connect('split-horiz', self.split_horiz))
|
|
|
|
self.cnxids.append(widget.connect('split-vert', self.split_vert))
|
2009-08-27 23:20:22 +00:00
|
|
|
gtk.Window.add(self, widget)
|
|
|
|
|
|
|
|
def remove(self, widget):
|
|
|
|
"""Remove our child widget by way of gtk.Window.remove()"""
|
|
|
|
gtk.Window.remove(self, widget)
|
2009-10-05 21:16:28 +00:00
|
|
|
for cnxid in self.cnxids:
|
|
|
|
widget.disconnect(cnxid)
|
|
|
|
self.cnxids = []
|
|
|
|
|
|
|
|
def split_axis(self, widget, vertical=True):
|
|
|
|
"""Split the window"""
|
|
|
|
self.remove(widget)
|
|
|
|
|
|
|
|
# FIXME: we should be creating proper containers, not these gtk widgets
|
|
|
|
if vertical:
|
2009-11-07 01:40:43 +00:00
|
|
|
container = VPaned()
|
2009-10-05 21:16:28 +00:00
|
|
|
else:
|
2009-11-07 01:40:43 +00:00
|
|
|
container = HPaned()
|
2009-10-05 21:16:28 +00:00
|
|
|
|
|
|
|
sibling = Terminal()
|
|
|
|
self.terminator.register_terminal(sibling)
|
|
|
|
|
2009-11-07 01:40:43 +00:00
|
|
|
for term in [widget, sibling]:
|
|
|
|
container.add(term)
|
|
|
|
container.show_all()
|
2009-10-05 21:16:28 +00:00
|
|
|
|
|
|
|
self.add(container)
|
2009-10-27 23:23:59 +00:00
|
|
|
sibling.spawn_child()
|
2009-08-27 23:20:22 +00:00
|
|
|
|
2009-08-10 22:04:39 +00:00
|
|
|
class WindowTitle(object):
|
|
|
|
"""Class to handle the setting of the window title"""
|
|
|
|
|
|
|
|
window = None
|
|
|
|
text = None
|
|
|
|
forced = None
|
|
|
|
|
|
|
|
def __init__(self, window):
|
|
|
|
"""Class initialiser"""
|
|
|
|
self.window = window
|
|
|
|
self.forced = False
|
|
|
|
|
2009-09-02 20:10:28 +00:00
|
|
|
def set_title(self, widget, text):
|
2009-08-10 22:04:39 +00:00
|
|
|
"""Set the title"""
|
|
|
|
if not self.forced:
|
2009-09-02 20:10:28 +00:00
|
|
|
self.text = text
|
2009-08-10 22:04:39 +00:00
|
|
|
self.update()
|
|
|
|
|
|
|
|
def force_title(self, newtext):
|
|
|
|
"""Force a specific title"""
|
|
|
|
if newtext:
|
|
|
|
self.set_title(newtext)
|
|
|
|
self.forced = True
|
|
|
|
else:
|
|
|
|
self.forced = False
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
"""Update the title automatically"""
|
|
|
|
title = None
|
|
|
|
|
|
|
|
# FIXME: What the hell is this for?!
|
|
|
|
if self.forced:
|
|
|
|
title = self.text
|
|
|
|
else:
|
|
|
|
title = "%s" % self.text
|
|
|
|
|
|
|
|
self.window.set_title(title)
|
|
|
|
|
2009-08-07 23:31:44 +00:00
|
|
|
# vim: set expandtab ts=4 sw=4:
|