Feeble exploration of the parts necessary for a graphical profile editor
This commit is contained in:
parent
93fad0cee1
commit
5f81247353
|
@ -157,5 +157,7 @@ See the following bug report for more details:
|
||||||
(debugthread, debugsvr) = debugserver.spawn(locals())
|
(debugthread, debugsvr) = debugserver.spawn(locals())
|
||||||
term.debugaddress = debugsvr.server_address
|
term.debugaddress = debugsvr.server_address
|
||||||
|
|
||||||
|
# from terminatorlib.prefs_profile import ProfileEditor
|
||||||
|
# prefs = ProfileEditor ()
|
||||||
gtk.main()
|
gtk.main()
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,49 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
from terminatorlib.config import dbg,err,Defaults
|
||||||
|
from terminatorlib.version import APP_NAME, APP_VERSION
|
||||||
|
|
||||||
|
import gtk
|
||||||
|
|
||||||
|
class ProfileEditor:
|
||||||
|
appearance = ['titlebars', 'titletips', 'allow_bold', 'silent_bell', 'background_color', 'background_darkness', 'background_type', 'background_image', 'cursor_blink', 'font', 'foreground_color', 'scrollbar_position', 'scroll_background', 'palette', 'use_system_font', 'use_theme_colors', 'force_no_bell', 'enable_real_transparency']
|
||||||
|
behaviour = ['delete_binding', 'emulation', 'scroll_on_keystroke', 'scroll_on_output', 'scrollback_lines', 'focus']
|
||||||
|
|
||||||
|
def __init__ (self):
|
||||||
|
self.window = gtk.Window ()
|
||||||
|
self.notebook = gtk.Notebook()
|
||||||
|
self.window.add (self.notebook)
|
||||||
|
|
||||||
|
self.notebook.append_page (self.auto_add (gtk.Table (), self.appearance), gtk.Label ("Appearance"))
|
||||||
|
self.notebook.append_page (self.auto_add (gtk.Table (), self.behaviour), gtk.Label ("Behaviour"))
|
||||||
|
|
||||||
|
self.window.show_all ()
|
||||||
|
|
||||||
|
def auto_add (self, table, list):
|
||||||
|
row = 0
|
||||||
|
for key in list:
|
||||||
|
table.resize (row + 1, 2)
|
||||||
|
label = gtk.Label (key)
|
||||||
|
|
||||||
|
type = Defaults[key].__class__.__name__
|
||||||
|
value = Defaults[key]
|
||||||
|
widget = None
|
||||||
|
|
||||||
|
if type == "bool":
|
||||||
|
widget = gtk.CheckButton ()
|
||||||
|
widget.set_active (value)
|
||||||
|
elif type in ["str", "int", "float"]:
|
||||||
|
widget = gtk.Entry ()
|
||||||
|
widget.set_text (str(value))
|
||||||
|
elif type == "list":
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
print "Unknown type: " + type
|
||||||
|
continue
|
||||||
|
|
||||||
|
table.attach (label, 0, 1, row, row + 1)
|
||||||
|
table.attach (widget, 1, 2, row, row + 1)
|
||||||
|
row += 1
|
||||||
|
|
||||||
|
return (table)
|
||||||
|
|
Loading…
Reference in New Issue