2008-08-21 23:19:18 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2010-01-09 17:49:14 +00:00
|
|
|
import os
|
2009-12-27 00:59:44 +00:00
|
|
|
import gtk
|
|
|
|
import gobject
|
|
|
|
|
2010-01-11 20:03:54 +00:00
|
|
|
from util import dbg
|
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-01-11 20:06:53 +00:00
|
|
|
from terminator import Terminator
|
2008-08-21 23:19:18 +00:00
|
|
|
|
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-09 17:42:59 +00:00
|
|
|
config = None
|
2010-01-10 00:20:24 +00:00
|
|
|
keybindings = None
|
2010-01-09 17:42:59 +00:00
|
|
|
window = None
|
|
|
|
builder = None
|
2010-01-09 15:51:56 +00:00
|
|
|
previous_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,
|
|
|
|
'custom': 6}
|
|
|
|
|
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',
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
(head, tail) = os.path.split(config.__file__)
|
|
|
|
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')
|
|
|
|
self.set_values()
|
|
|
|
self.builder.connect_signals(self)
|
2009-12-27 02:32:16 +00:00
|
|
|
self.window.show_all()
|
|
|
|
|
2010-01-09 17:42:59 +00:00
|
|
|
def on_cancelbutton_clicked(self, button):
|
|
|
|
"""Close the window"""
|
|
|
|
self.window.destroy()
|
|
|
|
del(self)
|
|
|
|
|
|
|
|
def on_okbutton_clicked(self, button):
|
|
|
|
"""Save the config"""
|
|
|
|
self.store_values()
|
|
|
|
self.config.save()
|
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
|
|
|
|
else:
|
|
|
|
active = 0
|
|
|
|
widget.set_active(active)
|
|
|
|
|
|
|
|
## Profile tab
|
|
|
|
# Populate the profile list
|
|
|
|
widget = guiget('profilelist')
|
|
|
|
liststore = widget.get_model()
|
|
|
|
profiles = self.config.list_profiles()
|
|
|
|
self.profileiters = {}
|
|
|
|
for profile in profiles:
|
|
|
|
self.profileiters[profile] = liststore.append([profile])
|
|
|
|
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
|
|
|
|
# FIXME: Implement this
|
|
|
|
|
|
|
|
## 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
|
|
|
|
# FIXME: Implement this
|
|
|
|
|
|
|
|
def store_values(self):
|
|
|
|
"""Store the values from the GUI back into Config()"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
## Global tab
|
|
|
|
# Focus
|
|
|
|
widget = guiget('focuscombo')
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 0:
|
|
|
|
value = 'system'
|
|
|
|
elif selected == 1:
|
|
|
|
value = 'click'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'mouse'
|
|
|
|
self.config['focus'] = value
|
|
|
|
# Handle size
|
|
|
|
widget = guiget('handlesize')
|
2010-01-11 23:46:18 +00:00
|
|
|
self.config['handle_size'] = int(widget.get_value())
|
2010-01-09 17:42:59 +00:00
|
|
|
# Window geometry
|
|
|
|
widget = guiget('wingeomcheck')
|
|
|
|
self.config['geometry_hinting'] = widget.get_active()
|
|
|
|
# Window state
|
|
|
|
widget = guiget('winstatecombo')
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 0:
|
|
|
|
value = 'normal'
|
|
|
|
elif selected == 1:
|
|
|
|
value = 'hidden'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'maximise'
|
|
|
|
elif selected == 3:
|
|
|
|
value = 'fullscreen'
|
|
|
|
self.config['window_state'] = value
|
|
|
|
# Window borders
|
|
|
|
widget = guiget('winbordercheck')
|
|
|
|
self.config['borderless'] = not widget.get_active()
|
|
|
|
# Tab position
|
|
|
|
widget = guiget('tabposcombo')
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 0:
|
|
|
|
value = 'top'
|
|
|
|
elif selected == 1:
|
|
|
|
value = 'bottom'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'left'
|
|
|
|
elif selected == 3:
|
|
|
|
value = 'right'
|
|
|
|
self.config['tab_position'] = value
|
|
|
|
|
|
|
|
## Profile tab
|
|
|
|
self.store_profile_values(self.previous_selection)
|
|
|
|
|
|
|
|
## Layouts tab
|
|
|
|
# FIXME: Implement this
|
|
|
|
|
|
|
|
## Keybindings tab
|
2010-01-10 00:20:24 +00:00
|
|
|
keybindings = self.config['keybindings']
|
|
|
|
liststore = guiget('KeybindingsListStore')
|
|
|
|
for keybinding in liststore:
|
|
|
|
accel = gtk.accelerator_name(keybinding[2], keybinding[3])
|
|
|
|
keybindings[keybinding[0]] = accel
|
2010-01-09 17:42:59 +00:00
|
|
|
|
|
|
|
## Plugins tab
|
|
|
|
# FIXME: Implement this
|
2010-01-10 00:20:24 +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
|
|
|
|
widget = guiget('system-font-checkbutton')
|
|
|
|
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
|
|
|
|
widget = guiget('font-selector')
|
2010-01-21 21:39:05 +00:00
|
|
|
if self.config['use_system_font'] == True:
|
|
|
|
widget.set_font_name(self.config.get_system_font())
|
|
|
|
else:
|
|
|
|
widget.set_font_name(self.config['font'])
|
2010-01-08 08:39:21 +00:00
|
|
|
# Allow bold text
|
2010-01-08 01:02:49 +00:00
|
|
|
widget = guiget('allow-bold-checkbutton')
|
|
|
|
widget.set_active(self.config['allow_bold'])
|
2010-01-08 08:39:21 +00:00
|
|
|
# Visual terminal bell
|
|
|
|
widget = guiget('visual-bell-checkbutton')
|
|
|
|
widget.set_active(self.config['visible_bell'])
|
|
|
|
# Audible terminal bell
|
|
|
|
widget = guiget('audible-bell-checkbutton')
|
|
|
|
widget.set_active(self.config['audible_bell'])
|
|
|
|
# WM_URGENT terminal bell
|
|
|
|
widget = guiget('urgent-bell-checkbutton')
|
|
|
|
widget.set_active(self.config['urgent_bell'])
|
|
|
|
# Cursor shape
|
|
|
|
widget = guiget('cursor-shape-combobox')
|
|
|
|
if self.config['cursor_shape'] == 'underline':
|
|
|
|
active = 1
|
|
|
|
elif self.config['cursor_shape'] == 'ibeam':
|
|
|
|
active = 2
|
|
|
|
else:
|
|
|
|
active = 0
|
|
|
|
widget.set_active(active)
|
|
|
|
# Word chars
|
|
|
|
widget = guiget('word-chars-entry')
|
|
|
|
widget.set_text(self.config['word_chars'])
|
|
|
|
|
2010-01-09 11:52:30 +00:00
|
|
|
## Command tab
|
2010-01-08 23:51:45 +00:00
|
|
|
# Login shell
|
|
|
|
widget = guiget('login-shell-checkbutton')
|
|
|
|
widget.set_active(self.config['login_shell'])
|
|
|
|
# Login records
|
|
|
|
widget = guiget('update-records-checkbutton')
|
|
|
|
widget.set_active(self.config['update_records'])
|
|
|
|
# Use Custom command
|
|
|
|
widget = guiget('use-custom-command-checkbutton')
|
|
|
|
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
|
|
|
|
widget = guiget('custom-command-entry')
|
|
|
|
widget.set_text(self.config['custom_command'])
|
|
|
|
# Exit action
|
|
|
|
widget = guiget('exit-action-combobox')
|
|
|
|
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
|
|
|
|
widget = guiget('use-theme-colors-checkbutton')
|
|
|
|
widget.set_active(self.config['use_theme_colors'])
|
|
|
|
# Colorscheme
|
|
|
|
widget = guiget('color-scheme-combobox')
|
|
|
|
scheme = self.config['color_scheme']
|
|
|
|
if scheme not in self.colorschemevalues:
|
|
|
|
scheme = 'grey_on_black'
|
|
|
|
widget.set_active(self.colorschemevalues[scheme])
|
|
|
|
# Foreground color
|
|
|
|
widget = guiget('foreground-colorpicker')
|
|
|
|
widget.set_color(gtk.gdk.Color(self.config['foreground_color']))
|
|
|
|
if scheme == 'custom':
|
|
|
|
widget.set_sensitive(True)
|
|
|
|
else:
|
|
|
|
widget.set_sensitive(False)
|
|
|
|
# Background color
|
|
|
|
widget = guiget('background-colorpicker')
|
|
|
|
widget.set_color(gtk.gdk.Color(self.config['background_color']))
|
|
|
|
if scheme == 'custom':
|
|
|
|
widget.set_sensitive(True)
|
|
|
|
else:
|
|
|
|
widget.set_sensitive(False)
|
2010-01-15 23:32:38 +00:00
|
|
|
# Palette
|
|
|
|
palette = self.config['palette'].split(':')
|
|
|
|
for i in xrange(1,17):
|
|
|
|
widget = guiget('palette-colorpicker-%d' % i)
|
|
|
|
widget.set_color(gtk.gdk.Color(palette[i - 1]))
|
2010-01-09 00:47:49 +00:00
|
|
|
|
|
|
|
## Background tab
|
|
|
|
# Radio values
|
|
|
|
self.update_background_tab()
|
|
|
|
# Background image file
|
|
|
|
if self.config['background_image'] != '':
|
|
|
|
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
|
|
|
|
widget = guiget('scroll-background-checkbutton')
|
|
|
|
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
|
|
|
|
|
|
|
if self.config['background_type'] == 'solid':
|
|
|
|
guiget('solid-radiobutton').set_active(True)
|
|
|
|
elif self.config['background_type'] == 'image':
|
|
|
|
guiget('image-radiobutton').set_active(True)
|
|
|
|
elif self.config['background_type'] == 'transparent':
|
2010-01-21 20:35:43 +00:00
|
|
|
guiget('transparent-radiobutton').set_active(True)
|
2010-01-09 00:47:49 +00:00
|
|
|
|
|
|
|
## Scrolling tab
|
|
|
|
# Scrollbar position
|
|
|
|
widget = guiget('scrollbar-position-combobox')
|
|
|
|
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
|
|
|
|
widget = guiget('scrollback-lines-spinbutton')
|
|
|
|
widget.set_value(self.config['scrollback_lines'])
|
|
|
|
# Scroll on outut
|
|
|
|
widget = guiget('scroll-on-output-checkbutton')
|
|
|
|
widget.set_active(self.config['scroll_on_output'])
|
|
|
|
# Scroll on keystroke
|
|
|
|
widget = guiget('scroll-on-keystroke-checkbutton')
|
|
|
|
widget.set_active(self.config['scroll_on_keystroke'])
|
|
|
|
|
|
|
|
## Compatibility tab
|
|
|
|
# Backspace key
|
|
|
|
widget = guiget('backspace-binding-combobox')
|
|
|
|
value = self.config['backspace_binding']
|
|
|
|
if value == 'control-h':
|
|
|
|
widget.set_active(0)
|
|
|
|
elif value == 'escape-sequence':
|
|
|
|
widget.set_active(2)
|
|
|
|
else:
|
|
|
|
widget.set_active(1)
|
2010-01-09 11:52:30 +00:00
|
|
|
# Delete key
|
|
|
|
widget = guiget('delete-binding-combobox')
|
|
|
|
value = self.config['delete_binding']
|
|
|
|
if value == 'control-h':
|
|
|
|
widget.set_active(0)
|
2010-01-09 17:42:59 +00:00
|
|
|
elif value == 'ascii-del':
|
2010-01-09 11:52:30 +00:00
|
|
|
widget.set_active(1)
|
2010-01-09 17:42:59 +00:00
|
|
|
else:
|
|
|
|
widget.set_active(2)
|
2010-01-09 11:52:30 +00:00
|
|
|
|
2010-01-09 15:51:56 +00:00
|
|
|
def store_profile_values(self, profile):
|
|
|
|
"""Pull out all the settings before switching profile"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
## General tab
|
|
|
|
# Use system font
|
|
|
|
widget = guiget('system-font-checkbutton')
|
|
|
|
self.config['use_system_font'] = widget.get_active()
|
|
|
|
# Font
|
|
|
|
widget = guiget('font-selector')
|
|
|
|
self.config['font'] = widget.get_font_name()
|
|
|
|
# Allow bold
|
|
|
|
widget = guiget('allow-bold-checkbutton')
|
|
|
|
self.config['allow_bold'] = widget.get_active()
|
|
|
|
# Visual Bell
|
|
|
|
widget = guiget('visual-bell-checkbutton')
|
|
|
|
self.config['visible_bell'] = widget.get_active()
|
|
|
|
# Audible Bell
|
|
|
|
widget = guiget('audible-bell-checkbutton')
|
|
|
|
self.config['audible_bell'] = widget.get_active()
|
|
|
|
# Urgent Bell
|
|
|
|
widget = guiget('urgent-bell-checkbutton')
|
|
|
|
self.config['urgent_bell'] = widget.get_active()
|
|
|
|
# Cursor Shape
|
|
|
|
widget = guiget('cursor-shape-combobox')
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 0:
|
|
|
|
value = 'block'
|
|
|
|
elif selected == 1:
|
|
|
|
value = 'underline'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'ibeam'
|
|
|
|
self.config['cursor_shape'] = value
|
|
|
|
# Word chars
|
|
|
|
widget = guiget('word-chars-entry')
|
|
|
|
self.config['word_chars'] = widget.get_text()
|
|
|
|
|
|
|
|
## Command tab
|
|
|
|
# Login shell
|
|
|
|
widget = guiget('login-shell-checkbutton')
|
|
|
|
self.config['login_shell'] = widget.get_active()
|
|
|
|
# Update records
|
|
|
|
widget = guiget('update-records-checkbutton')
|
|
|
|
self.config['update_records'] = widget.get_active()
|
|
|
|
# Use custom command
|
|
|
|
widget = guiget('use-custom-command-checkbutton')
|
|
|
|
self.config['use_custom_command'] = widget.get_active()
|
|
|
|
# Custom command
|
|
|
|
widget = guiget('custom-command-entry')
|
|
|
|
self.config['custom_command'] = widget.get_text()
|
|
|
|
# Exit action
|
|
|
|
widget = guiget('exit-action-combobox')
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 0:
|
|
|
|
value = 'close'
|
|
|
|
elif selected == 1:
|
|
|
|
value = 'restart'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'hold'
|
|
|
|
self.config['exit_action'] = value
|
|
|
|
|
|
|
|
## Colours tab
|
|
|
|
# Use system colours
|
|
|
|
widget = guiget('use-theme-colors-checkbutton')
|
|
|
|
self.config['use_theme_colors'] = widget.get_active()
|
|
|
|
# Colour scheme
|
|
|
|
widget = guiget('color-scheme-combobox')
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 0:
|
|
|
|
value = 'black_on_yellow'
|
|
|
|
elif selected == 1:
|
|
|
|
value = 'black_on_white'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'grey_on_black'
|
|
|
|
elif selected == 3:
|
|
|
|
value = 'green_on_black'
|
|
|
|
elif selected == 4:
|
|
|
|
value = 'white_on_black'
|
|
|
|
elif selected == 5:
|
|
|
|
value = 'orange_on_black'
|
|
|
|
elif selected == 6:
|
|
|
|
value = 'custom'
|
|
|
|
self.config['color_scheme'] = value
|
|
|
|
# Foreground colour
|
|
|
|
widget = guiget('foreground-colorpicker')
|
|
|
|
self.config['foreground_color'] = widget.get_color().to_string()
|
|
|
|
# Background colour
|
|
|
|
widget = guiget('background-colorpicker')
|
|
|
|
self.config['background_color'] = widget.get_color().to_string()
|
2010-01-15 23:32:38 +00:00
|
|
|
# Palette
|
|
|
|
palette = []
|
|
|
|
for i in xrange(1,17):
|
|
|
|
widget = guiget('palette-colorpicker-%d' % i)
|
|
|
|
palette.append(widget.get_color().to_string())
|
|
|
|
self.config['palette'] = ':'.join(palette)
|
2010-01-09 15:51:56 +00:00
|
|
|
|
|
|
|
## Background tab
|
|
|
|
# Background type
|
|
|
|
widget = guiget('solid-radiobutton')
|
|
|
|
if widget.get_active() == True:
|
|
|
|
value = 'solid'
|
|
|
|
widget = guiget('image-radiobutton')
|
|
|
|
if widget.get_active() == True:
|
|
|
|
value = 'image'
|
|
|
|
widget = guiget('transparent-radiobutton')
|
|
|
|
if widget.get_active() == True:
|
|
|
|
value = 'transparent'
|
2010-01-21 20:35:43 +00:00
|
|
|
self.config['background_type'] = value
|
2010-01-09 15:51:56 +00:00
|
|
|
# Background image
|
|
|
|
widget = guiget('background-image-filechooser')
|
|
|
|
self.config['background_image'] = widget.get_filename()
|
|
|
|
# Background scrolls
|
|
|
|
widget = guiget('scroll-background-checkbutton')
|
|
|
|
self.config['scroll_background'] = widget.get_active()
|
|
|
|
# Background darkness
|
|
|
|
widget = guiget('darken-background-scale')
|
|
|
|
self.config['background_darkness'] = widget.get_value()
|
|
|
|
|
|
|
|
## Scrolling tab
|
|
|
|
# Scrollbar
|
|
|
|
widget = guiget('scrollbar-position-combobox')
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 0:
|
|
|
|
value = 'left'
|
|
|
|
elif selected == 1:
|
|
|
|
value = 'right'
|
2010-01-13 23:13:19 +00:00
|
|
|
elif selected == 2:
|
2010-01-09 15:51:56 +00:00
|
|
|
value = 'hidden'
|
|
|
|
self.config['scrollbar_position'] = value
|
|
|
|
# Scrollback lines
|
|
|
|
widget = guiget('scrollback-lines-spinbutton')
|
2010-01-11 10:10:35 +00:00
|
|
|
self.config['scrollback_lines'] = int(widget.get_value())
|
2010-01-09 15:51:56 +00:00
|
|
|
# Scroll on output
|
|
|
|
widget = guiget('scroll-on-output-checkbutton')
|
|
|
|
self.config['scroll_on_output'] = widget.get_active()
|
|
|
|
# Scroll on keystroke
|
|
|
|
widget = guiget('scroll-on-keystroke-checkbutton')
|
|
|
|
self.config['scroll_on_keystroke'] = widget.get_active()
|
|
|
|
|
|
|
|
## Compatibility tab
|
|
|
|
# Backspace key
|
|
|
|
widget = guiget('backspace-binding-combobox')
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 0:
|
|
|
|
value = 'control-h'
|
|
|
|
elif selected == 1:
|
|
|
|
value = 'ascii-del'
|
|
|
|
elif selected == 2:
|
|
|
|
value =='escape-sequence'
|
|
|
|
self.config['backspace_binding'] = value
|
|
|
|
# Delete key
|
|
|
|
widget = guiget('delete-binding-combobox')
|
|
|
|
selected = widget.get_active()
|
|
|
|
if selected == 0:
|
|
|
|
value = 'control-h'
|
|
|
|
elif selected == 1:
|
|
|
|
value = 'ascii-del'
|
|
|
|
elif selected == 2:
|
|
|
|
value = 'escape-sequence'
|
|
|
|
self.config['delete_binding'] = value
|
|
|
|
|
|
|
|
def on_profileaddbutton_clicked(self, button):
|
|
|
|
"""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):
|
|
|
|
model.append([newprofile])
|
|
|
|
|
|
|
|
def on_profileremovebutton_clicked(self, button):
|
|
|
|
"""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-10 23:54:51 +00:00
|
|
|
self.previous_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-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
|
|
|
|
|
|
|
|
widget = guiget('custom-command-entry')
|
|
|
|
if checkbox.get_active() == True:
|
|
|
|
widget.set_sensitive(True)
|
|
|
|
else:
|
|
|
|
widget.set_sensitive(False)
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
widget = guiget('font-selector')
|
|
|
|
if checkbox.get_active() == True:
|
|
|
|
widget.set_sensitive(False)
|
|
|
|
else:
|
|
|
|
widget.set_sensitive(True)
|
|
|
|
|
|
|
|
def on_reset_compatibility_clicked(self, widget):
|
|
|
|
"""Reset the confusing and annoying backspace/delete options to the
|
|
|
|
safest values"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
|
|
|
|
widget = guiget('backspace-binding-combobox')
|
|
|
|
widget.set_active(1)
|
|
|
|
widget = guiget('delete-binding-combobox')
|
|
|
|
widget.set_active(2)
|
2010-01-09 00:47:49 +00:00
|
|
|
|
|
|
|
def on_background_type_toggled(self, widget):
|
|
|
|
"""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
|
|
|
|
solidwidget = guiget('solid-radiobutton')
|
|
|
|
imagewidget = guiget('image-radiobutton')
|
|
|
|
transwidget = guiget('transparent-radiobutton')
|
|
|
|
if transwidget.get_active() == True:
|
|
|
|
backtype = 'trans'
|
|
|
|
elif imagewidget.get_active() == True:
|
|
|
|
backtype = 'image'
|
|
|
|
else:
|
|
|
|
backtype = 'solid'
|
|
|
|
if backtype == 'image':
|
|
|
|
guiget('background-image-filechooser').set_sensitive(True)
|
|
|
|
guiget('scroll-background-checkbutton').set_sensitive(True)
|
|
|
|
else:
|
|
|
|
guiget('background-image-filechooser').set_sensitive(False)
|
|
|
|
guiget('scroll-background-checkbutton').set_sensitive(False)
|
|
|
|
if backtype == 'trans':
|
|
|
|
guiget('darken-background-scale').set_sensitive(True)
|
|
|
|
else:
|
|
|
|
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"""
|
2010-01-09 15:51:56 +00:00
|
|
|
if self.previous_selection is not None:
|
2010-01-10 00:53:27 +00:00
|
|
|
dbg('PrefsEditor::on_profile_selection_changed: Storing: %s' %
|
|
|
|
self.previous_selection)
|
2010-01-09 15:51:56 +00:00
|
|
|
self.store_profile_values(self.previous_selection)
|
|
|
|
|
2010-01-08 08:39:21 +00:00
|
|
|
(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-09 15:51:56 +00:00
|
|
|
self.previous_selection = profile
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
def on_profile_name_edited(self, cell, path, newtext):
|
|
|
|
"""Update a profile name"""
|
|
|
|
oldname = cell.get_property('text')
|
|
|
|
if oldname == newtext:
|
|
|
|
return
|
|
|
|
dbg('PrefsEditor::on_profile_name_edited: Changing %s to %s' %
|
|
|
|
(oldname, newtext))
|
|
|
|
self.config.rename_profile(oldname, newtext)
|
|
|
|
|
|
|
|
widget = self.builder.get_object('profilelist')
|
|
|
|
model = widget.get_model()
|
|
|
|
iter = model.get_iter(path)
|
|
|
|
model.set_value(iter, 0, newtext)
|
|
|
|
|
2010-01-10 00:53:27 +00:00
|
|
|
if oldname == self.previous_selection:
|
|
|
|
self.previous_selection = 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()
|
|
|
|
for key in self.colorschemevalues.keys():
|
|
|
|
if self.colorschemevalues[key] == active:
|
|
|
|
value = key
|
|
|
|
|
|
|
|
fore = guiget('foreground-colorpicker')
|
|
|
|
back = guiget('background-colorpicker')
|
|
|
|
if value == 'custom':
|
|
|
|
fore.set_sensitive(True)
|
|
|
|
back.set_sensitive(True)
|
|
|
|
else:
|
|
|
|
fore.set_sensitive(False)
|
|
|
|
back.set_sensitive(False)
|
|
|
|
|
|
|
|
forecol = None
|
|
|
|
backcol = None
|
|
|
|
if value == 'grey_on_black':
|
|
|
|
forecol = '#AAAAAA'
|
|
|
|
backcol = '#000000'
|
|
|
|
elif value == 'black_on_yellow':
|
|
|
|
forecol = '#000000'
|
|
|
|
backcol = '#FFFFDD'
|
|
|
|
elif value == 'black_on_white':
|
|
|
|
forecol = '#000000'
|
|
|
|
backcol = '#FFFFFF'
|
|
|
|
elif value == 'white_on_black':
|
|
|
|
forecol = '#FFFFFF'
|
|
|
|
backcol = '#000000'
|
|
|
|
elif value == 'green_on_black':
|
|
|
|
forecol = '#00FF00'
|
|
|
|
backcol = '#000000'
|
|
|
|
elif value == 'orange_on_black':
|
|
|
|
forecol = '#E53C00'
|
|
|
|
backcol = '#000000'
|
|
|
|
|
|
|
|
if forecol is not None:
|
|
|
|
fore.set_color(gtk.gdk.Color(forecol))
|
|
|
|
if backcol is not None:
|
|
|
|
back.set_color(gtk.gdk.Color(backcol))
|
|
|
|
|
|
|
|
def on_use_theme_colors_checkbutton_toggled(self, widget):
|
|
|
|
"""Update colour pickers"""
|
|
|
|
guiget = self.builder.get_object
|
|
|
|
active = widget.get_active()
|
|
|
|
|
|
|
|
scheme = guiget('color-scheme-combobox')
|
|
|
|
fore = guiget('foreground-colorpicker')
|
|
|
|
back = guiget('background-colorpicker')
|
|
|
|
|
|
|
|
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-01-10 00:20:24 +00:00
|
|
|
def on_cellrenderer_accel_edited(self, liststore, path, key, mods, code):
|
|
|
|
"""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-01-10 00:20:24 +00:00
|
|
|
def on_cellrenderer_accel_cleared(self, liststore, path):
|
|
|
|
celliter = liststore.get_iter_from_string(path)
|
|
|
|
liststore.set(celliter, 2, 0, 3, 0)
|
2009-12-27 02:32:16 +00:00
|
|
|
|
|
|
|
def source_get_keyname (self, key):
|
|
|
|
if self.data.has_key (key) and self.data[key][0] != '':
|
|
|
|
label_text = self.data[key][0]
|
2008-11-03 22:55:55 +00:00
|
|
|
else:
|
2009-12-27 02:32:16 +00:00
|
|
|
label_text = key.replace ('_', ' ').capitalize ()
|
|
|
|
return label_text
|
|
|
|
|
|
|
|
def prepare_keybindings (self):
|
|
|
|
self.liststore = gtk.ListStore (gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_UINT, gobject.TYPE_UINT, gobject.TYPE_BOOLEAN)
|
|
|
|
self.liststore.set_sort_column_id (0, gtk.SORT_ASCENDING)
|
|
|
|
self.tkbobj = Keybindings()
|
|
|
|
keyval = None
|
|
|
|
mask = None
|
|
|
|
|
|
|
|
for binding in config.DEFAULTS['keybindings']:
|
|
|
|
value = self.config['keybindings'][binding]
|
|
|
|
keyval = 0
|
|
|
|
mask = 0
|
|
|
|
if isinstance (value, tuple):
|
|
|
|
value = value[0]
|
|
|
|
if value is not None and value != "None":
|
|
|
|
try:
|
|
|
|
(keyval, mask) = self.tkbobj._parsebinding (value)
|
|
|
|
except KeymapError:
|
|
|
|
pass
|
|
|
|
self.liststore.append ([binding, self.source_get_keyname (binding), keyval, mask, True])
|
|
|
|
dbg("Appended row: %s, %s, %s" % (binding, keyval, mask))
|
|
|
|
|
|
|
|
self.treeview = gtk.TreeView(self.liststore)
|
|
|
|
|
|
|
|
cell = gtk.CellRendererText()
|
|
|
|
col = gtk.TreeViewColumn(_("Name"))
|
|
|
|
col.pack_start(cell, True)
|
|
|
|
col.add_attribute(cell, "text", 0)
|
|
|
|
|
|
|
|
self.treeview.append_column(col)
|
|
|
|
|
|
|
|
cell = gtk.CellRendererText()
|
|
|
|
col = gtk.TreeViewColumn(_("Action"))
|
|
|
|
col.pack_start(cell, True)
|
|
|
|
col.add_attribute(cell, "text", 1)
|
|
|
|
|
|
|
|
self.treeview.append_column(col)
|
|
|
|
|
|
|
|
cell = gtk.CellRendererAccel()
|
|
|
|
col = gtk.TreeViewColumn(_("Keyboard shortcut"))
|
|
|
|
col.pack_start(cell, True)
|
|
|
|
col.set_attributes(cell, accel_key=2, accel_mods=3, editable=4)
|
|
|
|
|
|
|
|
cell.connect ('accel-edited', self.edited)
|
|
|
|
cell.connect ('accel-cleared', self.cleared)
|
|
|
|
|
|
|
|
self.treeview.append_column(col)
|
|
|
|
|
|
|
|
scrollwin = gtk.ScrolledWindow ()
|
|
|
|
scrollwin.set_policy (gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
|
|
|
|
scrollwin.add (self.treeview)
|
|
|
|
return (scrollwin)
|
|
|
|
|
|
|
|
def edited (self, obj, path, key, mods, code):
|
|
|
|
iter = self.liststore.get_iter_from_string(path)
|
|
|
|
self.liststore.set(iter, 2, key, 3, mods)
|
|
|
|
|
|
|
|
def cleared (self, obj, path):
|
|
|
|
iter = self.liststore.get_iter_from_string(path)
|
|
|
|
self.liststore.set(iter, 2, 0, 3, 0)
|
2010-01-08 01:02:49 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import terminal
|
|
|
|
term = terminal.Terminal()
|
|
|
|
foo = PrefsEditor(term)
|
|
|
|
|
|
|
|
gtk.main()
|