terminator/terminatorlib/newterminator.py

66 lines
1.7 KiB
Python
Raw Normal View History

2009-08-10 23:15:40 +00:00
#!/usr/bin/python
# Terminator by Chris Jones <cmsj@tenshu.net>
# GPL v2 only
"""terminator.py - class for the master Terminator singleton"""
from borg import Borg
2009-08-10 23:15:40 +00:00
class Terminator(Borg):
2009-08-10 23:15:40 +00:00
"""master object for the application"""
window = None
windowtitle = None
terminals = None
groups = None
config = None
groupsend = None
groupsend_type = {'all':0, 'group':1, 'off':2}
2009-08-10 23:15:40 +00:00
def __init__(self):
"""Class initialiser"""
Borg.__init__(self)
self.prepare_attributes()
def prepare_attributes(self):
2009-08-18 11:55:52 +00:00
"""Initialise anything that isn't already"""
if not self.terminals:
self.terminals = []
if not self.groups:
self.groups = []
if not self.groupsend:
self.groupsend = self.groupsend_type['group']
2009-08-10 23:15:40 +00:00
def register_terminal(self, terminal):
"""Register a new terminal widget"""
2009-08-10 23:15:40 +00:00
self.terminals.append(terminal)
def reconfigure_terminals(self):
"""Tell all terminals to update their configuration"""
for terminal in self.terminals:
terminal.reconfigure()
def group_hoover(self):
"""Clean out unused groups"""
if self.config['autoclean_groups']:
todestroy = []
for group in self.groups:
for terminal in self.terminals:
save = False
if terminal.group == group:
save = True
break
2009-08-10 23:15:40 +00:00
if not save:
todestroy.append(group)
for group in todestroy:
self.groups.remove(group)
# vim: set expandtab ts=4 sw=4: