2008-08-21 23:19:18 +00:00
|
|
|
#!/usr/bin/python
|
2010-01-22 22:53:23 +00:00
|
|
|
"""Preferences Editor for Terminator.
|
|
|
|
|
|
|
|
Load a UIBuilder config file, display it,
|
|
|
|
populate it with our current config, then optionally read that back out and
|
|
|
|
write it to a config file
|
|
|
|
|
|
|
|
"""
|
2008-08-21 23:19:18 +00:00
|
|
|
|
2010-01-09 17:49:14 +00:00
|
|
|
import os
|
2009-12-27 00:59:44 +00:00
|
|
|
import gtk
|
|
|
|
|
2010-03-05 22:20:48 +00:00
|
|
|
from util import dbg, err
|
2009-12-27 00:59:44 +00:00
|
|
|
import config
|
2010-01-10 00:20:24 +00:00
|
|
|
from keybindings import Keybindings, KeymapError
|
2009-12-27 00:59:44 +00:00
|
|
|
from translation import _
|
2010-06-23 11:03:04 +00:00
|
|
|
from encoding import TerminatorEncoding
|
2010-01-11 20:06:53 +00:00
|
|
|
from terminator import Terminator
|
2010-06-20 21:41:55 +00:00
|
|
|
from plugin import PluginRegistry
|
2008-08-21 23:19:18 +00:00
|
|
|
|
2010-04-13 22:17:52 +00:00
|
|
|
def color2hex(widget):
|
|
|
|
"""Pull the colour values out of a Gtk ColorPicker widget and return them
|
|
|
|
as 8bit hex values, sinces its default behaviour is to give 16bit values"""
|
|
|
|
widcol = widget.get_color()
|
|
|
|
return('#%02x%02x%02x' % (widcol.red>>8, widcol.green>>8, widcol.blue>>8))
|
|
|
|
|
2010-01-10 00:35:38 +00:00
|
|
|
# FIXME: We need to check that we have represented all of Config() below
|
2010-01-03 17:53:25 +00:00
|
|
|
class PrefsEditor:
|
2010-01-22 22:53:23 +00:00
|
|
|
"""Class implementing the various parts of the preferences editor"""
|
2010-01-09 17:42:59 +00:00
|
|
|
config = None
|
2010-06-20 21:41:55 +00:00
|
|
|
registry = None
|
2010-06-21 21:44:09 +00:00
|
|
|
plugins = None
|
2010-01-10 00:20:24 +00:00
|
|
|
keybindings = None
|
2010-01-09 17:42:59 +00:00
|
|
|
window = None
|
|
|
|
builder = None
|
2010-03-05 22:20:48 +00:00
|
|
|
layouteditor = None
|
2010-02-05 00:16:24 +00:00
|
|
|
previous_layout_selection = None
|
2010-01-31 16:24:45 +00:00
|
|
|
previous_profile_selection = None
|
2010-01-08 23:51:45 +00:00
|
|
|
colorschemevalues = {'black_on_yellow': 0,
|
|
|
|
'black_on_white': 1,
|
|
|
|
'grey_on_black': 2,
|
|
|
|
'green_on_black': 3,
|
|
|
|
'white_on_black': 4,
|
|
|
|
'orange_on_black': 5,
|
2010-03-05 12:29:51 +00:00
|
|
|
'ambience': 6,
|
|
|
|
'custom': 7}
|
2010-04-15 11:31:49 +00:00
|
|
|
colourschemes = {'grey_on_black': ['#aaaaaa', '#000000'],
|
|
|
|
'black_on_yellow': ['#000000', '#ffffdd'],
|
|
|
|
'black_on_white': ['#000000', '#ffffff'],
|
|
|
|
'white_on_black': ['#ffffff', '#000000'],
|
|
|
|
'green_on_black': ['#00ff00', '#000000'],
|
|
|
|
'orange_on_black': ['#e53c00', '#000000'],
|
|
|
|
'ambience': ['#ffffff', '#300a24']}
|
2010-04-06 21:36:09 +00:00
|
|
|
palettevalues = {'tango': 0,
|
|
|
|
'linux': 1,
|
|
|
|
'xterm': 2,
|
|
|
|
'rxvt': 3,
|
|
|
|
'ambience': 4,
|
|
|
|
'custom': 5}
|
2010-04-13 22:17:52 +00:00
|
|
|
palettes = {'tango': '#000000:#cc0000:#4e9a06:#c4a000:#3465a4:\
|
|
|
|
#75507b:#06989a:#d3d7cf:#555753:#ef2929:#8ae234:#fce94f:#729fcf:\
|
|
|
|
#ad7fa8:#34e2e2:#eeeeec',
|
|
|
|
'linux': '#000000:#aa0000:#00aa00:#aa5500:#0000aa:\
|
|
|
|
#aa00aa:#00aaaa:#aaaaaa:#555555:#ff5555:#55ff55:#ffff55:#5555ff:\
|
|
|
|
#ff55ff:#55ffff:#ffffff',
|
|
|
|
'xterm': '#000000:#cd0000:#00cd00:#cdcd00:#1e90ff:\
|
|
|
|
#cd00cd:#00cdcd:#e5e5e5:#4c4c4c:#ff0000:#00ff00:#ffff00:#4682b4:\
|
|
|
|
#ff00ff:#00ffff:#ffffff',
|
|
|
|
'rxvt': '#000000:#cd0000:#00cd00:#cdcd00:#0000cd:\
|
|
|
|
#cd00cd:#00cdcd:#faebd7:#404040:#ff0000:#00ff00:#ffff00:#0000ff:\
|
|
|
|
#ff00ff:#00ffff:#ffffff',
|
|
|
|
'ambience': '#2e3436:#cc0000:#4e9a06:#c4a000:\
|
|
|
|
#3465a4:#75507b:#06989a:#d3d7cf:#555753:#ef2929:#8ae234:#fce94f:\
|
|
|
|
#729fcf:#ad7fa8:#34e2e2:#eeeeec'}
|
2010-01-10 00:35:38 +00:00
|
|
|
keybindingnames = { 'zoom_in' : 'Increase font size',
|
|
|
|
'zoom_out' : 'Decrease font size',
|
|
|
|
'zoom_normal' : 'Restore original font size',
|
|
|
|
'new_tab' : 'Create a new tab',
|
2010-01-19 11:22:51 +00:00
|
|
|
'cycle_next' : 'Focus the next terminal',
|
|
|
|
'cycle_prev' : 'Focus the previous terminal',
|
2010-01-10 00:35:38 +00:00
|
|
|
'go_next' : 'Focus the next terminal',
|
|
|
|
'go_prev' : 'Focus the previous terminal',
|
|
|
|
'go_up' : 'Focus the terminal above',
|
|
|
|
'go_down' : 'Focus the terminal below',
|
|
|
|
'go_left' : 'Focus the terminal left',
|
|
|
|
'go_right' : 'Focus the terminal right',
|
|
|
|
'split_horiz' : 'Split horizontally',
|
|
|
|
'split_vert' : 'Split vertically',
|
|
|
|
'close_term' : 'Close terminal',
|
|
|
|
'copy' : 'Copy selected text',
|
|
|
|
'paste' : 'Paste clipboard',
|
|
|
|
'toggle_scrollbar' : 'Show/Hide the scrollbar',
|
|
|
|
'search' : 'Search terminal scrollback',
|
|
|
|
'close_window' : 'Close window',
|
|
|
|
'resize_up' : 'Resize the terminal up',
|
|
|
|
'resize_down' : 'Resize the terminal down',
|
|
|
|
'resize_left' : 'Resize the terminal left',
|
|
|
|
'resize_right' : 'Resize the terminal right',
|
|
|
|
'move_tab_right' : 'Move the tab right',
|
|
|
|
'move_tab_left' : 'Move the tab left',
|
|
|
|
'toggle_zoom' : 'Maximise terminal',
|
|
|
|
'scaled_zoom' : 'Zoom terminal',
|
|
|
|
'next_tab' : 'Switch to the next tab',
|
|
|
|
'prev_tab' : 'Switch to the previous tab',
|
|
|
|
'switch_to_tab_1' : 'Switch to the first tab',
|
|
|
|
'switch_to_tab_2' : 'Switch to the second tab',
|
|
|
|
'switch_to_tab_3' : 'Switch to the third tab',
|
|
|
|
'switch_to_tab_4' : 'Switch to the fourth tab',
|
|
|
|
'switch_to_tab_5' : 'Switch to the fifth tab',
|
|
|
|
'switch_to_tab_6' : 'Switch to the sixth tab',
|
|
|
|
'switch_to_tab_7' : 'Switch to the seventh tab',
|
|
|
|
'switch_to_tab_8' : 'Switch to the eighth tab',
|
|
|
|
'switch_to_tab_9' : 'Switch to the ninth tab',
|
|
|
|
'switch_to_tab_10' : 'Switch to the tenth tab',
|
|
|
|
'full_screen' : 'Toggle fullscreen',
|
|
|
|
'reset' : 'Reset the terminal',
|
|
|
|
'reset_clear' : 'Reset and clear the terminal',
|
|
|
|
'hide_window' : 'Toggle window visibility',
|
|
|
|
'group_all' : 'Group all terminals',
|
|
|
|
'ungroup_all' : 'Ungroup all terminals',
|
|
|
|
'group_tab' : 'Group terminals in tab',
|
|
|
|
'ungroup_tab' : 'Ungroup terminals in tab',
|
|
|
|
'new_window' : 'Create a new window',
|
2010-01-30 00:04:55 +00:00
|
|
|
'new_terminator' : 'Spawn a new Terminator process',
|
2010-07-03 17:54:53 +00:00
|
|
|
'broadcast_off' : 'Don\'t broadcast key presses',
|
|
|
|
'broadcast_group' : 'Broadcast key presses to group',
|
|
|
|
'broadcast_all' : 'Broadcast key events to all'
|
2010-01-10 00:35:38 +00:00
|
|
|
}
|
|
|
|
|
2009-12-27 02:32:16 +00:00
|
|
|
def __init__ (self, term):
|
|
|
|
self.config = config.Config()
|
|
|
|
self.term = term
|
2010-01-08 01:02:49 +00:00
|
|
|
self.builder = gtk.Builder()
|
2010-01-10 00:20:24 +00:00
|
|
|
self.keybindings = Keybindings()
|
2010-01-08 01:02:49 +00:00
|
|
|
try:
|
2010-01-09 17:49:14 +00:00
|
|
|
# Figure out where our library is on-disk so we can open our
|
2010-01-22 22:53:23 +00:00
|
|
|
(head, _tail) = os.path.split(config.__file__)
|
2010-01-09 17:49:14 +00:00
|
|
|
librarypath = os.path.join(head, 'preferences.glade')
|
|
|
|
gladefile = open(librarypath, 'r')
|
2010-01-08 01:02:49 +00:00
|
|
|
gladedata = gladefile.read()
|
|
|
|
except Exception, ex:
|
|
|
|
print "Failed to find preferences.glade"
|
|
|
|
print ex
|
|
|
|
return
|
|
|
|
|
|
|
|
self.builder.add_from_string(gladedata)
|
|
|
|
self.window = self.builder.get_object('prefswin')
|
2010-03-05 22:20:48 +00:00
|
|
|
self.layouteditor = LayoutEditor(self.builder)
|
2010-01-08 01:02:49 +00:00
|
|
|
self.builder.connect_signals(self)
|
2010-03-05 22:20:48 +00:00
|
|
|
self.layouteditor.prepare()
|
2009-12-27 02:32:16 +00:00
|
|
|
self.window.show_all()
|
2010-03-10 12:52:25 +00:00
|
|
|
try:
|
|
|
|
self.config.inhibit_save()
|
|
|
|
self.set_values()
|
|
|
|
except Exception, e:
|
|
|
|
err('Unable to set values: %s' % e)
|
2010-06-03 15:37:58 +00:00
|
|
|
self.config.uninhibit_save()
|
2009-12-27 02:32:16 +00:00
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_closebutton_clicked(self, _button):
|
2010-01-09 17:42:59 +00:00
|
|
|
"""Close the window"""
|
2010-01-10 23:58:05 +00:00
|
|
|
terminator = Terminator()
|
2010-01-11 10:28:47 +00:00
|
|
|
terminator.reconfigure()
|
2010-01-09 17:42:59 +00:00
|
|
|
self.window.destroy()
|
|
|
|
del(self)
|
|
|
|
|
2010-01-08 01:02:49 +00:00
|
|
|
def set_values(self):
|
|
|
|
"""Update the preferences window with all the configuration from
|
|
|
|
Config()"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
## Global tab
|
|
|
|
# Mouse focus
|
|
|
|
focus = self.config['focus']
|
|
|
|
active = 0
|
|
|
|
if focus == 'click':
|
|
|
|
active = 1
|
2010-01-13 23:13:19 +00:00
|
|
|
elif focus in ['sloppy', 'mouse']:
|
2010-01-08 01:02:49 +00:00
|
|
|
active = 2
|
|
|
|
widget = guiget('focuscombo')
|
|
|
|
widget.set_active(active)
|
|
|
|
# Terminal separator size
|
|
|
|
termsepsize = self.config['handle_size']
|
|
|
|
widget = guiget('handlesize')
|
2010-01-09 22:27:56 +00:00
|
|
|
widget.set_value(float(termsepsize))
|
2010-01-08 01:02:49 +00:00
|
|
|
# Window geometry hints
|
|
|
|
geomhint = self.config['geometry_hinting']
|
|
|
|
widget = guiget('wingeomcheck')
|
|
|
|
widget.set_active(geomhint)
|
|
|
|
# Window state
|
|
|
|
option = self.config['window_state']
|
|
|
|
if option == 'hidden':
|
|
|
|
active = 1
|
|
|
|
elif option == 'maximise':
|
|
|
|
active = 2
|
|
|
|
elif option == 'fullscreen':
|
|
|
|
active = 3
|
|
|
|
else:
|
|
|
|
active = 0
|
|
|
|
widget = guiget('winstatecombo')
|
|
|
|
widget.set_active(active)
|
|
|
|
# Window borders
|
|
|
|
widget = guiget('winbordercheck')
|
|
|
|
widget.set_active(not self.config['borderless'])
|
|
|
|
# Tab bar position
|
|
|
|
option = self.config['tab_position']
|
|
|
|
widget = guiget('tabposcombo')
|
|
|
|
if option == 'bottom':
|
|
|
|
active = 1
|
|
|
|
elif option == 'left':
|
|
|
|
active = 2
|
|
|
|
elif option == 'right':
|
|
|
|
active = 3
|
2010-07-03 19:42:33 +00:00
|
|
|
elif option == 'hidden':
|
|
|
|
active = 4
|
2010-01-08 01:02:49 +00:00
|
|
|
else:
|
|
|
|
active = 0
|
|
|
|
widget.set_active(active)
|
2010-07-21 22:17:34 +00:00
|
|
|
# DBus Server
|
|
|
|
widget = guiget('dbuscheck')
|
|
|
|
widget.set_active(self.config['dbus'])
|
2010-05-15 18:07:07 +00:00
|
|
|
#Hide from taskbar
|
|
|
|
widget = guiget('hidefromtaskbcheck')
|
|
|
|
widget.set_active(self.config['hide_from_taskbar'])
|
|
|
|
#Always on top
|
|
|
|
widget = guiget('alwaysontopcheck')
|
|
|
|
widget.set_active(self.config['always_on_top'])
|
|
|
|
#Hide on lose focus
|
|
|
|
widget = guiget('hideonlosefocuscheck')
|
|
|
|
widget.set_active(self.config['hide_on_lose_focus'])
|
|
|
|
#Show on all workspaces
|
|
|
|
widget = guiget('stickycheck')
|
|
|
|
widget.set_active(self.config['sticky'])
|
2010-01-08 01:02:49 +00:00
|
|
|
|
|
|
|
## Profile tab
|
|
|
|
# Populate the profile list
|
|
|
|
widget = guiget('profilelist')
|
|
|
|
liststore = widget.get_model()
|
|
|
|
profiles = self.config.list_profiles()
|
|
|
|
self.profileiters = {}
|
|
|
|
for profile in profiles:
|
2010-01-30 15:33:37 +00:00
|
|
|
if profile == 'default':
|
|
|
|
editable = False
|
|
|
|
else:
|
|
|
|
editable = True
|
|
|
|
self.profileiters[profile] = liststore.append([profile, editable])
|
2010-01-08 01:02:49 +00:00
|
|
|
selection = widget.get_selection()
|
|
|
|
selection.connect('changed', self.on_profile_selection_changed)
|
|
|
|
selection.select_iter(self.profileiters['default'])
|
|
|
|
|
2010-01-09 17:42:59 +00:00
|
|
|
## Layouts tab
|
2010-02-05 00:16:24 +00:00
|
|
|
widget = guiget('layoutlist')
|
|
|
|
liststore = widget.get_model()
|
|
|
|
layouts = self.config.list_layouts()
|
|
|
|
self.layoutiters = {}
|
|
|
|
for layout in layouts:
|
|
|
|
if layout == 'default':
|
|
|
|
editable = False
|
|
|
|
else:
|
|
|
|
editable = True
|
|
|
|
self.layoutiters[layout] = liststore.append([layout, editable])
|
|
|
|
selection = widget.get_selection()
|
|
|
|
selection.connect('changed', self.on_layout_selection_changed)
|
|
|
|
selection.select_iter(self.layoutiters['default'])
|
2010-03-05 22:20:48 +00:00
|
|
|
# Now set up the selection changed handler for the layout itself
|
|
|
|
widget = guiget('LayoutTreeView')
|
|
|
|
selection = widget.get_selection()
|
|
|
|
selection.connect('changed', self.on_layout_item_selection_changed)
|
2010-01-09 17:42:59 +00:00
|
|
|
|
|
|
|
## Keybindings tab
|
2010-01-10 00:20:24 +00:00
|
|
|
widget = guiget('keybindingtreeview')
|
|
|
|
liststore = widget.get_model()
|
|
|
|
liststore.set_sort_column_id(0, gtk.SORT_ASCENDING)
|
|
|
|
keybindings = self.config['keybindings']
|
|
|
|
for keybinding in keybindings:
|
|
|
|
keyval = 0
|
|
|
|
mask = 0
|
|
|
|
value = keybindings[keybinding]
|
|
|
|
if value is not None and value != '':
|
|
|
|
try:
|
|
|
|
(keyval, mask) = self.keybindings._parsebinding(value)
|
|
|
|
except KeymapError:
|
|
|
|
pass
|
2010-01-10 00:35:38 +00:00
|
|
|
liststore.append([keybinding, self.keybindingnames[keybinding],
|
|
|
|
keyval, mask])
|
2010-01-09 17:42:59 +00:00
|
|
|
|
|
|
|
## Plugins tab
|
2010-06-20 21:41:55 +00:00
|
|
|
# Populate the plugin list
|
|
|
|
widget = guiget('pluginlist')
|
|
|
|
liststore = widget.get_model()
|
|
|
|
self.registry = PluginRegistry()
|
|
|
|
self.pluginiters = {}
|
2010-06-21 21:44:09 +00:00
|
|
|
pluginlist = self.registry.get_available_plugins()
|
|
|
|
self.plugins = {}
|
|
|
|
for plugin in pluginlist:
|
|
|
|
self.plugins[plugin] = self.registry.is_enabled(plugin)
|
|
|
|
|
|
|
|
for plugin in self.plugins:
|
2010-06-20 21:41:55 +00:00
|
|
|
self.pluginiters[plugin] = liststore.append([plugin,
|
2010-06-21 21:44:09 +00:00
|
|
|
self.plugins[plugin]])
|
2010-06-20 21:41:55 +00:00
|
|
|
selection = widget.get_selection()
|
|
|
|
selection.connect('changed', self.on_plugin_selection_changed)
|
|
|
|
if len(self.pluginiters) > 0:
|
|
|
|
selection.select_iter(liststore.get_iter_first())
|
2010-01-09 17:42:59 +00:00
|
|
|
|
2010-01-08 08:39:21 +00:00
|
|
|
def set_profile_values(self, profile):
|
2010-01-08 01:02:49 +00:00
|
|
|
"""Update the profile values for a given profile"""
|
|
|
|
self.config.set_profile(profile)
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
2010-01-08 08:39:21 +00:00
|
|
|
dbg('PrefsEditor::set_profile_values: Setting profile %s' % profile)
|
|
|
|
|
|
|
|
## General tab
|
|
|
|
# Use system font
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('system_font_checkbutton')
|
2010-01-08 08:39:21 +00:00
|
|
|
widget.set_active(self.config['use_system_font'])
|
2010-01-09 11:52:30 +00:00
|
|
|
self.on_system_font_checkbutton_toggled(widget)
|
2010-01-08 08:39:21 +00:00
|
|
|
# Font selector
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('font_selector')
|
2010-04-02 01:21:18 +00:00
|
|
|
|
2010-01-21 21:39:05 +00:00
|
|
|
if self.config['use_system_font'] == True:
|
2010-04-02 14:04:44 +00:00
|
|
|
fontname = self.config.get_system_font()
|
|
|
|
if fontname is not None:
|
|
|
|
widget.set_font_name(fontname)
|
2010-01-21 21:39:05 +00:00
|
|
|
else:
|
|
|
|
widget.set_font_name(self.config['font'])
|
2010-01-08 08:39:21 +00:00
|
|
|
# Allow bold text
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('allow_bold_checkbutton')
|
2010-01-08 01:02:49 +00:00
|
|
|
widget.set_active(self.config['allow_bold'])
|
2010-07-13 12:50:33 +00:00
|
|
|
# Anti-alias
|
|
|
|
widget = guiget('antialias_checkbutton')
|
|
|
|
widget.set_active(self.config['antialias'])
|
2010-02-11 13:45:02 +00:00
|
|
|
# Icon terminal bell
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('icon_bell_checkbutton')
|
2010-02-11 13:45:02 +00:00
|
|
|
widget.set_active(self.config['icon_bell'])
|
2010-01-08 08:39:21 +00:00
|
|
|
# Visual terminal bell
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('visual_bell_checkbutton')
|
2010-01-08 08:39:21 +00:00
|
|
|
widget.set_active(self.config['visible_bell'])
|
|
|
|
# Audible terminal bell
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('audible_bell_checkbutton')
|
2010-01-08 08:39:21 +00:00
|
|
|
widget.set_active(self.config['audible_bell'])
|
|
|
|
# WM_URGENT terminal bell
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('urgent_bell_checkbutton')
|
2010-01-08 08:39:21 +00:00
|
|
|
widget.set_active(self.config['urgent_bell'])
|
2010-02-09 00:23:21 +00:00
|
|
|
# Show titlebar
|
|
|
|
widget = guiget('show_titlebar')
|
|
|
|
widget.set_active(self.config['show_titlebar'])
|
2010-06-24 20:56:18 +00:00
|
|
|
# Copy on selection
|
|
|
|
widget = guiget('copy_on_selection')
|
|
|
|
widget.set_active(self.config['copy_on_selection'])
|
2010-02-08 22:10:59 +00:00
|
|
|
# Word chars
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('word_chars_entry')
|
2010-02-08 22:10:59 +00:00
|
|
|
widget.set_text(self.config['word_chars'])
|
2010-01-08 08:39:21 +00:00
|
|
|
# Cursor shape
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('cursor_shape_combobox')
|
2010-01-08 08:39:21 +00:00
|
|
|
if self.config['cursor_shape'] == 'underline':
|
|
|
|
active = 1
|
|
|
|
elif self.config['cursor_shape'] == 'ibeam':
|
|
|
|
active = 2
|
|
|
|
else:
|
|
|
|
active = 0
|
|
|
|
widget.set_active(active)
|
2010-02-08 22:10:59 +00:00
|
|
|
# Cursor blink
|
|
|
|
widget = guiget('cursor_blink')
|
|
|
|
widget.set_active(self.config['cursor_blink'])
|
|
|
|
# Cursor colour
|
|
|
|
widget = guiget('cursor_color')
|
|
|
|
widget.set_color(gtk.gdk.Color(self.config['cursor_color']))
|
2010-01-08 08:39:21 +00:00
|
|
|
|
2010-01-09 11:52:30 +00:00
|
|
|
## Command tab
|
2010-01-08 23:51:45 +00:00
|
|
|
# Login shell
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('login_shell_checkbutton')
|
2010-01-08 23:51:45 +00:00
|
|
|
widget.set_active(self.config['login_shell'])
|
|
|
|
# Login records
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('update_records_checkbutton')
|
2010-01-08 23:51:45 +00:00
|
|
|
widget.set_active(self.config['update_records'])
|
|
|
|
# Use Custom command
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('use_custom_command_checkbutton')
|
2010-01-08 23:51:45 +00:00
|
|
|
widget.set_active(self.config['use_custom_command'])
|
2010-01-09 11:52:30 +00:00
|
|
|
self.on_use_custom_command_checkbutton_toggled(widget)
|
2010-01-08 23:51:45 +00:00
|
|
|
# Custom Command
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('custom_command_entry')
|
2010-01-08 23:51:45 +00:00
|
|
|
widget.set_text(self.config['custom_command'])
|
|
|
|
# Exit action
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('exit_action_combobox')
|
2010-01-08 23:51:45 +00:00
|
|
|
if self.config['exit_action'] == 'restart':
|
|
|
|
widget.set_active(1)
|
|
|
|
elif self.config['exit_action'] == 'hold':
|
|
|
|
widget.set_active(2)
|
|
|
|
else:
|
|
|
|
# Default is to close the terminal
|
|
|
|
widget.set_active(0)
|
|
|
|
|
|
|
|
## Colors tab
|
|
|
|
# Use system colors
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('use_theme_colors_checkbutton')
|
2010-01-08 23:51:45 +00:00
|
|
|
widget.set_active(self.config['use_theme_colors'])
|
|
|
|
# Colorscheme
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('color_scheme_combobox')
|
2010-04-06 21:36:09 +00:00
|
|
|
scheme = None
|
2010-04-06 11:36:45 +00:00
|
|
|
for ascheme in self.colourschemes:
|
|
|
|
forecol = self.colourschemes[ascheme][0]
|
|
|
|
backcol = self.colourschemes[ascheme][1]
|
2010-04-15 11:31:49 +00:00
|
|
|
if self.config['foreground_color'].lower() == forecol and \
|
|
|
|
self.config['background_color'].lower() == backcol:
|
2010-04-06 11:36:45 +00:00
|
|
|
scheme = ascheme
|
|
|
|
break
|
2010-01-08 23:51:45 +00:00
|
|
|
if scheme not in self.colorschemevalues:
|
2010-04-15 11:22:54 +00:00
|
|
|
if self.config['foreground_color'] in [None, ''] or \
|
|
|
|
self.config['background_color'] in [None, '']:
|
|
|
|
scheme = 'grey_on_black'
|
|
|
|
else:
|
|
|
|
scheme = 'custom'
|
|
|
|
# NOTE: The scheme is set in the GUI widget after the fore/back colours
|
2010-01-08 23:51:45 +00:00
|
|
|
# Foreground color
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('foreground_colorpicker')
|
2010-01-08 23:51:45 +00:00
|
|
|
widget.set_color(gtk.gdk.Color(self.config['foreground_color']))
|
|
|
|
if scheme == 'custom':
|
|
|
|
widget.set_sensitive(True)
|
|
|
|
else:
|
|
|
|
widget.set_sensitive(False)
|
|
|
|
# Background color
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('background_colorpicker')
|
2010-01-08 23:51:45 +00:00
|
|
|
widget.set_color(gtk.gdk.Color(self.config['background_color']))
|
|
|
|
if scheme == 'custom':
|
|
|
|
widget.set_sensitive(True)
|
|
|
|
else:
|
|
|
|
widget.set_sensitive(False)
|
2010-04-15 11:22:54 +00:00
|
|
|
# Now actually set the scheme
|
|
|
|
widget = guiget('color_scheme_combobox')
|
|
|
|
widget.set_active(self.colorschemevalues[scheme])
|
2010-04-06 21:36:09 +00:00
|
|
|
# Palette scheme
|
|
|
|
widget = guiget('palette_combobox')
|
|
|
|
palette = None
|
|
|
|
for apalette in self.palettes:
|
2010-04-15 11:31:49 +00:00
|
|
|
if self.config['palette'].lower() == self.palettes[apalette]:
|
2010-04-06 21:36:09 +00:00
|
|
|
palette = apalette
|
|
|
|
if palette not in self.palettevalues:
|
2010-04-15 11:31:49 +00:00
|
|
|
if self.config['palette'] in [None, '']:
|
|
|
|
palette = 'rxvt'
|
|
|
|
else:
|
|
|
|
palette = 'custom'
|
|
|
|
# NOTE: The palette selector is set after the colour pickers
|
2010-04-06 21:36:09 +00:00
|
|
|
# Palette colour pickers
|
2010-04-15 11:31:49 +00:00
|
|
|
colourpalette = self.config['palette'].split(':')
|
2010-01-22 22:53:23 +00:00
|
|
|
for i in xrange(1, 17):
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('palette_colorpicker_%d' % i)
|
2010-04-15 11:31:49 +00:00
|
|
|
widget.set_color(gtk.gdk.Color(colourpalette[i - 1]))
|
|
|
|
# Now set the palette selector widget
|
|
|
|
widget = guiget('palette_combobox')
|
|
|
|
widget.set_active(self.palettevalues[palette])
|
2010-02-08 20:22:08 +00:00
|
|
|
# Titlebar colors
|
|
|
|
for bit in ['title_transmit_fg_color', 'title_transmit_bg_color',
|
|
|
|
'title_receive_fg_color', 'title_receive_bg_color',
|
|
|
|
'title_inactive_fg_color', 'title_inactive_bg_color']:
|
|
|
|
widget = guiget(bit)
|
|
|
|
widget.set_color(gtk.gdk.Color(self.config[bit]))
|
2010-01-09 00:47:49 +00:00
|
|
|
|
|
|
|
## Background tab
|
|
|
|
# Radio values
|
2010-01-22 18:39:09 +00:00
|
|
|
if self.config['background_type'] == 'solid':
|
2010-03-06 11:09:32 +00:00
|
|
|
guiget('solid_radiobutton').set_active(True)
|
2010-01-22 18:39:09 +00:00
|
|
|
elif self.config['background_type'] == 'image':
|
2010-03-06 11:09:32 +00:00
|
|
|
guiget('image_radiobutton').set_active(True)
|
2010-01-22 18:39:09 +00:00
|
|
|
elif self.config['background_type'] == 'transparent':
|
2010-03-06 11:09:32 +00:00
|
|
|
guiget('transparent_radiobutton').set_active(True)
|
2010-01-09 00:47:49 +00:00
|
|
|
self.update_background_tab()
|
|
|
|
# Background image file
|
|
|
|
if self.config['background_image'] != '':
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('background_image_filechooser')
|
2010-01-09 15:51:56 +00:00
|
|
|
if self.config['background_image'] is not None and \
|
|
|
|
self.config['background_image'] != '':
|
|
|
|
widget.set_filename(self.config['background_image'])
|
2010-01-09 00:47:49 +00:00
|
|
|
# Background image scrolls
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('scroll_background_checkbutton')
|
2010-01-09 00:47:49 +00:00
|
|
|
widget.set_active(self.config['scroll_background'])
|
|
|
|
# Background shading
|
|
|
|
widget = guiget('background_darkness_scale')
|
2010-01-09 22:27:56 +00:00
|
|
|
widget.set_value(float(self.config['background_darkness']))
|
2010-01-09 00:47:49 +00:00
|
|
|
|
|
|
|
## Scrolling tab
|
|
|
|
# Scrollbar position
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('scrollbar_position_combobox')
|
2010-01-09 00:47:49 +00:00
|
|
|
value = self.config['scrollbar_position']
|
|
|
|
if value == 'left':
|
|
|
|
widget.set_active(0)
|
2010-01-13 23:13:19 +00:00
|
|
|
elif value in ['disabled', 'hidden']:
|
2010-01-09 00:47:49 +00:00
|
|
|
widget.set_active(2)
|
|
|
|
else:
|
|
|
|
widget.set_active(1)
|
|
|
|
# Scrollback lines
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('scrollback_lines_spinbutton')
|
2010-01-09 00:47:49 +00:00
|
|
|
widget.set_value(self.config['scrollback_lines'])
|
2010-03-24 13:22:37 +00:00
|
|
|
# Scrollback infinite
|
|
|
|
widget = guiget('scrollback_infinite')
|
|
|
|
widget.set_active(self.config['scrollback_infinite'])
|
2010-01-09 00:47:49 +00:00
|
|
|
# Scroll on outut
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('scroll_on_output_checkbutton')
|
2010-01-09 00:47:49 +00:00
|
|
|
widget.set_active(self.config['scroll_on_output'])
|
|
|
|
# Scroll on keystroke
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('scroll_on_keystroke_checkbutton')
|
2010-01-09 00:47:49 +00:00
|
|
|
widget.set_active(self.config['scroll_on_keystroke'])
|
2010-04-09 11:34:05 +00:00
|
|
|
# Scroll in alternate mode
|
|
|
|
widget = guiget('alternate_screen_scroll_checkbutton')
|
|
|
|
widget.set_active(self.config['alternate_screen_scroll'])
|
2010-01-09 00:47:49 +00:00
|
|
|
|
|
|
|
## Compatibility tab
|
|
|
|
# Backspace key
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('backspace_binding_combobox')
|
2010-01-09 00:47:49 +00:00
|
|
|
value = self.config['backspace_binding']
|
|
|
|
if value == 'control-h':
|
2010-01-24 15:45:47 +00:00
|
|
|
widget.set_active(1)
|
|
|
|
elif value == 'ascii-del':
|
2010-01-09 00:47:49 +00:00
|
|
|
widget.set_active(2)
|
2010-01-24 15:45:47 +00:00
|
|
|
elif value == 'escape-sequence':
|
|
|
|
widget.set_active(3)
|
2010-01-09 00:47:49 +00:00
|
|
|
else:
|
2010-01-24 15:45:47 +00:00
|
|
|
widget.set_active(0)
|
2010-01-09 11:52:30 +00:00
|
|
|
# Delete key
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('delete_binding_combobox')
|
2010-01-09 11:52:30 +00:00
|
|
|
value = self.config['delete_binding']
|
|
|
|
if value == 'control-h':
|
|
|
|
widget.set_active(1)
|
2010-01-24 15:45:47 +00:00
|
|
|
elif value == 'ascii-del':
|
2010-01-09 17:42:59 +00:00
|
|
|
widget.set_active(2)
|
2010-01-24 15:45:47 +00:00
|
|
|
elif value == 'escape-sequence':
|
|
|
|
widget.set_active(3)
|
|
|
|
else:
|
|
|
|
widget.set_active(0)
|
2010-06-23 11:03:04 +00:00
|
|
|
# Encoding
|
|
|
|
rowiter = None
|
|
|
|
widget = guiget('encoding_combobox')
|
|
|
|
encodingstore = guiget('EncodingListStore')
|
|
|
|
value = self.config['encoding']
|
|
|
|
encodings = TerminatorEncoding().get_list()
|
|
|
|
encodings.sort(lambda x, y: cmp(x[2].lower(), y[2].lower()))
|
|
|
|
|
|
|
|
for encoding in encodings:
|
|
|
|
if encoding[1] is None:
|
|
|
|
continue
|
|
|
|
|
|
|
|
label = "%s %s" % (encoding[2], encoding[1])
|
|
|
|
rowiter = encodingstore.append([label, encoding[1]])
|
|
|
|
|
|
|
|
if encoding[1] == value:
|
|
|
|
widget.set_active_iter(rowiter)
|
2010-01-09 11:52:30 +00:00
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def set_layout(self, layout_name):
|
|
|
|
"""Set a layout"""
|
|
|
|
self.layouteditor.set_layout(layout_name)
|
2010-01-09 15:51:56 +00:00
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_wingeomcheck_toggled(self, widget):
|
|
|
|
"""Window geometry setting changed"""
|
|
|
|
self.config['geometry_hinting'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
2010-07-21 22:17:34 +00:00
|
|
|
def on_dbuscheck_toggled(self, widget):
|
|
|
|
"""DBus server setting changed"""
|
|
|
|
self.config['dbus'] = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_winbordercheck_toggled(self, widget):
|
|
|
|
"""Window border setting changed"""
|
|
|
|
self.config['borderless'] = not widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
2010-05-15 18:07:07 +00:00
|
|
|
def on_hidefromtaskbcheck_toggled(self, widget):
|
|
|
|
"""Hide from taskbar setting changed"""
|
|
|
|
self.config['hide_from_taskbar'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_alwaysontopcheck_toggled(self, widget):
|
|
|
|
"""Always on top setting changed"""
|
|
|
|
self.config['always_on_top'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_hideonlosefocuscheck_toggled(self, widget):
|
|
|
|
"""Hide on lose focus setting changed"""
|
|
|
|
self.config['hide_on_lose_focus'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_stickycheck_toggled(self, widget):
|
|
|
|
"""Sticky setting changed"""
|
|
|
|
self.config['sticky'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_allow_bold_checkbutton_toggled(self, widget):
|
|
|
|
"""Allow bold setting changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
self.config['allow_bold'] = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
2010-07-13 12:50:33 +00:00
|
|
|
def on_antialias_checkbutton_toggled(self, widget):
|
|
|
|
"""Anti-alias setting changed"""
|
|
|
|
self.config['antialias'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_show_titlebar_toggled(self, widget):
|
|
|
|
"""Show titlebar setting changed"""
|
|
|
|
self.config['show_titlebar'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
2010-06-24 20:56:18 +00:00
|
|
|
def on_copy_on_selection_toggled(self, widget):
|
|
|
|
"""Copy on selection setting changed"""
|
|
|
|
self.config['copy_on_selection'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_cursor_blink_toggled(self, widget):
|
|
|
|
"""Cursor blink setting changed"""
|
|
|
|
self.config['cursor_blink'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_icon_bell_checkbutton_toggled(self, widget):
|
|
|
|
"""Icon bell setting changed"""
|
2010-02-11 13:45:02 +00:00
|
|
|
self.config['icon_bell'] = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_visual_bell_checkbutton_toggled(self, widget):
|
|
|
|
"""Visual bell setting changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
self.config['visible_bell'] = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_audible_bell_checkbutton_toggled(self, widget):
|
|
|
|
"""Audible bell setting changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
self.config['audible_bell'] = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_urgent_bell_checkbutton_toggled(self, widget):
|
|
|
|
"""Window manager bell setting changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
self.config['urgent_bell'] = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_login_shell_checkbutton_toggled(self, widget):
|
|
|
|
"""Login shell setting changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
self.config['login_shell'] = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_update_records_checkbutton_toggled(self, widget):
|
|
|
|
"""Update records setting changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
self.config['update_records'] = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_scroll_background_checkbutton_toggled(self, widget):
|
|
|
|
"""Scroll background setting changed"""
|
|
|
|
self.config['scroll_background'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
2010-04-09 11:34:05 +00:00
|
|
|
def on_alternate_screen_scroll_checkbutton_toggled(self, widget):
|
|
|
|
"""Scroll in alt-mode setting changed"""
|
|
|
|
self.config['alternate_screen_scroll'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_scroll_on_keystroke_checkbutton_toggled(self, widget):
|
|
|
|
"""Scroll on keystrong setting changed"""
|
|
|
|
self.config['scroll_on_keystroke'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_scroll_on_output_checkbutton_toggled(self, widget):
|
|
|
|
"""Scroll on output setting changed"""
|
|
|
|
self.config['scroll_on_output'] = widget.get_active()
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_delete_binding_combobox_changed(self, widget):
|
|
|
|
"""Delete binding setting changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
selected = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
if selected == 1:
|
|
|
|
value = 'control-h'
|
2010-01-09 15:51:56 +00:00
|
|
|
elif selected == 2:
|
2010-03-09 13:09:07 +00:00
|
|
|
value = 'ascii-del'
|
|
|
|
elif selected == 3:
|
|
|
|
value = 'escape-sequence'
|
|
|
|
else:
|
|
|
|
value = 'automatic'
|
|
|
|
self.config['delete_binding'] = value
|
|
|
|
self.config.save()
|
2010-01-09 15:51:56 +00:00
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_backspace_binding_combobox_changed(self, widget):
|
|
|
|
"""Backspace binding setting changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
selected = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
if selected == 1:
|
|
|
|
value = 'control-h'
|
2010-01-09 15:51:56 +00:00
|
|
|
elif selected == 2:
|
2010-03-09 13:09:07 +00:00
|
|
|
value = 'ascii-del'
|
2010-01-09 15:51:56 +00:00
|
|
|
elif selected == 3:
|
2010-03-09 13:09:07 +00:00
|
|
|
value == 'escape-sequence'
|
|
|
|
else:
|
|
|
|
value = 'automatic'
|
|
|
|
self.config['backspace_binding'] = value
|
|
|
|
self.config.save()
|
2010-01-09 15:51:56 +00:00
|
|
|
|
2010-06-23 11:03:04 +00:00
|
|
|
def on_encoding_combobox_changed(self, widget):
|
|
|
|
"""Encoding setting changed"""
|
|
|
|
selected = widget.get_active_iter()
|
|
|
|
liststore = widget.get_model()
|
|
|
|
value = liststore.get_value(selected, 1)
|
|
|
|
|
|
|
|
self.config['encoding'] = value
|
|
|
|
self.config.save()
|
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_scrollback_lines_spinbutton_value_changed(self, widget):
|
|
|
|
"""Scrollback lines setting changed"""
|
|
|
|
value = widget.get_value_as_int()
|
|
|
|
self.config['scrollback_lines'] = value
|
|
|
|
self.config.save()
|
2010-01-09 15:51:56 +00:00
|
|
|
|
2010-03-24 13:22:37 +00:00
|
|
|
def on_scrollback_infinite_toggled(self, widget):
|
|
|
|
"""Scrollback infiniteness changed"""
|
|
|
|
spinbutton = self.builder.get_object('scrollback_lines_spinbutton')
|
|
|
|
value = widget.get_active()
|
|
|
|
if value == True:
|
|
|
|
spinbutton.set_sensitive(False)
|
|
|
|
else:
|
|
|
|
spinbutton.set_sensitive(True)
|
|
|
|
self.config['scrollback_infinite'] = value
|
|
|
|
self.config.save()
|
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_scrollbar_position_combobox_changed(self, widget):
|
|
|
|
"""Scrollbar position setting changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
selected = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
if selected == 1:
|
2010-01-09 15:51:56 +00:00
|
|
|
value = 'right'
|
2010-01-13 23:13:19 +00:00
|
|
|
elif selected == 2:
|
2010-01-09 15:51:56 +00:00
|
|
|
value = 'hidden'
|
2010-03-09 13:09:07 +00:00
|
|
|
else:
|
|
|
|
value = 'left'
|
2010-01-09 15:51:56 +00:00
|
|
|
self.config['scrollbar_position'] = value
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
2010-01-09 15:51:56 +00:00
|
|
|
|
2010-04-01 13:39:38 +00:00
|
|
|
def on_darken_background_scale_change_value(self, widget, scroll, value):
|
2010-03-09 13:09:07 +00:00
|
|
|
"""Background darkness setting changed"""
|
2010-04-02 01:21:18 +00:00
|
|
|
self.config['background_darkness'] = round(value, 2)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_background_image_filechooser_file_set(self, widget):
|
|
|
|
"""Background image setting changed"""
|
|
|
|
self.config['background_image'] = widget.get_filename()
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_palette_combobox_changed(self, widget):
|
|
|
|
"""Palette selector changed"""
|
2010-04-06 21:36:09 +00:00
|
|
|
value = None
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
active = widget.get_active()
|
|
|
|
|
|
|
|
for key in self.palettevalues.keys():
|
|
|
|
if self.palettevalues[key] == active:
|
|
|
|
value = key
|
|
|
|
|
|
|
|
if value == 'custom':
|
|
|
|
sensitive = True
|
|
|
|
else:
|
|
|
|
sensitive = False
|
|
|
|
|
|
|
|
for num in xrange(1, 17):
|
|
|
|
picker = guiget('palette_colorpicker_%d' % num)
|
|
|
|
picker.set_sensitive(sensitive)
|
|
|
|
|
|
|
|
if value in self.palettes:
|
|
|
|
palette = self.palettes[value]
|
|
|
|
palettebits = palette.split(':')
|
|
|
|
for num in xrange(1, 17):
|
|
|
|
# Update the visible elements
|
|
|
|
picker = guiget('palette_colorpicker_%d' % num)
|
|
|
|
picker.set_color(gtk.gdk.Color(palettebits[num - 1]))
|
|
|
|
elif value == 'custom':
|
|
|
|
palettebits = []
|
|
|
|
for num in xrange(1, 17):
|
|
|
|
picker = guiget('palette_colorpicker_%d' % num)
|
2010-04-13 22:17:52 +00:00
|
|
|
palettebits.append(color2hex(picker))
|
2010-04-06 21:36:09 +00:00
|
|
|
palette = ':'.join(palettebits)
|
|
|
|
else:
|
|
|
|
err('Unknown palette value: %s' % value)
|
|
|
|
return
|
|
|
|
|
|
|
|
self.config['palette'] = palette
|
|
|
|
self.config.save()
|
2010-03-09 13:09:07 +00:00
|
|
|
|
|
|
|
def on_background_colorpicker_color_set(self, widget):
|
|
|
|
"""Background color changed"""
|
2010-04-13 22:17:52 +00:00
|
|
|
self.config['background_color'] = color2hex(widget)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_foreground_colorpicker_color_set(self, widget):
|
|
|
|
"""Foreground color changed"""
|
2010-04-13 22:17:52 +00:00
|
|
|
self.config['foreground_color'] = color2hex(widget)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
2010-04-06 21:36:09 +00:00
|
|
|
def on_palette_colorpicker_color_set(self, widget):
|
|
|
|
"""A palette colour changed"""
|
|
|
|
palette = None
|
|
|
|
palettebits = []
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
# FIXME: We do this at least once elsewhere. refactor!
|
|
|
|
for num in xrange(1, 17):
|
|
|
|
picker = guiget('palette_colorpicker_%d' % num)
|
2010-04-13 22:17:52 +00:00
|
|
|
value = color2hex(picker)
|
|
|
|
palettebits.append(value)
|
2010-04-06 21:36:09 +00:00
|
|
|
palette = ':'.join(palettebits)
|
|
|
|
|
|
|
|
self.config['palette'] = palette
|
|
|
|
self.config.save()
|
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_exit_action_combobox_changed(self, widget):
|
|
|
|
"""Exit action changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
selected = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
if selected == 1:
|
|
|
|
value = 'restart'
|
2010-01-09 15:51:56 +00:00
|
|
|
elif selected == 2:
|
2010-03-09 13:09:07 +00:00
|
|
|
value = 'hold'
|
|
|
|
else:
|
|
|
|
value = 'close'
|
|
|
|
self.config['exit_action'] = value
|
|
|
|
self.config.save()
|
|
|
|
|
2010-04-13 11:52:16 +00:00
|
|
|
def on_custom_command_entry_changed(self, widget):
|
2010-03-09 13:09:07 +00:00
|
|
|
"""Custom command value changed"""
|
|
|
|
self.config['custom_command'] = widget.get_text()
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_cursor_color_color_set(self, widget):
|
|
|
|
"""Cursor colour changed"""
|
2010-04-13 22:17:52 +00:00
|
|
|
self.config['cursor_color'] = color2hex(widget)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_cursor_shape_combobox_changed(self, widget):
|
|
|
|
"""Cursor shape changed"""
|
2010-01-09 15:51:56 +00:00
|
|
|
selected = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
if selected == 1:
|
|
|
|
value = 'underline'
|
2010-01-09 15:51:56 +00:00
|
|
|
elif selected == 2:
|
2010-03-09 13:09:07 +00:00
|
|
|
value = 'ibeam'
|
|
|
|
else:
|
|
|
|
value = 'block'
|
|
|
|
self.config['cursor_shape'] = value
|
|
|
|
self.config.save()
|
2010-01-09 15:51:56 +00:00
|
|
|
|
2010-04-13 11:52:16 +00:00
|
|
|
def on_word_chars_entry_changed(self, widget):
|
2010-03-09 13:09:07 +00:00
|
|
|
"""Word characters changed"""
|
|
|
|
self.config['word_chars'] = widget.get_text()
|
|
|
|
self.config.save()
|
2010-02-05 00:16:24 +00:00
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
def on_font_selector_font_set(self, widget):
|
|
|
|
"""Font changed"""
|
|
|
|
self.config['font'] = widget.get_font_name()
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_title_receive_bg_color_color_set(self, widget):
|
|
|
|
"""Title receive background colour changed"""
|
2010-04-13 22:17:52 +00:00
|
|
|
self.config['title_receive_bg_color'] = color2hex(widget)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_title_receive_fg_color_color_set(self, widget):
|
|
|
|
"""Title receive foreground colour changed"""
|
2010-04-13 22:17:52 +00:00
|
|
|
self.config['title_receive_fg_color'] = color2hex(widget)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_title_inactive_bg_color_color_set(self, widget):
|
|
|
|
"""Title inactive background colour changed"""
|
2010-04-13 22:17:52 +00:00
|
|
|
self.config['title_inactive_bg_color'] = color2hex(widget)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_title_transmit_bg_color_color_set(self, widget):
|
|
|
|
"""Title transmit backgruond colour changed"""
|
2010-04-13 22:17:52 +00:00
|
|
|
self.config['title_transmit_bg_color'] = color2hex(widget)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_title_inactive_fg_color_color_set(self, widget):
|
|
|
|
"""Title inactive foreground colour changed"""
|
2010-04-13 22:17:52 +00:00
|
|
|
self.config['title_inactive_fg_color'] = color2hex(widget)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_title_transmit_fg_color_color_set(self, widget):
|
|
|
|
"""Title transmit foreground colour changed"""
|
2010-04-13 22:17:52 +00:00
|
|
|
self.config['title_transmit_fg_color'] = color2hex(widget)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
2010-03-31 08:26:09 +00:00
|
|
|
def on_handlesize_change_value(self, widget, scroll, value):
|
2010-03-09 13:09:07 +00:00
|
|
|
"""Handle size changed"""
|
2010-04-07 21:23:31 +00:00
|
|
|
value = int(value)
|
|
|
|
if value > 5:
|
|
|
|
value = 5
|
|
|
|
self.config['handle_size'] = value
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_focuscombo_changed(self, widget):
|
|
|
|
"""Focus type changed"""
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 1:
|
|
|
|
value = 'click'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'mouse'
|
|
|
|
else:
|
|
|
|
value = 'system'
|
|
|
|
self.config['focus'] = value
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_tabposcombo_changed(self, widget):
|
|
|
|
"""Tab position changed"""
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 1:
|
|
|
|
value = 'bottom'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'left'
|
|
|
|
elif selected == 3:
|
|
|
|
value = 'right'
|
2010-07-03 19:42:33 +00:00
|
|
|
elif selected == 4:
|
|
|
|
value = 'hidden'
|
2010-03-09 13:09:07 +00:00
|
|
|
else:
|
|
|
|
value = 'top'
|
|
|
|
self.config['tab_position'] = value
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def on_winstatecombo_changed(self, widget):
|
|
|
|
"""Window state changed"""
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 1:
|
|
|
|
value = 'hidden'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'maximise'
|
|
|
|
elif selected == 3:
|
|
|
|
value = 'fullscreen'
|
|
|
|
else:
|
|
|
|
value = 'normal'
|
|
|
|
self.config['window_state'] = value
|
|
|
|
self.config.save()
|
2010-02-05 00:16:24 +00:00
|
|
|
|
2010-01-22 22:53:23 +00:00
|
|
|
def on_profileaddbutton_clicked(self, _button):
|
2010-01-09 15:51:56 +00:00
|
|
|
"""Add a new profile to the list"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
treeview = guiget('profilelist')
|
|
|
|
model = treeview.get_model()
|
|
|
|
values = [ r[0] for r in model ]
|
|
|
|
|
|
|
|
newprofile = _('New Profile')
|
|
|
|
if newprofile in values:
|
2010-01-10 00:53:27 +00:00
|
|
|
i = 1
|
2010-01-09 15:51:56 +00:00
|
|
|
while newprofile in values:
|
|
|
|
i = i + 1
|
|
|
|
newprofile = '%s %d' % (_('New Profile'), i)
|
|
|
|
|
|
|
|
if self.config.add_profile(newprofile):
|
2010-02-08 21:03:43 +00:00
|
|
|
res = model.append([newprofile, True])
|
|
|
|
if res:
|
|
|
|
path = model.get_path(res)
|
|
|
|
treeview.set_cursor(path, focus_column=treeview.get_column(0),
|
|
|
|
start_editing=True)
|
2010-01-09 15:51:56 +00:00
|
|
|
|
2010-03-05 22:20:48 +00:00
|
|
|
self.layouteditor.update_profiles()
|
|
|
|
|
2010-01-22 22:53:23 +00:00
|
|
|
def on_profileremovebutton_clicked(self, _button):
|
2010-01-09 15:51:56 +00:00
|
|
|
"""Remove a profile from the list"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
treeview = guiget('profilelist')
|
|
|
|
selection = treeview.get_selection()
|
|
|
|
(model, rowiter) = selection.get_selected()
|
|
|
|
profile = model.get_value(rowiter, 0)
|
|
|
|
|
|
|
|
if profile == 'default':
|
|
|
|
# We shouldn't let people delete this profile
|
|
|
|
return
|
|
|
|
|
2010-01-31 16:24:45 +00:00
|
|
|
self.previous_profile_selection = None
|
2010-01-09 15:51:56 +00:00
|
|
|
self.config.del_profile(profile)
|
|
|
|
model.remove(rowiter)
|
|
|
|
selection.select_iter(model.get_iter_first())
|
2010-03-05 22:20:48 +00:00
|
|
|
self.layouteditor.update_profiles()
|
2010-01-09 15:51:56 +00:00
|
|
|
|
2010-02-05 00:16:24 +00:00
|
|
|
def on_layoutaddbutton_clicked(self, _button):
|
|
|
|
"""Add a new layout to the list"""
|
|
|
|
terminator = Terminator()
|
|
|
|
current_layout = terminator.describe_layout()
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
treeview = guiget('layoutlist')
|
|
|
|
model = treeview.get_model()
|
|
|
|
values = [ r[0] for r in model ]
|
|
|
|
|
|
|
|
name = _('New Layout')
|
|
|
|
if name in values:
|
|
|
|
i = 1
|
|
|
|
while name in values:
|
|
|
|
i = i + 1
|
|
|
|
name = '%s %d' % (_('New Layout'), i)
|
|
|
|
|
|
|
|
if self.config.add_layout(name, current_layout):
|
2010-02-08 21:03:43 +00:00
|
|
|
res = model.append([name, True])
|
|
|
|
if res:
|
|
|
|
path = model.get_path(res)
|
|
|
|
treeview.set_cursor(path, focus_column=treeview.get_column(0),
|
|
|
|
start_editing=True)
|
2010-02-05 00:16:24 +00:00
|
|
|
|
2010-03-18 23:11:18 +00:00
|
|
|
self.config.save()
|
|
|
|
|
2010-02-05 00:16:24 +00:00
|
|
|
def on_layoutremovebutton_clicked(self, _button):
|
|
|
|
"""Remove a layout from the list"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
treeview = guiget('layoutlist')
|
|
|
|
selection = treeview.get_selection()
|
|
|
|
(model, rowiter) = selection.get_selected()
|
|
|
|
layout = model.get_value(rowiter, 0)
|
|
|
|
|
|
|
|
if layout == 'default':
|
|
|
|
# We shouldn't let people delete this layout
|
|
|
|
return
|
|
|
|
|
2010-03-05 22:20:48 +00:00
|
|
|
self.previous_selection = None
|
2010-02-05 00:16:24 +00:00
|
|
|
self.config.del_layout(layout)
|
|
|
|
model.remove(rowiter)
|
|
|
|
selection.select_iter(model.get_iter_first())
|
2010-03-18 23:11:18 +00:00
|
|
|
self.config.save()
|
2010-02-05 00:16:24 +00:00
|
|
|
|
2010-01-09 11:52:30 +00:00
|
|
|
def on_use_custom_command_checkbutton_toggled(self, checkbox):
|
|
|
|
"""Toggling the use_custom_command checkbox needs to alter the
|
|
|
|
sensitivity of the custom_command entrybox"""
|
|
|
|
guiget = self.builder.get_object
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('custom_command_entry')
|
2010-03-09 13:09:07 +00:00
|
|
|
value = checkbox.get_active()
|
|
|
|
|
|
|
|
widget.set_sensitive(value)
|
|
|
|
self.config['use_custom_command'] = value
|
|
|
|
self.config.save()
|
2010-01-09 11:52:30 +00:00
|
|
|
|
|
|
|
def on_system_font_checkbutton_toggled(self, checkbox):
|
|
|
|
"""Toggling the use_system_font checkbox needs to alter the
|
|
|
|
sensitivity of the font selector"""
|
|
|
|
guiget = self.builder.get_object
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('font_selector')
|
2010-03-09 13:09:07 +00:00
|
|
|
value = checkbox.get_active()
|
|
|
|
|
|
|
|
widget.set_sensitive(not value)
|
|
|
|
self.config['use_system_font'] = value
|
|
|
|
self.config.save()
|
2010-01-09 11:52:30 +00:00
|
|
|
|
|
|
|
def on_reset_compatibility_clicked(self, widget):
|
|
|
|
"""Reset the confusing and annoying backspace/delete options to the
|
|
|
|
safest values"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('backspace_binding_combobox')
|
2010-01-09 11:52:30 +00:00
|
|
|
widget.set_active(2)
|
2010-03-06 11:09:32 +00:00
|
|
|
widget = guiget('delete_binding_combobox')
|
2010-01-24 15:45:47 +00:00
|
|
|
widget.set_active(3)
|
2010-01-09 00:47:49 +00:00
|
|
|
|
2010-01-22 22:53:23 +00:00
|
|
|
def on_background_type_toggled(self, _widget):
|
2010-01-09 00:47:49 +00:00
|
|
|
"""The background type was toggled"""
|
|
|
|
self.update_background_tab()
|
|
|
|
|
|
|
|
def update_background_tab(self):
|
|
|
|
"""Update the background tab"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
# Background type
|
|
|
|
backtype = None
|
2010-03-06 11:09:32 +00:00
|
|
|
imagewidget = guiget('image_radiobutton')
|
|
|
|
transwidget = guiget('transparent_radiobutton')
|
2010-01-09 00:47:49 +00:00
|
|
|
if transwidget.get_active() == True:
|
2010-03-09 13:09:07 +00:00
|
|
|
backtype = 'transparent'
|
2010-01-09 00:47:49 +00:00
|
|
|
elif imagewidget.get_active() == True:
|
|
|
|
backtype = 'image'
|
|
|
|
else:
|
|
|
|
backtype = 'solid'
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config['background_type'] = backtype
|
|
|
|
self.config.save()
|
|
|
|
|
2010-01-09 00:47:49 +00:00
|
|
|
if backtype == 'image':
|
2010-03-06 11:09:32 +00:00
|
|
|
guiget('background_image_filechooser').set_sensitive(True)
|
|
|
|
guiget('scroll_background_checkbutton').set_sensitive(True)
|
2010-01-09 00:47:49 +00:00
|
|
|
else:
|
2010-03-06 11:09:32 +00:00
|
|
|
guiget('background_image_filechooser').set_sensitive(False)
|
|
|
|
guiget('scroll_background_checkbutton').set_sensitive(False)
|
2010-03-09 13:09:07 +00:00
|
|
|
if backtype == 'transparent':
|
2010-03-06 11:09:32 +00:00
|
|
|
guiget('darken_background_scale').set_sensitive(True)
|
2010-01-09 00:47:49 +00:00
|
|
|
else:
|
2010-03-06 11:09:32 +00:00
|
|
|
guiget('darken_background_scale').set_sensitive(False)
|
2010-01-08 23:51:45 +00:00
|
|
|
|
2010-01-08 08:39:21 +00:00
|
|
|
def on_profile_selection_changed(self, selection):
|
|
|
|
"""A different profile was selected"""
|
|
|
|
(listmodel, rowiter) = selection.get_selected()
|
2010-01-09 15:51:56 +00:00
|
|
|
if not rowiter:
|
|
|
|
# Something is wrong, just jump to the first item in the list
|
|
|
|
treeview = selection.get_tree_view()
|
|
|
|
liststore = treeview.get_model()
|
|
|
|
selection.select_iter(liststore.get_iter_first())
|
|
|
|
return
|
2010-01-08 08:39:21 +00:00
|
|
|
profile = listmodel.get_value(rowiter, 0)
|
|
|
|
self.set_profile_values(profile)
|
2010-01-31 16:24:45 +00:00
|
|
|
self.previous_profile_selection = profile
|
2010-01-09 15:51:56 +00:00
|
|
|
|
|
|
|
widget = self.builder.get_object('profileremovebutton')
|
|
|
|
if profile == 'default':
|
|
|
|
widget.set_sensitive(False)
|
|
|
|
else:
|
|
|
|
widget.set_sensitive(True)
|
2010-01-08 01:02:49 +00:00
|
|
|
|
2010-06-20 21:41:55 +00:00
|
|
|
def on_plugin_selection_changed(self, selection):
|
|
|
|
"""A different plugin was selected"""
|
|
|
|
(listmodel, rowiter) = selection.get_selected()
|
|
|
|
if not rowiter:
|
|
|
|
# Something is wrong, just jump to the first item in the list
|
|
|
|
treeview = selection.get_tree_view()
|
|
|
|
liststore = treeview.get_model()
|
|
|
|
selection.select_iter(liststore.get_iter_first())
|
|
|
|
return
|
|
|
|
plugin = listmodel.get_value(rowiter, 0)
|
|
|
|
self.set_plugin(plugin)
|
|
|
|
self.previous_plugin_selection = plugin
|
|
|
|
|
|
|
|
widget = self.builder.get_object('plugintogglebutton')
|
|
|
|
|
|
|
|
def on_plugin_toggled(self, cell, path):
|
|
|
|
"""A plugin has been enabled or disabled"""
|
|
|
|
treeview = self.builder.get_object('pluginlist')
|
|
|
|
model = treeview.get_model()
|
|
|
|
plugin = model[path][0]
|
|
|
|
|
2010-06-22 23:48:06 +00:00
|
|
|
if not self.plugins[plugin]:
|
|
|
|
# Plugin is currently disabled, load it
|
|
|
|
self.registry.enable(plugin)
|
|
|
|
else:
|
|
|
|
# Plugin is currently enabled, unload it
|
|
|
|
self.registry.disable(plugin)
|
|
|
|
|
2010-06-21 21:44:09 +00:00
|
|
|
self.plugins[plugin] = not self.plugins[plugin]
|
2010-06-20 21:41:55 +00:00
|
|
|
# Update the treeview
|
2010-06-21 21:44:09 +00:00
|
|
|
model[path][1] = self.plugins[plugin]
|
2010-06-20 21:41:55 +00:00
|
|
|
|
2010-06-21 21:44:09 +00:00
|
|
|
enabled_plugins = [x for x in self.plugins if self.plugins[x] == True]
|
2010-06-20 21:41:55 +00:00
|
|
|
self.config['enabled_plugins'] = enabled_plugins
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
def set_plugin(self, plugin):
|
|
|
|
"""Show the preferences for the selected plugin, if any"""
|
|
|
|
pluginpanelabel = self.builder.get_object('pluginpanelabel')
|
|
|
|
pluginconfig = self.config.plugin_get_config(plugin)
|
|
|
|
# FIXME: Implement this, we need to auto-construct a UI for the plugin
|
|
|
|
|
2010-01-08 01:02:49 +00:00
|
|
|
def on_profile_name_edited(self, cell, path, newtext):
|
|
|
|
"""Update a profile name"""
|
|
|
|
oldname = cell.get_property('text')
|
2010-01-30 15:33:37 +00:00
|
|
|
if oldname == newtext or oldname == 'default':
|
2010-01-08 01:02:49 +00:00
|
|
|
return
|
|
|
|
dbg('PrefsEditor::on_profile_name_edited: Changing %s to %s' %
|
|
|
|
(oldname, newtext))
|
|
|
|
self.config.rename_profile(oldname, newtext)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
2010-01-08 01:02:49 +00:00
|
|
|
|
|
|
|
widget = self.builder.get_object('profilelist')
|
|
|
|
model = widget.get_model()
|
2010-01-22 22:53:23 +00:00
|
|
|
itera = model.get_iter(path)
|
|
|
|
model.set_value(itera, 0, newtext)
|
2010-01-08 01:02:49 +00:00
|
|
|
|
2010-01-31 16:24:45 +00:00
|
|
|
if oldname == self.previous_profile_selection:
|
|
|
|
self.previous_profile_selection = newtext
|
2010-01-10 00:53:27 +00:00
|
|
|
|
2010-02-05 00:16:24 +00:00
|
|
|
def on_layout_selection_changed(self, selection):
|
|
|
|
"""A different layout was selected"""
|
2010-03-05 22:20:48 +00:00
|
|
|
self.layouteditor.on_layout_selection_changed(selection)
|
2010-02-05 00:16:24 +00:00
|
|
|
|
2010-03-05 22:20:48 +00:00
|
|
|
def on_layout_item_selection_changed(self, selection):
|
|
|
|
"""A different item in the layout was selected"""
|
|
|
|
self.layouteditor.on_layout_item_selection_changed(selection)
|
2010-02-05 00:16:24 +00:00
|
|
|
|
2010-03-05 22:20:48 +00:00
|
|
|
def on_layout_profile_chooser_changed(self, widget):
|
|
|
|
"""A different profile has been selected for this item"""
|
|
|
|
self.layouteditor.on_layout_profile_chooser_changed(widget)
|
2010-02-27 13:06:53 +00:00
|
|
|
|
2010-04-13 11:52:16 +00:00
|
|
|
def on_layout_profile_command_changed(self, widget):
|
2010-03-05 22:20:48 +00:00
|
|
|
"""A different command has been entered for this item"""
|
|
|
|
self.layouteditor.on_layout_profile_command_activate(widget)
|
2010-02-12 08:16:18 +00:00
|
|
|
|
2010-02-05 00:16:24 +00:00
|
|
|
def on_layout_name_edited(self, cell, path, newtext):
|
|
|
|
"""Update a layout name"""
|
|
|
|
oldname = cell.get_property('text')
|
|
|
|
if oldname == newtext or oldname == 'default':
|
|
|
|
return
|
|
|
|
dbg('Changing %s to %s' % (oldname, newtext))
|
|
|
|
self.config.rename_layout(oldname, newtext)
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config.save()
|
2010-02-05 00:16:24 +00:00
|
|
|
|
|
|
|
widget = self.builder.get_object('layoutlist')
|
|
|
|
model = widget.get_model()
|
|
|
|
itera = model.get_iter(path)
|
|
|
|
model.set_value(itera, 0, newtext)
|
|
|
|
|
|
|
|
if oldname == self.previous_layout_selection:
|
|
|
|
self.previous_layout_selection = newtext
|
|
|
|
|
2010-03-10 12:52:25 +00:00
|
|
|
if oldname == self.layouteditor.layout_name:
|
|
|
|
self.layouteditor.layout_name = newtext
|
|
|
|
|
2010-01-08 23:51:45 +00:00
|
|
|
def on_color_scheme_combobox_changed(self, widget):
|
|
|
|
"""Update the fore/background colour pickers"""
|
|
|
|
value = None
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
active = widget.get_active()
|
2010-03-09 13:09:07 +00:00
|
|
|
|
2010-01-08 23:51:45 +00:00
|
|
|
for key in self.colorschemevalues.keys():
|
|
|
|
if self.colorschemevalues[key] == active:
|
|
|
|
value = key
|
|
|
|
|
2010-03-06 11:09:32 +00:00
|
|
|
fore = guiget('foreground_colorpicker')
|
|
|
|
back = guiget('background_colorpicker')
|
2010-01-08 23:51:45 +00:00
|
|
|
if value == 'custom':
|
|
|
|
fore.set_sensitive(True)
|
|
|
|
back.set_sensitive(True)
|
|
|
|
else:
|
|
|
|
fore.set_sensitive(False)
|
|
|
|
back.set_sensitive(False)
|
|
|
|
|
|
|
|
forecol = None
|
|
|
|
backcol = None
|
2010-04-06 11:36:45 +00:00
|
|
|
if value in self.colourschemes:
|
|
|
|
forecol = self.colourschemes[value][0]
|
|
|
|
backcol = self.colourschemes[value][1]
|
2010-04-01 21:05:14 +00:00
|
|
|
elif value == 'custom':
|
2010-04-13 22:17:52 +00:00
|
|
|
forecol = color2hex(fore)
|
|
|
|
backcol = color2hex(back)
|
2010-04-01 21:05:14 +00:00
|
|
|
else:
|
|
|
|
err('Unknown colourscheme value: %s' % value)
|
|
|
|
return
|
2010-01-08 23:51:45 +00:00
|
|
|
|
2010-04-01 21:05:14 +00:00
|
|
|
fore.set_color(gtk.gdk.Color(forecol))
|
|
|
|
back.set_color(gtk.gdk.Color(backcol))
|
2010-01-08 23:51:45 +00:00
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config['foreground_color'] = forecol
|
|
|
|
self.config['background_color'] = backcol
|
|
|
|
self.config.save()
|
|
|
|
|
2010-01-08 23:51:45 +00:00
|
|
|
def on_use_theme_colors_checkbutton_toggled(self, widget):
|
|
|
|
"""Update colour pickers"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
active = widget.get_active()
|
|
|
|
|
2010-03-06 11:09:32 +00:00
|
|
|
scheme = guiget('color_scheme_combobox')
|
|
|
|
fore = guiget('foreground_colorpicker')
|
|
|
|
back = guiget('background_colorpicker')
|
2010-01-08 23:51:45 +00:00
|
|
|
|
|
|
|
if active:
|
|
|
|
for widget in [scheme, fore, back]:
|
|
|
|
widget.set_sensitive(False)
|
|
|
|
else:
|
|
|
|
scheme.set_sensitive(True)
|
|
|
|
self.on_color_scheme_combobox_changed(scheme)
|
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
self.config['use_theme_colors'] = active
|
|
|
|
self.config.save()
|
|
|
|
|
2010-01-22 22:53:23 +00:00
|
|
|
def on_cellrenderer_accel_edited(self, liststore, path, key, mods, _code):
|
2010-01-10 00:20:24 +00:00
|
|
|
"""Handle an edited keybinding"""
|
|
|
|
celliter = liststore.get_iter_from_string(path)
|
|
|
|
liststore.set(celliter, 2, key, 3, mods)
|
2009-12-27 02:32:16 +00:00
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
binding = liststore.get_value(liststore.get_iter(path), 0)
|
|
|
|
accel = gtk.accelerator_name(key, mods)
|
|
|
|
self.config['keybindings'][binding] = accel
|
|
|
|
self.config.save()
|
|
|
|
|
2010-01-10 00:20:24 +00:00
|
|
|
def on_cellrenderer_accel_cleared(self, liststore, path):
|
2010-01-22 22:53:23 +00:00
|
|
|
"""Handle the clearing of a keybinding accelerator"""
|
2010-01-10 00:20:24 +00:00
|
|
|
celliter = liststore.get_iter_from_string(path)
|
|
|
|
liststore.set(celliter, 2, 0, 3, 0)
|
2009-12-27 02:32:16 +00:00
|
|
|
|
2010-03-09 13:09:07 +00:00
|
|
|
binding = liststore.get_value(liststore.get_iter(path), 0)
|
|
|
|
self.config['keybindings'][binding] = None
|
|
|
|
self.config.save()
|
|
|
|
|
2010-03-05 22:20:48 +00:00
|
|
|
class LayoutEditor:
|
|
|
|
profile_ids_to_profile = None
|
|
|
|
profile_profile_to_ids = None
|
|
|
|
layout_name = None
|
|
|
|
layout_item = None
|
|
|
|
builder = None
|
|
|
|
treeview = None
|
|
|
|
treestore = None
|
|
|
|
config = None
|
|
|
|
|
|
|
|
def __init__(self, builder):
|
|
|
|
"""Initialise ourself"""
|
|
|
|
self.config = config.Config()
|
|
|
|
self.builder = builder
|
|
|
|
|
|
|
|
def prepare(self, layout=None):
|
|
|
|
"""Do the things we can't do in __init__"""
|
|
|
|
self.treeview = self.builder.get_object('LayoutTreeView')
|
|
|
|
self.treestore = self.builder.get_object('LayoutTreeStore')
|
|
|
|
self.update_profiles()
|
|
|
|
if layout:
|
|
|
|
self.set_layout(layout)
|
|
|
|
|
|
|
|
def set_layout(self, layout_name):
|
|
|
|
"""Load a particular layout"""
|
|
|
|
self.layout_name = layout_name
|
|
|
|
store = self.treestore
|
|
|
|
layout = self.config.layout_get_config(layout_name)
|
|
|
|
listitems = {}
|
|
|
|
store.clear()
|
|
|
|
|
|
|
|
children = layout.keys()
|
|
|
|
i = 0
|
|
|
|
while children != []:
|
|
|
|
child = children.pop()
|
|
|
|
child_type = layout[child]['type']
|
|
|
|
parent = layout[child]['parent']
|
|
|
|
|
|
|
|
if child_type != 'Window' and parent not in layout:
|
|
|
|
# We have an orphan!
|
|
|
|
err('%s is an orphan in this layout. Discarding' % child)
|
|
|
|
continue
|
|
|
|
try:
|
|
|
|
parentiter = listitems[parent]
|
|
|
|
except KeyError:
|
|
|
|
if child_type == 'Window':
|
|
|
|
parentiter = None
|
|
|
|
else:
|
|
|
|
# We're not ready for this widget yet
|
|
|
|
children.insert(0, child)
|
|
|
|
continue
|
|
|
|
|
|
|
|
if child_type == 'VPaned':
|
|
|
|
child_type = 'Vertical split'
|
|
|
|
elif child_type == 'HPaned':
|
|
|
|
child_type = 'Horizontal split'
|
|
|
|
|
|
|
|
listitems[child] = store.append(parentiter, [child, child_type])
|
|
|
|
|
|
|
|
treeview = self.builder.get_object('LayoutTreeView')
|
|
|
|
treeview.expand_all()
|
|
|
|
|
|
|
|
def update_profiles(self):
|
|
|
|
"""Update the list of profiles"""
|
|
|
|
self.profile_ids_to_profile = {}
|
|
|
|
self.profile_profile_to_ids= {}
|
|
|
|
chooser = self.builder.get_object('layout_profile_chooser')
|
|
|
|
model = chooser.get_model()
|
|
|
|
|
|
|
|
model.clear()
|
|
|
|
|
|
|
|
profiles = self.config.list_profiles()
|
|
|
|
profiles.sort()
|
|
|
|
i = 0
|
|
|
|
for profile in profiles:
|
|
|
|
self.profile_ids_to_profile[i] = profile
|
|
|
|
self.profile_profile_to_ids[profile] = i
|
|
|
|
model.append([profile])
|
|
|
|
i = i + 1
|
|
|
|
|
|
|
|
def on_layout_selection_changed(self, selection):
|
|
|
|
"""A different layout was selected"""
|
|
|
|
(listmodel, rowiter) = selection.get_selected()
|
|
|
|
if not rowiter:
|
|
|
|
# Something is wrong, just jump to the first item in the list
|
|
|
|
selection.select_iter(self.treestore.get_iter_first())
|
|
|
|
return
|
|
|
|
layout = listmodel.get_value(rowiter, 0)
|
|
|
|
self.set_layout(layout)
|
|
|
|
self.previous_layout_selection = layout
|
|
|
|
|
|
|
|
widget = self.builder.get_object('layoutremovebutton')
|
|
|
|
if layout == 'default':
|
|
|
|
widget.set_sensitive(False)
|
|
|
|
else:
|
|
|
|
widget.set_sensitive(True)
|
|
|
|
|
|
|
|
def on_layout_item_selection_changed(self, selection):
|
|
|
|
"""A different item in the layout was selected"""
|
|
|
|
(treemodel, rowiter) = selection.get_selected()
|
|
|
|
if not rowiter:
|
|
|
|
return
|
|
|
|
item = treemodel.get_value(rowiter, 0)
|
|
|
|
self.layout_item = item
|
|
|
|
self.set_layout_item(item)
|
|
|
|
|
|
|
|
def set_layout_item(self, item_name):
|
|
|
|
"""Set a layout item"""
|
|
|
|
layout = self.config.layout_get_config(self.layout_name)
|
|
|
|
layout_item = layout[self.layout_item]
|
|
|
|
command = self.builder.get_object('layout_profile_command')
|
|
|
|
chooser = self.builder.get_object('layout_profile_chooser')
|
|
|
|
|
|
|
|
if layout_item['type'] != 'Terminal':
|
|
|
|
command.set_sensitive(False)
|
|
|
|
chooser.set_sensitive(False)
|
|
|
|
return
|
|
|
|
|
|
|
|
command.set_sensitive(True)
|
|
|
|
chooser.set_sensitive(True)
|
|
|
|
if layout_item.has_key('command') and layout_item['command'] != '':
|
|
|
|
command.set_text(layout_item['command'])
|
2010-03-10 12:52:25 +00:00
|
|
|
else:
|
|
|
|
command.set_text('')
|
2010-03-05 22:20:48 +00:00
|
|
|
|
|
|
|
if layout_item.has_key('profile') and layout_item['profile'] != '':
|
|
|
|
chooser.set_active(self.profile_profile_to_ids[layout_item['profile']])
|
2010-03-10 12:52:25 +00:00
|
|
|
else:
|
|
|
|
chooser.set_active(0)
|
2010-03-05 22:20:48 +00:00
|
|
|
|
|
|
|
def on_layout_profile_chooser_changed(self, widget):
|
|
|
|
"""A new profile has been selected for this item"""
|
|
|
|
if not self.layout_item:
|
|
|
|
return
|
|
|
|
profile = widget.get_active_text()
|
|
|
|
layout = self.config.layout_get_config(self.layout_name)
|
|
|
|
layout[self.layout_item]['profile'] = profile
|
2010-03-10 12:52:25 +00:00
|
|
|
self.config.save()
|
2010-03-05 22:20:48 +00:00
|
|
|
|
|
|
|
def on_layout_profile_command_activate(self, widget):
|
|
|
|
"""A new command has been entered for this item"""
|
|
|
|
command = widget.get_text()
|
|
|
|
layout = self.config.layout_get_config(self.layout_name)
|
|
|
|
layout[self.layout_item]['command'] = command
|
2010-03-10 12:52:25 +00:00
|
|
|
self.config.save()
|
2010-03-05 22:20:48 +00:00
|
|
|
|
2010-01-08 01:02:49 +00:00
|
|
|
if __name__ == '__main__':
|
2010-01-22 13:00:26 +00:00
|
|
|
import util
|
|
|
|
util.DEBUG = True
|
2010-01-08 01:02:49 +00:00
|
|
|
import terminal
|
2010-01-22 22:53:23 +00:00
|
|
|
TERM = terminal.Terminal()
|
|
|
|
PREFEDIT = PrefsEditor(TERM)
|
2010-01-08 01:02:49 +00:00
|
|
|
|
|
|
|
gtk.main()
|