Merge pull request #40 from Lekensteyn/fixes

Fix window close, fix positioning of new windows
This commit is contained in:
Daniel Pavel 2013-05-06 08:19:27 -07:00
commit b884ae039c
1 changed files with 29 additions and 14 deletions

View File

@ -254,14 +254,31 @@ def _hide(w):
return True
def _show(w, trigger=None):
if trigger and isinstance(trigger, Gtk.StatusIcon):
x, y = w.get_position()
if x == 0 and y == 0:
# if the window hasn't been shown yet, position it next to the status icon
x, y, _ = Gtk.StatusIcon.position_menu(Gtk.Menu(), trigger)
w.move(x, y)
def _show(w, status_icon):
if w.is_visible():
return True
x, y = w.get_position()
w.present()
if x == 0 and y == 0:
# if the window hasn't been shown yet, position it relative to
# an other window (if it was shown before) or the status icon.
# TODO: need a more clever positioning algorithm like finding
# the window where space exist on the right, else pick the
# left-most window.
for win in _windows.values():
x, y = win.get_position()
if win != w and (x, y) != (0, 0):
# position left plus some window decoration
w_width, w_height = w.get_size()
x -= w_width + 10
w.move(x, y)
break
else:
if isinstance(status_icon, Gtk.StatusIcon):
x, y, _ = Gtk.StatusIcon.position_menu(Gtk.Menu(), status_icon)
w.move(x, y)
return True
@ -303,7 +320,7 @@ def _create(receiver):
window.set_skip_pager_hint(True)
window.set_keep_above(True)
# window.set_decorations(Gdk.DECOR_BORDER | Gdk.DECOR_TITLE)
window.connect('delete-event', _hide)
window.connect('delete-event', lambda widget, event: _hide(widget))
_windows[receiver.path] = window
return window
@ -315,19 +332,17 @@ def _destroy(receiver):
w.destroy()
def toggle_all(trigger):
def toggle_all(status_icon):
if not _windows:
return
visible = [w.get_visible() for w in _windows.values()]
if all(visible):
map(_hide, _windows.values())
for w in _windows.values():
_hide(w)
else:
for w in _windows.values():
if w.get_visible():
_hide(w)
else:
_show(w, trigger)
_show(w, status_icon)
#
#