land dnd-tabs branch
This commit is contained in:
commit
362c19b8b9
5
TODO
5
TODO
|
@ -1,6 +1 @@
|
||||||
* Edit doc/terminatorrc.5 manpage to contain the information about the options
|
* Edit doc/terminatorrc.5 manpage to contain the information about the options
|
||||||
* Write a Tab feature for terminator
|
|
||||||
|
|
||||||
* handling encoding
|
|
||||||
print self._vte.get_encoding ()
|
|
||||||
actually defaults to UTF-8
|
|
||||||
|
|
444
terminator
444
terminator
|
@ -35,6 +35,8 @@ except:
|
||||||
# import unix-lib
|
# import unix-lib
|
||||||
import pwd
|
import pwd
|
||||||
|
|
||||||
|
TARGET_TYPE_VTE = 8
|
||||||
|
|
||||||
# import our configuration loader
|
# import our configuration loader
|
||||||
from terminatorlib import config
|
from terminatorlib import config
|
||||||
from terminatorlib.config import dbg
|
from terminatorlib.config import dbg
|
||||||
|
@ -140,6 +142,22 @@ class TerminatorTerm (gtk.VBox):
|
||||||
self._vte.connect ("key-press-event", self.on_vte_key_press)
|
self._vte.connect ("key-press-event", self.on_vte_key_press)
|
||||||
self._vte.connect ("button-press-event", self.on_vte_button_press)
|
self._vte.connect ("button-press-event", self.on_vte_button_press)
|
||||||
self._vte.connect ("popup-menu", self.on_vte_popup_menu)
|
self._vte.connect ("popup-menu", self.on_vte_popup_menu)
|
||||||
|
|
||||||
|
"""drag and drop"""
|
||||||
|
srcvtetargets = [ ( "vte", gtk.TARGET_SAME_APP, TARGET_TYPE_VTE ) ]
|
||||||
|
dsttargets = [ ( "vte", gtk.TARGET_SAME_APP, TARGET_TYPE_VTE ), ('text/plain', 0, 0) , ("STRING", 0, 0), ("COMPOUND_TEXT", 0, 0)]
|
||||||
|
self._vte.drag_source_set( gtk.gdk.CONTROL_MASK | gtk.gdk.BUTTON3_MASK, srcvtetargets, gtk.gdk.ACTION_MOVE)
|
||||||
|
self._titlebox.drag_source_set( gtk.gdk.BUTTON1_MASK, srcvtetargets, gtk.gdk.ACTION_MOVE)
|
||||||
|
#self._vte.drag_dest_set(gtk.DEST_DEFAULT_MOTION | gtk.DEST_DEFAULT_HIGHLIGHT |gtk.DEST_DEFAULT_DROP ,dsttargets, gtk.gdk.ACTION_MOVE)
|
||||||
|
self._vte.drag_dest_set(gtk.DEST_DEFAULT_MOTION | gtk.DEST_DEFAULT_HIGHLIGHT |gtk.DEST_DEFAULT_DROP ,dsttargets, gtk.gdk.ACTION_MOVE)
|
||||||
|
self._vte.connect("drag-begin", self.on_drag_begin, self)
|
||||||
|
self._titlebox.connect("drag-begin", self.on_drag_begin, self)
|
||||||
|
self._vte.connect("drag-data-get", self.on_drag_data_get, self)
|
||||||
|
self._titlebox.connect("drag-data-get", self.on_drag_data_get, self)
|
||||||
|
#for testing purpose: drag-motion
|
||||||
|
self._vte.connect("drag-motion", self.on_drag_motion, self)
|
||||||
|
self._vte.connect("drag-data-received", self.on_drag_data_received, self)
|
||||||
|
|
||||||
self._vte.connect ("composited-changed", self.on_composited_changed)
|
self._vte.connect ("composited-changed", self.on_composited_changed)
|
||||||
self._vte.connect ("window-title-changed", self.on_vte_title_change)
|
self._vte.connect ("window-title-changed", self.on_vte_title_change)
|
||||||
self._vte.connect ("grab-focus", self.on_vte_focus)
|
self._vte.connect ("grab-focus", self.on_vte_focus)
|
||||||
|
@ -165,6 +183,148 @@ class TerminatorTerm (gtk.VBox):
|
||||||
|
|
||||||
os.putenv ('COLORTERM', 'gnome-terminal')
|
os.putenv ('COLORTERM', 'gnome-terminal')
|
||||||
|
|
||||||
|
def on_drag_begin(self, widget, drag_context, data):
|
||||||
|
if os.path.exists("/usr/share/icons/hicolor/48x48/apps/terminator.png"):
|
||||||
|
widget.drag_source_set_icon_pixbuf( gtk.gdk.pixbuf_new_from_file("/usr/share/icons/hicolor/48x48/apps/terminator.png"))
|
||||||
|
|
||||||
|
def on_drag_data_get(self,widget, drag_context, selection_data, info, time, data):
|
||||||
|
print "Drag data get"
|
||||||
|
selection_data.set("vte",info, str(data.terminator.term_list.index (self)))
|
||||||
|
|
||||||
|
|
||||||
|
def on_drag_motion(self, widget, drag_context, x, y, time, data):
|
||||||
|
#print "Drag Motion on ",
|
||||||
|
"""
|
||||||
|
x-special/gnome-icon-list
|
||||||
|
text/uri-list
|
||||||
|
UTF8_STRING
|
||||||
|
COMPOUND_TEXT
|
||||||
|
TEXT
|
||||||
|
STRING
|
||||||
|
text/plain;charset=utf-8
|
||||||
|
text/plain;charset=UTF-8
|
||||||
|
text/plain
|
||||||
|
"""
|
||||||
|
#print "motion"
|
||||||
|
|
||||||
|
if 'text/plain' in drag_context.targets:
|
||||||
|
#copy text from another widget
|
||||||
|
return
|
||||||
|
srcwidget = drag_context.get_source_widget()
|
||||||
|
if (isinstance(srcwidget, gtk.EventBox) and srcwidget == self._titlebox) or widget == srcwidget:
|
||||||
|
#on self
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
alloc = widget.allocation
|
||||||
|
rect = gtk.gdk.Rectangle(0, 0, alloc.width, alloc.height)
|
||||||
|
widget.window.invalidate_rect(rect, True)
|
||||||
|
widget.window.process_updates(True)
|
||||||
|
|
||||||
|
context = widget.window.cairo_create()
|
||||||
|
if self.conf.use_theme_colors:
|
||||||
|
color = self._vte.get_style ().text[gtk.STATE_NORMAL]
|
||||||
|
else:
|
||||||
|
color = gtk.gdk.color_parse (self.conf.foreground_color)
|
||||||
|
|
||||||
|
|
||||||
|
context.set_source_rgba(color.red, color.green, color.blue, 0.5)
|
||||||
|
|
||||||
|
pos = self.get_location(widget, x, y)
|
||||||
|
topleft = (0,0)
|
||||||
|
topright = (alloc.width,0)
|
||||||
|
topmiddle = (alloc.width/2,0)
|
||||||
|
bottomleft = (0, alloc.height)
|
||||||
|
bottomright = (alloc.width,alloc.height)
|
||||||
|
bottommiddle = (alloc.width/2, alloc.height)
|
||||||
|
middle = (alloc.width/2, alloc.height/2)
|
||||||
|
middleleft = (0, alloc.height/2)
|
||||||
|
middleright = (alloc.width, alloc.height/2)
|
||||||
|
#print "%f %f %d %d" %(coef1, coef2, b1,b2)
|
||||||
|
coord = ()
|
||||||
|
if pos == "right":
|
||||||
|
coord = (topright, topmiddle, bottommiddle, bottomright)
|
||||||
|
if pos == "top":
|
||||||
|
coord = (topleft, topright, middleright , middleleft)
|
||||||
|
if pos == "left":
|
||||||
|
coord = (topleft, topmiddle, bottommiddle, bottomleft)
|
||||||
|
if pos == "bottom":
|
||||||
|
coord = (bottomleft, bottomright, middleright , middleleft)
|
||||||
|
|
||||||
|
if len(coord) > 0 :
|
||||||
|
context.move_to(coord[len(coord)-1][0],coord[len(coord)-1][1])
|
||||||
|
for i in coord:
|
||||||
|
context.line_to(i[0],i[1])
|
||||||
|
|
||||||
|
context.fill()
|
||||||
|
|
||||||
|
|
||||||
|
def on_drag_drop(self, widget, drag_context, x, y, time):
|
||||||
|
print "Drag Drop on",
|
||||||
|
parent = widget.get_parent()
|
||||||
|
print parent,
|
||||||
|
|
||||||
|
def on_drag_data_received(self, widget, drag_context, x, y, selection_data, info, time, data):
|
||||||
|
print "Drag Data Received on "
|
||||||
|
if selection_data.type == 'text/plain':
|
||||||
|
#copy text to destination
|
||||||
|
#print "%s %s" % (selection_data.type, selection_data.target)
|
||||||
|
txt = selection_data.data.strip()
|
||||||
|
if txt[0:7] == "file://":
|
||||||
|
txt = "'%s'" % txt[7:]
|
||||||
|
self._vte.feed_child(txt)
|
||||||
|
return
|
||||||
|
|
||||||
|
widgetsrc = data.terminator.term_list[int(selection_data.data)]
|
||||||
|
srcvte = drag_context.get_source_widget()
|
||||||
|
#check if computation requireds
|
||||||
|
if (isinstance(srcvte, gtk.EventBox) and srcvte == self._titlebox) or srcvte == widget:
|
||||||
|
print "on itself"
|
||||||
|
return
|
||||||
|
|
||||||
|
srchbox = widgetsrc
|
||||||
|
dsthbox = widget.get_parent().get_parent()
|
||||||
|
|
||||||
|
dstpaned = dsthbox.get_parent()
|
||||||
|
srcpaned = srchbox.get_parent()
|
||||||
|
if isinstance(dstpaned, gtk.Window) and isinstance(srcpaned, gtk.Window):
|
||||||
|
print "Only one terminal"
|
||||||
|
return
|
||||||
|
pos = self.get_location(widget, x, y)
|
||||||
|
|
||||||
|
data.terminator.remove(widgetsrc)
|
||||||
|
data.terminator.add(self, widgetsrc,pos)
|
||||||
|
return
|
||||||
|
|
||||||
|
def get_location(self, vte, x, y):
|
||||||
|
pos = ""
|
||||||
|
#get the diagonales function for the receiving widget
|
||||||
|
coef1 = float(vte.allocation.height)/float(vte.allocation.width)
|
||||||
|
coef2 = -float(vte.allocation.height)/float(vte.allocation.width)
|
||||||
|
b1 = 0
|
||||||
|
b2 = vte.allocation.height
|
||||||
|
#determine position in rectangle
|
||||||
|
"""
|
||||||
|
--------
|
||||||
|
|\ /|
|
||||||
|
| \ / |
|
||||||
|
| \/ |
|
||||||
|
| /\ |
|
||||||
|
| / \ |
|
||||||
|
|/ \|
|
||||||
|
--------
|
||||||
|
"""
|
||||||
|
if (x*coef1 + b1 > y ) and (x*coef2 + b2 < y ):
|
||||||
|
pos = "right"
|
||||||
|
if (x*coef1 + b1 > y ) and (x*coef2 + b2 > y ):
|
||||||
|
pos = "top"
|
||||||
|
if (x*coef1 + b1 < y ) and (x*coef2 + b2 > y ):
|
||||||
|
pos = "left"
|
||||||
|
if (x*coef1 + b1 < y ) and (x*coef2 + b2 < y ):
|
||||||
|
pos = "bottom"
|
||||||
|
return pos
|
||||||
|
|
||||||
|
|
||||||
def add_matches (self, lboundry="[[:<:]]", rboundry="[[:>:]]"):
|
def add_matches (self, lboundry="[[:<:]]", rboundry="[[:>:]]"):
|
||||||
userchars = "-A-Za-z0-9"
|
userchars = "-A-Za-z0-9"
|
||||||
passchars = "-A-Za-z0-9,?;.:/!%$^*&~\"#'"
|
passchars = "-A-Za-z0-9,?;.:/!%$^*&~\"#'"
|
||||||
|
@ -370,8 +530,8 @@ class TerminatorTerm (gtk.VBox):
|
||||||
self._vte.grab_focus ()
|
self._vte.grab_focus ()
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Right mouse button should display a context menu
|
# Right mouse button should display a context menu if ctrl not pressed
|
||||||
if event.button == 3:
|
if event.button == 3 and event.state & gtk.gdk.CONTROL_MASK == 0:
|
||||||
self.do_popup (event)
|
self.do_popup (event)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -440,10 +600,22 @@ class TerminatorTerm (gtk.VBox):
|
||||||
elif keyname == 'S':
|
elif keyname == 'S':
|
||||||
self.do_scrollbar_toggle ()
|
self.do_scrollbar_toggle ()
|
||||||
return (True)
|
return (True)
|
||||||
|
elif keyname == 'T':
|
||||||
|
self.terminator.newtab(self)
|
||||||
|
return (True)
|
||||||
elif keyname in ('Up', 'Down', 'Left', 'Right'):
|
elif keyname in ('Up', 'Down', 'Left', 'Right'):
|
||||||
self.terminator.resizeterm (self, keyname)
|
self.terminator.resizeterm (self, keyname)
|
||||||
return (True)
|
return (True)
|
||||||
|
|
||||||
|
mask = gtk.gdk.CONTROL_MASK
|
||||||
|
if (event.state & mask) == mask:
|
||||||
|
if keyname == 'Page_Down':
|
||||||
|
self.terminator.next_tab(self)
|
||||||
|
return (True)
|
||||||
|
elif keyname == 'Page_Up':
|
||||||
|
self.terminator.previous_tab(self)
|
||||||
|
return (True)
|
||||||
|
|
||||||
if keyname and (keyname == 'Tab' or keyname.endswith('_Tab')):
|
if keyname and (keyname == 'Tab' or keyname.endswith('_Tab')):
|
||||||
if event.state == gtk.gdk.CONTROL_MASK:
|
if event.state == gtk.gdk.CONTROL_MASK:
|
||||||
self.terminator.go_next (self)
|
self.terminator.go_next (self)
|
||||||
|
@ -538,6 +710,10 @@ class TerminatorTerm (gtk.VBox):
|
||||||
item = gtk.MenuItem (_("Split V_ertically"))
|
item = gtk.MenuItem (_("Split V_ertically"))
|
||||||
item.connect ("activate", lambda menu_item: self.terminator.splitaxis (self, True))
|
item.connect ("activate", lambda menu_item: self.terminator.splitaxis (self, True))
|
||||||
menu.append (item)
|
menu.append (item)
|
||||||
|
|
||||||
|
item = gtk.MenuItem (_("Open _Tab"))
|
||||||
|
item.connect ("activate", lambda menu_item: self.terminator.newtab (self))
|
||||||
|
menu.append (item)
|
||||||
|
|
||||||
item = gtk.MenuItem ()
|
item = gtk.MenuItem ()
|
||||||
menu.append (item)
|
menu.append (item)
|
||||||
|
@ -611,6 +787,10 @@ class TerminatorTerm (gtk.VBox):
|
||||||
#set the title anyhow, titlebars setting only show/hide the label
|
#set the title anyhow, titlebars setting only show/hide the label
|
||||||
self._title.set_text(vte.get_window_title ())
|
self._title.set_text(vte.get_window_title ())
|
||||||
self.terminator.set_window_title("%s: %s" %(APP_NAME.capitalize(), vte.get_window_title ()))
|
self.terminator.set_window_title("%s: %s" %(APP_NAME.capitalize(), vte.get_window_title ()))
|
||||||
|
notebookpage = self.terminator.get_first_notebook_page(vte)
|
||||||
|
while notebookpage != None:
|
||||||
|
notebookpage[0].set_tab_label_text(notebookpage[1], vte.get_window_title ())
|
||||||
|
notebookpage = self.terminator.get_first_notebook_page(notebookpage[0])
|
||||||
|
|
||||||
def on_vte_focus_in(self, vte, event):
|
def on_vte_focus_in(self, vte, event):
|
||||||
self._titlebox.modify_bg(gtk.STATE_NORMAL,self.terminator.window.get_style().bg[gtk.STATE_SELECTED])
|
self._titlebox.modify_bg(gtk.STATE_NORMAL,self.terminator.window.get_style().bg[gtk.STATE_SELECTED])
|
||||||
|
@ -625,7 +805,14 @@ class TerminatorTerm (gtk.VBox):
|
||||||
def on_vte_focus(self, vte):
|
def on_vte_focus(self, vte):
|
||||||
if vte.get_window_title ():
|
if vte.get_window_title ():
|
||||||
self.terminator.set_window_title("%s: %s" %(APP_NAME.capitalize(), vte.get_window_title ()))
|
self.terminator.set_window_title("%s: %s" %(APP_NAME.capitalize(), vte.get_window_title ()))
|
||||||
|
notebookpage = self.terminator.get_first_notebook_page(vte)
|
||||||
|
while notebookpage != None:
|
||||||
|
notebookpage[0].set_tab_label_text(notebookpage[1], vte.get_window_title ())
|
||||||
|
notebookpage = self.terminator.get_first_notebook_page(notebookpage[0])
|
||||||
|
|
||||||
|
def destroy(self):
|
||||||
|
self._vte.destroy()
|
||||||
|
|
||||||
class Terminator:
|
class Terminator:
|
||||||
def __init__ (self, profile, command = None, fullscreen = False, maximise = False, borderless = False):
|
def __init__ (self, profile, command = None, fullscreen = False, maximise = False, borderless = False):
|
||||||
self.profile = profile
|
self.profile = profile
|
||||||
|
@ -760,13 +947,16 @@ class Terminator:
|
||||||
self.on_destroy_event (window, gtk.gdk.Event (gtk.gdk.DESTROY))
|
self.on_destroy_event (window, gtk.gdk.Event (gtk.gdk.DESTROY))
|
||||||
|
|
||||||
def set_window_title(self, title):
|
def set_window_title(self, title):
|
||||||
|
"""
|
||||||
|
Modifies Terminator window title
|
||||||
|
"""
|
||||||
self.window.set_title(title)
|
self.window.set_title(title)
|
||||||
|
|
||||||
def splitaxis (self, widget, vertical=True):
|
def add(self, widget, terminal, pos = "bottom"):
|
||||||
""" Split the provided widget on the horizontal or vertical axis. """
|
"""
|
||||||
|
Add a term to another at position pos
|
||||||
# create a new terminal and parent pane.
|
"""
|
||||||
terminal = TerminatorTerm (self, self.profile, None, widget.get_cwd())
|
vertical = pos in ("top", "bottom")
|
||||||
pane = (vertical) and gtk.VPaned () or gtk.HPaned ()
|
pane = (vertical) and gtk.VPaned () or gtk.HPaned ()
|
||||||
|
|
||||||
# get the parent of the provided terminal
|
# get the parent of the provided terminal
|
||||||
|
@ -775,15 +965,42 @@ class Terminator:
|
||||||
if isinstance (parent, gtk.Window):
|
if isinstance (parent, gtk.Window):
|
||||||
# We have just one term
|
# We have just one term
|
||||||
widget.reparent (pane)
|
widget.reparent (pane)
|
||||||
|
if pos in ("top", "left"):
|
||||||
pane.pack1 (widget, True, True)
|
pane.remove(widget)
|
||||||
pane.pack2 (terminal, True, True)
|
pane.pack1 (terminal, True, True)
|
||||||
|
pane.pack2 (widget, True, True)
|
||||||
|
else:
|
||||||
|
pane.pack1 (widget, True, True)
|
||||||
|
pane.pack2 (terminal, True, True)
|
||||||
parent.add (pane)
|
parent.add (pane)
|
||||||
|
|
||||||
position = (vertical) and parent.allocation.height \
|
position = (vertical) and parent.allocation.height \
|
||||||
or parent.allocation.width
|
or parent.allocation.width
|
||||||
|
|
||||||
|
if isinstance (parent, gtk.Notebook):
|
||||||
|
page = -1
|
||||||
|
for i in range(0, parent.get_n_pages()):
|
||||||
|
if parent.get_nth_page(i) == widget:
|
||||||
|
page = i
|
||||||
|
break
|
||||||
|
widget.reparent (pane)
|
||||||
|
if pos in ("top", "left"):
|
||||||
|
pane.remove(widget)
|
||||||
|
pane.pack1 (terminal, True, True)
|
||||||
|
pane.pack2 (widget, True, True)
|
||||||
|
else:
|
||||||
|
pane.pack1 (widget, True, True)
|
||||||
|
pane.pack2 (terminal, True, True)
|
||||||
|
#parent.remove_page(page)
|
||||||
|
pane.show()
|
||||||
|
parent.insert_page(pane, None, page)
|
||||||
|
parent.set_tab_label_text(pane, widget._vte.get_window_title())
|
||||||
|
parent.set_tab_label_packing(pane, True, True, gtk.PACK_START)
|
||||||
|
parent.set_current_page(page)
|
||||||
|
|
||||||
|
|
||||||
|
position = (vertical) and parent.allocation.height \
|
||||||
|
or parent.allocation.width
|
||||||
if isinstance (parent, gtk.Paned):
|
if isinstance (parent, gtk.Paned):
|
||||||
# We are inside a split term
|
# We are inside a split term
|
||||||
position = (vertical) and widget.allocation.height \
|
position = (vertical) and widget.allocation.height \
|
||||||
|
@ -796,6 +1013,14 @@ class Terminator:
|
||||||
widget.reparent (pane)
|
widget.reparent (pane)
|
||||||
parent.pack2 (pane, True, True)
|
parent.pack2 (pane, True, True)
|
||||||
|
|
||||||
|
if pos in ("top", "left"):
|
||||||
|
pane.remove(widget)
|
||||||
|
pane.pack1 (terminal, True, True)
|
||||||
|
pane.pack2 (widget, True, True)
|
||||||
|
else:
|
||||||
|
pane.pack1 (widget, True, True)
|
||||||
|
pane.pack2 (terminal, True, True)
|
||||||
|
|
||||||
pane.pack1 (widget, True, True)
|
pane.pack1 (widget, True, True)
|
||||||
pane.pack2 (terminal, True, True)
|
pane.pack2 (terminal, True, True)
|
||||||
|
|
||||||
|
@ -814,7 +1039,72 @@ class Terminator:
|
||||||
|
|
||||||
return (terminal)
|
return (terminal)
|
||||||
|
|
||||||
def closeterm (self, widget):
|
def on_page_reordered(self, notebook, child, page_num):
|
||||||
|
print page_num
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def newtab(self,widget):
|
||||||
|
terminal = TerminatorTerm (self, self.profile, None, widget.get_cwd())
|
||||||
|
widgetbox = widget
|
||||||
|
parent = widgetbox.get_parent ()
|
||||||
|
|
||||||
|
if isinstance(parent, gtk.Paned) or isinstance(parent, gtk.Window):
|
||||||
|
#no notebook yet.
|
||||||
|
notebook = gtk.Notebook()
|
||||||
|
notebook.connect('page-reordered',self.on_page_reordered)
|
||||||
|
notebook.set_property('homogeneous', True)
|
||||||
|
notebook.set_tab_reorderable(widgetbox, True)
|
||||||
|
|
||||||
|
if isinstance(parent, gtk.Paned):
|
||||||
|
if parent.get_child1() == widgetbox:
|
||||||
|
widgetbox.reparent(notebook)
|
||||||
|
parent.pack1(notebook)
|
||||||
|
else:
|
||||||
|
widgetbox.reparent(notebook)
|
||||||
|
parent.pack2(notebook)
|
||||||
|
elif isinstance(parent, gtk.Window):
|
||||||
|
widgetbox.reparent(notebook)
|
||||||
|
parent.add(notebook)
|
||||||
|
notebook.set_tab_reorderable(widgetbox,True)
|
||||||
|
notebooklabel = ""
|
||||||
|
if widget._vte.get_window_title() is not None:
|
||||||
|
notebooklabel = widget._vte.get_window_title()
|
||||||
|
notebook.set_tab_label_text(widgetbox, notebooklabel)
|
||||||
|
notebook. set_tab_label_packing(widgetbox, True, True, gtk.PACK_START)
|
||||||
|
notebook.show()
|
||||||
|
elif isinstance(parent, gtk.Notebook):
|
||||||
|
notebook = parent
|
||||||
|
else:
|
||||||
|
return (False)
|
||||||
|
|
||||||
|
notebook.append_page(terminal,terminal._vte.get_window_title())
|
||||||
|
notebook. set_tab_label_packing(terminal, True, True, gtk.PACK_START)
|
||||||
|
notebook.set_tab_reorderable(terminal,True)
|
||||||
|
notebook.set_current_page(-1)
|
||||||
|
index = self.term_list.index(widget)
|
||||||
|
self.term_list.insert (index + 1, terminal)
|
||||||
|
terminal.show ()
|
||||||
|
terminal.spawn_child ()
|
||||||
|
terminal._vte.grab_focus ()
|
||||||
|
return (True)
|
||||||
|
|
||||||
|
|
||||||
|
return terminal
|
||||||
|
|
||||||
|
def splitaxis (self, widget, vertical=True):
|
||||||
|
""" Split the provided widget on the horizontal or vertical axis. """
|
||||||
|
# create a new terminal and parent pane.
|
||||||
|
terminal = TerminatorTerm (self, self.profile, None, widget.get_cwd())
|
||||||
|
pos = vertical and "bottom" or "right"
|
||||||
|
self.add(widget, terminal, pos)
|
||||||
|
terminal.show ()
|
||||||
|
terminal.spawn_child ()
|
||||||
|
return terminal
|
||||||
|
|
||||||
|
def remove(self, widget):
|
||||||
|
"""Remove a TerminatorTerm from the Terminator view and terms list
|
||||||
|
Returns True on success, False on failure"""
|
||||||
parent = widget.get_parent ()
|
parent = widget.get_parent ()
|
||||||
sibling = None
|
sibling = None
|
||||||
|
|
||||||
|
@ -837,14 +1127,27 @@ class Terminator:
|
||||||
if not sibling:
|
if not sibling:
|
||||||
# something is wrong, give up
|
# something is wrong, give up
|
||||||
print >> sys.stderr, "Error: %s is not a child of %s"%(widget, parent)
|
print >> sys.stderr, "Error: %s is not a child of %s"%(widget, parent)
|
||||||
return
|
return False
|
||||||
|
|
||||||
self.term_list.remove (widget)
|
parent.remove(widget)
|
||||||
grandparent.remove (parent)
|
if isinstance(grandparent, gtk.Notebook):
|
||||||
sibling.reparent (grandparent)
|
page = -1
|
||||||
widget.destroy ()
|
for i in range(0, grandparent.get_n_pages()):
|
||||||
|
if grandparent.get_nth_page(i) == parent:
|
||||||
|
page = i
|
||||||
|
break
|
||||||
|
parent.remove(sibling)
|
||||||
|
grandparent.remove_page(page)
|
||||||
|
grandparent.insert_page(sibling, None,page)
|
||||||
|
grandparent.set_tab_label_packing(sibling, True, True, gtk.PACK_START)
|
||||||
|
|
||||||
|
else:
|
||||||
|
grandparent.remove (parent)
|
||||||
|
sibling.reparent (grandparent)
|
||||||
|
grandparent.resize_children()
|
||||||
parent.destroy ()
|
parent.destroy ()
|
||||||
|
self.term_list.remove (widget)
|
||||||
|
|
||||||
if not isinstance (sibling, gtk.Paned):
|
if not isinstance (sibling, gtk.Paned):
|
||||||
for term in self.term_list:
|
for term in self.term_list:
|
||||||
if term == sibling:
|
if term == sibling:
|
||||||
|
@ -853,10 +1156,39 @@ class Terminator:
|
||||||
else:
|
else:
|
||||||
if index == 0: index = 1
|
if index == 0: index = 1
|
||||||
self.term_list[index - 1]._vte.grab_focus ()
|
self.term_list[index - 1]._vte.grab_focus ()
|
||||||
if len(self.term_list) == 1:
|
elif isinstance (parent, gtk.Notebook):
|
||||||
self.term_list[0]._titlebox.hide()
|
parent.remove(widget)
|
||||||
|
nbpages = parent.get_n_pages()
|
||||||
|
index = self.term_list.index (widget)
|
||||||
|
self.term_list.remove (widget)
|
||||||
|
if nbpages == 1:
|
||||||
|
sibling = parent.get_nth_page(0)
|
||||||
|
parent.remove(sibling)
|
||||||
|
gdparent = parent.get_parent()
|
||||||
|
if isinstance(gdparent, gtk.Window):
|
||||||
|
gdparent.remove(parent)
|
||||||
|
gdparent.add(sibling)
|
||||||
|
elif isinstance(gdparent, gtk.Paned):
|
||||||
|
if gdparent.get_child1() == parent:
|
||||||
|
gdparent.remove(parent)
|
||||||
|
gdparent.pack1(sibling)
|
||||||
|
else:
|
||||||
|
gdparent.remove(parent)
|
||||||
|
gdparent.pack2(sibling)
|
||||||
|
parent.destroy()
|
||||||
|
if index == 0: index = 1
|
||||||
|
self.term_list[index - 1]._vte.grab_focus ()
|
||||||
|
|
||||||
|
if len(self.term_list) == 1:
|
||||||
|
self.term_list[0]._titlebox.hide()
|
||||||
|
|
||||||
return
|
return True
|
||||||
|
|
||||||
|
def closeterm (self, widget):
|
||||||
|
if self.remove(widget):
|
||||||
|
widget.destroy ()
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
def go_next (self, term):
|
def go_next (self, term):
|
||||||
current = self.term_list.index (term)
|
current = self.term_list.index (term)
|
||||||
|
@ -867,7 +1199,24 @@ class Terminator:
|
||||||
else:
|
else:
|
||||||
next += 1
|
next += 1
|
||||||
|
|
||||||
self.term_list[next]._vte.grab_focus ()
|
|
||||||
|
nextterm = self.term_list[next]
|
||||||
|
if isinstance(nextterm.get_parent(), gtk.Notebook):
|
||||||
|
box = nextterm
|
||||||
|
parent = box.get_parent()
|
||||||
|
for i in range(0, parent.get_n_pages()):
|
||||||
|
if box == parent.get_nth_page(i):
|
||||||
|
parent.set_current_page(i)
|
||||||
|
break
|
||||||
|
notebookpage = self.get_first_notebook_page(nextterm)
|
||||||
|
if notebookpage:
|
||||||
|
child = None
|
||||||
|
for i in range(0, notebookpage[0].get_n_pages()):
|
||||||
|
if notebookpage[0].get_nth_page(i) == notebookpage[1]:
|
||||||
|
notebookpage[0].set_current_page(i)
|
||||||
|
break
|
||||||
|
nextterm._vte.grab_focus ()
|
||||||
|
|
||||||
|
|
||||||
def go_prev (self, term):
|
def go_prev (self, term):
|
||||||
current = self.term_list.index (term)
|
current = self.term_list.index (term)
|
||||||
|
@ -879,7 +1228,25 @@ class Terminator:
|
||||||
previous -= 1
|
previous -= 1
|
||||||
|
|
||||||
#self.window.set_title(self.term_list[previous]._vte.get_window_title())
|
#self.window.set_title(self.term_list[previous]._vte.get_window_title())
|
||||||
self.term_list[previous]._vte.grab_focus ()
|
previousterm = self.term_list[previous]
|
||||||
|
if isinstance(previousterm.get_parent(), gtk.Notebook):
|
||||||
|
box = previousterm
|
||||||
|
parent = box.get_parent()
|
||||||
|
for i in range(0, parent.get_n_pages()):
|
||||||
|
if box == parent.get_nth_page(i):
|
||||||
|
parent.set_current_page(i)
|
||||||
|
break
|
||||||
|
notebookpage = self.get_first_notebook_page(previousterm)
|
||||||
|
if notebookpage:
|
||||||
|
child = None
|
||||||
|
for i in range(0, notebookpage[0].get_n_pages()):
|
||||||
|
if notebookpage[0].get_nth_page(i) == notebookpage[1]:
|
||||||
|
notebookpage[0].set_current_page(i)
|
||||||
|
break
|
||||||
|
previousterm._vte.grab_focus ()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def resizeterm (self, widget, keyname):
|
def resizeterm (self, widget, keyname):
|
||||||
vertical = False
|
vertical = False
|
||||||
|
@ -911,6 +1278,24 @@ class Terminator:
|
||||||
|
|
||||||
parent.set_position(move)
|
parent.set_position(move)
|
||||||
|
|
||||||
|
def previous_tab(self, term):
|
||||||
|
notebook = self.get_first_parent_notebook(term)
|
||||||
|
notebook.prev_page()
|
||||||
|
return
|
||||||
|
|
||||||
|
def next_tab(self, term):
|
||||||
|
notebook = self.get_first_parent_notebook(term)
|
||||||
|
notebook.next_page()
|
||||||
|
return
|
||||||
|
|
||||||
|
def get_first_parent_notebook(self, widget):
|
||||||
|
if isinstance (widget, gtk.Window):
|
||||||
|
return None
|
||||||
|
parent = widget.get_parent()
|
||||||
|
if isinstance (parent, gtk.Notebook):
|
||||||
|
return parent
|
||||||
|
return self.get_first_parent_notebook(parent)
|
||||||
|
|
||||||
def get_first_parent_paned (self, widget, vertical = None):
|
def get_first_parent_paned (self, widget, vertical = None):
|
||||||
"""This method returns the first parent pane of a widget.
|
"""This method returns the first parent pane of a widget.
|
||||||
if vertical is True returns the first VPaned
|
if vertical is True returns the first VPaned
|
||||||
|
@ -927,6 +1312,17 @@ class Terminator:
|
||||||
return parent
|
return parent
|
||||||
return self.get_first_parent_paned(parent, vertical)
|
return self.get_first_parent_paned(parent, vertical)
|
||||||
|
|
||||||
|
def get_first_notebook_page(self, widget):
|
||||||
|
if isinstance (widget, gtk.Window):
|
||||||
|
return None
|
||||||
|
parent = widget.get_parent()
|
||||||
|
if isinstance (parent, gtk.Notebook):
|
||||||
|
page = -1
|
||||||
|
for i in range(0, parent.get_n_pages()):
|
||||||
|
if parent.get_nth_page(i) == widget:
|
||||||
|
return (parent, widget)
|
||||||
|
return self.get_first_notebook_page(parent)
|
||||||
|
|
||||||
def reconfigure_vtes (self):
|
def reconfigure_vtes (self):
|
||||||
for term in self.term_list:
|
for term in self.term_list:
|
||||||
term.reconfigure_vte ()
|
term.reconfigure_vte ()
|
||||||
|
|
Loading…
Reference in New Issue