terminator/terminatorlib/titlebar.py

29 lines
698 B
Python
Raw Normal View History

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
# pylint: disable-msg=R0904
2009-08-18 12:45:57 +00:00
class Titlebar(gtk.EventBox):
"""Class implementing the Titlebar widget"""
def __init__(self):
"""Class initialiser"""
gtk.EventBox.__init__(self)
self.__gobject_init__()
2009-08-18 12:45:57 +00:00
self.show()
def connect_icon(self, func):
"""Connect the supplied function to clicking on the group icon"""
pass
def update_terminal_size(self, width, height):
"""Update the displayed terminal size"""
pass
2009-08-18 12:45:57 +00:00
gobject.type_register(Titlebar)