25 lines
584 B
Python
Executable File
25 lines
584 B
Python
Executable File
#!/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
|
|
class Titlebar(gtk.EventBox):
|
|
"""Class implementing the Titlebar widget"""
|
|
|
|
def __init__(self):
|
|
"""Class initialiser"""
|
|
gtk.EventBox.__init__(self)
|
|
self.__gobject_init__()
|
|
|
|
self.show()
|
|
|
|
def connect_icon(self, func):
|
|
"""Connect the supplied function to clicking on the group icon"""
|
|
pass
|
|
|
|
gobject.type_register(Titlebar)
|