2009-08-18 12:45:57 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# Terminator by Chris Jones <cmsj@tenshu.net>
|
|
|
|
# GPL v2 only
|
|
|
|
"""titlebar.py - classes necessary to provide a terminal title bar"""
|
|
|
|
|
|
|
|
import gtk
|
|
|
|
import gobject
|
|
|
|
|
2009-09-02 22:17:54 +00:00
|
|
|
from version import APP_NAME
|
2009-10-15 13:17:37 +00:00
|
|
|
from util import dbg
|
2010-01-11 20:06:53 +00:00
|
|
|
from terminator import Terminator
|
2009-09-02 21:38:27 +00:00
|
|
|
from editablelabel import EditableLabel
|
|
|
|
|
2009-08-18 12:52:02 +00:00
|
|
|
# pylint: disable-msg=R0904
|
2009-09-03 09:34:31 +00:00
|
|
|
# pylint: disable-msg=W0613
|
2009-08-18 12:45:57 +00:00
|
|
|
class Titlebar(gtk.EventBox):
|
|
|
|
"""Class implementing the Titlebar widget"""
|
|
|
|
|
2009-09-02 22:17:54 +00:00
|
|
|
terminator = None
|
2010-01-18 23:27:22 +00:00
|
|
|
terminal = None
|
|
|
|
config = None
|
2009-09-02 20:10:28 +00:00
|
|
|
oldtitle = None
|
2009-09-02 21:38:27 +00:00
|
|
|
termtext = None
|
|
|
|
sizetext = None
|
|
|
|
label = None
|
|
|
|
ebox = None
|
|
|
|
groupicon = None
|
|
|
|
grouplabel = None
|
2009-10-15 13:17:37 +00:00
|
|
|
groupentry = None
|
2010-02-11 13:05:12 +00:00
|
|
|
bellicon = None
|
2009-09-02 20:10:28 +00:00
|
|
|
|
2009-09-02 23:52:36 +00:00
|
|
|
__gsignals__ = {
|
|
|
|
'clicked': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()),
|
|
|
|
'edit-done': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()),
|
2009-10-15 13:17:37 +00:00
|
|
|
'create-group': (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE,
|
|
|
|
(gobject.TYPE_STRING,)),
|
2009-09-02 23:52:36 +00:00
|
|
|
}
|
|
|
|
|
2010-01-18 23:27:22 +00:00
|
|
|
def __init__(self, terminal):
|
2009-08-18 12:45:57 +00:00
|
|
|
"""Class initialiser"""
|
|
|
|
gtk.EventBox.__init__(self)
|
2009-08-19 00:05:44 +00:00
|
|
|
self.__gobject_init__()
|
2009-08-18 12:45:57 +00:00
|
|
|
|
2009-09-02 22:17:54 +00:00
|
|
|
self.terminator = Terminator()
|
2010-01-18 23:27:22 +00:00
|
|
|
self.terminal = terminal
|
|
|
|
self.config = self.terminal.config
|
2009-09-02 22:17:54 +00:00
|
|
|
|
2009-09-02 21:38:27 +00:00
|
|
|
self.label = EditableLabel()
|
2009-09-02 23:52:36 +00:00
|
|
|
self.label.connect('edit-done', self.on_edit_done)
|
2009-09-02 21:38:27 +00:00
|
|
|
self.ebox = gtk.EventBox()
|
2009-09-06 22:53:21 +00:00
|
|
|
grouphbox = gtk.HBox()
|
2009-09-02 21:38:27 +00:00
|
|
|
self.grouplabel = gtk.Label()
|
|
|
|
self.groupicon = gtk.Image()
|
2010-02-11 13:05:12 +00:00
|
|
|
self.bellicon = gtk.Image()
|
|
|
|
self.bellicon.set_no_show_all(True)
|
2009-09-02 21:38:27 +00:00
|
|
|
|
2009-10-15 13:17:37 +00:00
|
|
|
self.groupentry = gtk.Entry()
|
|
|
|
self.groupentry.set_no_show_all(True)
|
|
|
|
self.groupentry.connect('focus-out-event', self.groupentry_cancel)
|
|
|
|
self.groupentry.connect('activate', self.groupentry_activate)
|
|
|
|
self.groupentry.connect('key-press-event', self.groupentry_keypress)
|
|
|
|
|
2009-09-03 12:59:17 +00:00
|
|
|
groupsend_type = self.terminator.groupsend_type
|
2009-09-02 22:17:54 +00:00
|
|
|
if self.terminator.groupsend == groupsend_type['all']:
|
|
|
|
icon_name = 'all'
|
|
|
|
elif self.terminator.groupsend == groupsend_type['group']:
|
|
|
|
icon_name = 'group'
|
|
|
|
elif self.terminator.groupsend == groupsend_type['off']:
|
|
|
|
icon_name = 'off'
|
|
|
|
self.set_from_icon_name('_active_broadcast_%s' % icon_name,
|
|
|
|
gtk.ICON_SIZE_MENU)
|
2009-09-02 21:38:27 +00:00
|
|
|
|
2009-09-06 22:53:21 +00:00
|
|
|
grouphbox.pack_start(self.groupicon, False, True, 2)
|
|
|
|
grouphbox.pack_start(self.grouplabel, False, True, 2)
|
2009-10-15 13:17:37 +00:00
|
|
|
grouphbox.pack_start(self.groupentry, False, True, 2)
|
|
|
|
|
2009-09-06 22:53:21 +00:00
|
|
|
self.ebox.add(grouphbox)
|
2009-09-02 21:38:27 +00:00
|
|
|
self.ebox.show_all()
|
|
|
|
|
2010-02-11 13:05:12 +00:00
|
|
|
self.bellicon.set_from_icon_name('terminal-bell', gtk.ICON_SIZE_MENU)
|
2009-09-06 22:53:21 +00:00
|
|
|
hbox = gtk.HBox()
|
|
|
|
hbox.pack_start(self.ebox, False, True, 0)
|
|
|
|
hbox.pack_start(gtk.VSeparator(), False, True, 0)
|
|
|
|
hbox.pack_start(self.label, True, True)
|
2010-02-11 13:05:12 +00:00
|
|
|
hbox.pack_end(self.bellicon, False, False, 2)
|
2009-09-02 21:38:27 +00:00
|
|
|
|
2009-09-06 22:53:21 +00:00
|
|
|
self.add(hbox)
|
2010-02-09 13:08:07 +00:00
|
|
|
hbox.show_all()
|
|
|
|
self.set_no_show_all(True)
|
2010-03-23 20:48:04 +00:00
|
|
|
self.show()
|
2009-08-18 12:45:57 +00:00
|
|
|
|
2009-09-02 23:52:36 +00:00
|
|
|
self.connect('button-press-event', self.on_clicked)
|
|
|
|
|
2009-08-19 00:05:44 +00:00
|
|
|
def connect_icon(self, func):
|
|
|
|
"""Connect the supplied function to clicking on the group icon"""
|
2009-09-02 23:52:36 +00:00
|
|
|
self.ebox.connect('button-release-event', func)
|
2009-08-19 00:05:44 +00:00
|
|
|
|
2010-01-18 23:27:22 +00:00
|
|
|
def update(self, other=None):
|
2009-08-28 00:11:13 +00:00
|
|
|
"""Update our contents"""
|
2010-02-09 00:23:21 +00:00
|
|
|
default_bg = False
|
2009-09-02 21:38:27 +00:00
|
|
|
self.label.set_text("%s %s" % (self.termtext, self.sizetext))
|
2010-01-18 23:27:22 +00:00
|
|
|
|
|
|
|
if other:
|
|
|
|
term = self.terminal
|
|
|
|
terminator = self.terminator
|
2010-08-24 19:44:29 +00:00
|
|
|
if other == 'window-focus-out':
|
|
|
|
title_fg = self.config['title_inactive_fg_color']
|
|
|
|
title_bg = self.config['title_inactive_bg_color']
|
|
|
|
icon = '_receive_off'
|
|
|
|
default_bg = True
|
|
|
|
group_fg = self.config['title_inactive_fg_color']
|
|
|
|
group_bg = self.config['title_inactive_bg_color']
|
|
|
|
elif term != other and term.group and term.group == other.group:
|
2010-01-18 23:27:22 +00:00
|
|
|
if terminator.groupsend == terminator.groupsend_type['off']:
|
|
|
|
title_fg = self.config['title_inactive_fg_color']
|
|
|
|
title_bg = self.config['title_inactive_bg_color']
|
|
|
|
icon = '_receive_off'
|
2010-02-09 00:23:21 +00:00
|
|
|
default_bg = True
|
2010-01-18 23:27:22 +00:00
|
|
|
else:
|
|
|
|
title_fg = self.config['title_receive_fg_color']
|
|
|
|
title_bg = self.config['title_receive_bg_color']
|
|
|
|
icon = '_receive_on'
|
|
|
|
group_fg = self.config['title_receive_fg_color']
|
|
|
|
group_bg = self.config['title_receive_bg_color']
|
|
|
|
elif term != other and not term.group or term.group != other.group:
|
|
|
|
if terminator.groupsend == terminator.groupsend_type['all']:
|
|
|
|
title_fg = self.config['title_receive_fg_color']
|
|
|
|
title_bg = self.config['title_receive_bg_color']
|
|
|
|
icon = '_receive_on'
|
|
|
|
else:
|
|
|
|
title_fg = self.config['title_inactive_fg_color']
|
|
|
|
title_bg = self.config['title_inactive_bg_color']
|
|
|
|
icon = '_receive_off'
|
2010-02-09 00:23:21 +00:00
|
|
|
default_bg = True
|
2010-01-18 23:27:22 +00:00
|
|
|
group_fg = self.config['title_inactive_fg_color']
|
|
|
|
group_bg = self.config['title_inactive_bg_color']
|
|
|
|
else:
|
2010-07-03 19:00:04 +00:00
|
|
|
# We're the active terminal
|
2010-01-18 23:27:22 +00:00
|
|
|
title_fg = self.config['title_transmit_fg_color']
|
|
|
|
title_bg = self.config['title_transmit_bg_color']
|
|
|
|
if terminator.groupsend == terminator.groupsend_type['all']:
|
|
|
|
icon = '_active_broadcast_all'
|
|
|
|
elif terminator.groupsend == terminator.groupsend_type['group']:
|
|
|
|
icon = '_active_broadcast_group'
|
|
|
|
else:
|
|
|
|
icon = '_active_broadcast_off'
|
|
|
|
group_fg = self.config['title_transmit_fg_color']
|
|
|
|
group_bg = self.config['title_transmit_bg_color']
|
|
|
|
|
|
|
|
self.label.modify_fg(gtk.STATE_NORMAL,
|
|
|
|
gtk.gdk.color_parse(title_fg))
|
|
|
|
self.grouplabel.modify_fg(gtk.STATE_NORMAL,
|
|
|
|
gtk.gdk.color_parse(group_fg))
|
|
|
|
self.modify_bg(gtk.STATE_NORMAL,
|
|
|
|
gtk.gdk.color_parse(title_bg))
|
2010-03-23 20:48:04 +00:00
|
|
|
if not self.get_desired_visibility():
|
2010-02-09 00:23:21 +00:00
|
|
|
if default_bg == True:
|
|
|
|
color = term.get_style().bg[gtk.STATE_NORMAL]
|
|
|
|
else:
|
|
|
|
color = gtk.gdk.color_parse(title_bg)
|
2010-05-15 13:30:13 +00:00
|
|
|
self.update_visibility()
|
2010-01-18 23:27:22 +00:00
|
|
|
self.ebox.modify_bg(gtk.STATE_NORMAL,
|
|
|
|
gtk.gdk.color_parse(group_bg))
|
|
|
|
self.set_from_icon_name(icon, gtk.ICON_SIZE_MENU)
|
2009-08-28 00:11:13 +00:00
|
|
|
|
2010-05-15 13:30:13 +00:00
|
|
|
def update_visibility(self):
|
|
|
|
"""Make the titlebar be visible or not"""
|
|
|
|
if not self.get_desired_visibility():
|
|
|
|
dbg('hiding titlebar')
|
|
|
|
self.hide()
|
|
|
|
self.label.hide()
|
|
|
|
else:
|
|
|
|
dbg('showing titlebar')
|
|
|
|
self.show()
|
|
|
|
self.label.show()
|
|
|
|
|
2010-03-23 20:48:04 +00:00
|
|
|
def get_desired_visibility(self):
|
|
|
|
"""Returns True if the titlebar is supposed to be visible. False if
|
|
|
|
not"""
|
2010-05-15 13:30:13 +00:00
|
|
|
if self.editing() == True or self.terminal.group:
|
|
|
|
dbg('implicit desired visibility')
|
2010-03-23 20:48:04 +00:00
|
|
|
return(True)
|
|
|
|
else:
|
2010-05-15 13:30:13 +00:00
|
|
|
dbg('configured visibility: %s' % self.config['show_titlebar'])
|
2010-03-23 20:48:04 +00:00
|
|
|
return(self.config['show_titlebar'])
|
|
|
|
|
2009-09-02 22:17:54 +00:00
|
|
|
def set_from_icon_name(self, name, size = gtk.ICON_SIZE_MENU):
|
|
|
|
"""Set an icon for the group label"""
|
|
|
|
if not name:
|
|
|
|
self.groupicon.hide()
|
|
|
|
return
|
|
|
|
|
|
|
|
self.groupicon.set_from_icon_name(APP_NAME + name, size)
|
|
|
|
self.groupicon.show()
|
|
|
|
|
2009-08-19 18:01:11 +00:00
|
|
|
def update_terminal_size(self, width, height):
|
|
|
|
"""Update the displayed terminal size"""
|
2009-09-02 21:38:27 +00:00
|
|
|
self.sizetext = "%sx%s" % (width, height)
|
|
|
|
self.update()
|
2009-08-19 18:01:11 +00:00
|
|
|
|
2009-09-02 20:18:36 +00:00
|
|
|
def set_terminal_title(self, widget, title):
|
2009-09-02 20:10:28 +00:00
|
|
|
"""Update the terminal title"""
|
2009-09-02 21:38:27 +00:00
|
|
|
self.termtext = title
|
|
|
|
self.update()
|
2009-12-10 13:20:03 +00:00
|
|
|
# Return False so we don't interrupt any chains of signal handling
|
|
|
|
return False
|
2009-09-02 21:38:27 +00:00
|
|
|
|
|
|
|
def set_group_label(self, name):
|
|
|
|
"""Set the name of the group"""
|
|
|
|
if name:
|
|
|
|
self.grouplabel.set_text(name)
|
|
|
|
self.grouplabel.show()
|
|
|
|
else:
|
|
|
|
self.grouplabel.hide()
|
2010-05-15 13:30:13 +00:00
|
|
|
self.update_visibility()
|
2009-09-02 21:38:27 +00:00
|
|
|
|
|
|
|
def on_clicked(self, widget, event):
|
|
|
|
"""Handle a click on the label"""
|
2010-05-15 13:30:13 +00:00
|
|
|
self.show()
|
2010-03-23 20:48:04 +00:00
|
|
|
self.label.show()
|
2009-09-02 23:52:36 +00:00
|
|
|
self.emit('clicked')
|
|
|
|
|
|
|
|
def on_edit_done(self, widget):
|
|
|
|
"""Re-emit an edit-done signal from an EditableLabel"""
|
|
|
|
self.emit('edit-done')
|
2009-09-02 20:10:28 +00:00
|
|
|
|
2010-01-12 01:05:53 +00:00
|
|
|
def editing(self):
|
|
|
|
"""Determine if we're currently editing a group name or title"""
|
|
|
|
return(self.groupentry.get_property('visible') or self.label.editing())
|
2010-01-12 00:58:50 +00:00
|
|
|
|
2009-10-15 13:17:37 +00:00
|
|
|
def create_group(self):
|
|
|
|
"""Create a new group"""
|
|
|
|
self.groupentry.show()
|
|
|
|
self.groupentry.grab_focus()
|
2010-05-15 13:30:13 +00:00
|
|
|
self.update_visibility()
|
2009-10-15 13:17:37 +00:00
|
|
|
|
|
|
|
def groupentry_cancel(self, widget, event):
|
|
|
|
"""Hide the group name entry"""
|
|
|
|
self.groupentry.set_text('')
|
|
|
|
self.groupentry.hide()
|
2009-11-20 05:42:49 +00:00
|
|
|
self.get_parent().grab_focus()
|
2009-10-15 13:17:37 +00:00
|
|
|
|
|
|
|
def groupentry_activate(self, widget):
|
|
|
|
"""Actually cause a group to be created"""
|
|
|
|
groupname = self.groupentry.get_text()
|
2009-11-20 05:40:31 +00:00
|
|
|
dbg('Titlebar::groupentry_activate: creating group: %s' % groupname)
|
2009-10-15 13:17:37 +00:00
|
|
|
self.groupentry_cancel(None, None)
|
|
|
|
self.emit('create-group', groupname)
|
|
|
|
|
|
|
|
def groupentry_keypress(self, widget, event):
|
|
|
|
"""Handle keypresses on the entry widget"""
|
|
|
|
key = gtk.gdk.keyval_name(event.keyval)
|
|
|
|
if key == 'Escape':
|
|
|
|
self.groupentry_cancel(None, None)
|
|
|
|
|
2010-02-11 13:05:12 +00:00
|
|
|
def icon_bell(self):
|
|
|
|
"""A bell signal requires we display our bell icon"""
|
|
|
|
self.bellicon.show()
|
|
|
|
gobject.timeout_add(1000, self.icon_bell_hide)
|
|
|
|
|
|
|
|
def icon_bell_hide(self):
|
|
|
|
"""Handle a timeout which means we now hide the bell icon"""
|
|
|
|
self.bellicon.hide()
|
|
|
|
return(False)
|
|
|
|
|
2010-04-22 22:14:03 +00:00
|
|
|
def get_custom_string(self):
|
|
|
|
"""If we have a custom string set, return it, otherwise None"""
|
|
|
|
if self.label.is_custom():
|
|
|
|
return(self.label.get_text())
|
|
|
|
else:
|
|
|
|
return(None)
|
|
|
|
|
|
|
|
def set_custom_string(self, string):
|
|
|
|
"""Set a custom string"""
|
|
|
|
self.label.set_text(string)
|
|
|
|
self.label.set_custom()
|
|
|
|
|
2009-08-18 12:45:57 +00:00
|
|
|
gobject.type_register(Titlebar)
|