]> Dogcows Code - chaz/openbox/blobdiff - scripts/stackedcycle.py
split out the linear cycling into focuscycle.py.
[chaz/openbox] / scripts / stackedcycle.py
index a022c0cc1a9b753337fda83fe0cc42dfe16bb606..5731a56456b82f641687d393d63ea48c18d9d6eb 100644 (file)
@@ -4,21 +4,39 @@
 
 ###########################################################################
 ###    Options that affect the behavior of the stackedcycle module.     ###
-###              Also see the options in the focus module.              ###
 ###########################################################################
 include_all_desktops = 0
+"""If this is non-zero then windows from all desktops will be included in
+   the stacking list."""
 include_icons = 1
+"""If this is non-zero then windows which are iconified will be included
+   in the stacking list."""
 include_omnipresent = 1
+"""If this is non-zero then windows which are on all-desktops at once will
+   be included."""
 title_size_limit = 80
+"""This specifies a rough limit of characters for the cycling list titles.
+   Titles which are larger will be chopped with an elipsis in their
+   center."""
 activate_while_cycling = 1
+"""If this is non-zero then windows will be activated as they are
+   highlighted in the cycling list (except iconified windows)."""
+# See focus.avoid_skip_taskbar
+# See focuscycle.raise_window
 ###########################################################################
 
 def next(data):
     """Focus the next window."""
+    if not data.state:
+        raise RuntimeError("stackedcycle.next must be bound to a key" +
+                           "combination with at least one modifier")
     _o.cycle(data, 1)
     
 def previous(data):
     """Focus the previous window."""
+    if not data.state:
+        raise RuntimeError("stackedcycle.previous must be bound to a key" +
+                           "combination with at least one modifier")
     _o.cycle(data, 0)
 
 ###########################################################################
@@ -31,6 +49,7 @@ def previous(data):
 import otk
 import ob
 import focus
+import focuscycle
 
 class cycledata:
     def __init__(self):
@@ -76,7 +95,6 @@ class cycledata:
 
         # get the list of clients
         self.clients = []
-        print focus._clients
         for i in focus._clients:
             c = ob.openbox.findClient(i)
             if c: self.clients.append(c)
@@ -97,7 +115,6 @@ class cycledata:
             
             w = otk.FocusLabel(self.widget)
             if current and c.window() == current.window():
-                print "found " + str(i)
                 self.menupos = i
                 w.focus()
             else:
@@ -151,7 +168,7 @@ class cycledata:
         
         # send a net_active_window message for the target
         if final or not client.iconic():
-            if final: r = focus.raise_window
+            if final: r = focuscycle.raise_window
             else: r = 0
             ob.send_client_msg(self.screeninfo.rootWindow(),
                                otk.Property_atoms().openbox_active_window,
@@ -188,16 +205,24 @@ class cycledata:
             self.activatetarget(0) # activate, but dont deiconify/unshade/raise
 
     def grabfunc(self, data):
-        if data.action == ob.KeyAction.Release:
-            # have all the modifiers this started with been released?
-            if not self.state & data.state:
-                self.cycling = 0
-                focus._disable = 0
-                self.activatetarget(1) # activate, and deiconify/unshade/raise
-                self.destroypopup()
-                ob.kungrab()
-                ob.mungrab()
+        done = 0
+        # have all the modifiers this started with been released?
+        if (data.action == ob.KeyAction.Release and
+            not self.state & data.state):
+            done = 1
+        # has Escape been pressed?
+        if data.action == ob.KeyAction.Press and data.key == "Escape":
+            done = 1
+            # revert
+            self.menupos = 0
 
+        if done:
+            self.cycling = 0
+            focus._disable = 0
+            self.activatetarget(1) # activate, and deiconify/unshade/raise
+            self.destroypopup()
+            ob.kungrab()
+            ob.mungrab()
 
 def _newwindow(data):
     if _o.cycling: _o.populatelist()
@@ -212,3 +237,5 @@ ob.ebind(ob.EventAction.NewWindow, _newwindow)
 ob.ebind(ob.EventAction.CloseWindow, _closewindow)
 
 _o = cycledata()
+
+print "Loaded stackedcycle.py"
This page took 0.023511 seconds and 4 git commands to generate.