]> Dogcows Code - chaz/openbox/blobdiff - scripts/callbacks.py
add the headers
[chaz/openbox] / scripts / callbacks.py
index 25ac965ff23a2e343cf7e40161bf03dae0dac1a9..0264626bf6b54dfbbac1094b9c96ab6a77e19db2 100644 (file)
@@ -5,77 +5,22 @@
 import ob
 import otk
 
-StateRemove = 0
-StateAdd = 1
-StateToggle = 2
-
-def state_above(data, add=StateAdd):
-    """Toggles, adds or removes the 'above' state on a window.
-       The second paramater should one of: StateRemove, StateAdd, or
-       StateToggle."""
-    if not data.client: return
-    ob.send_client_msg(otk.display.screenInfo(data.screen).rootWindow(),
-                       otk.Property_atoms().net_wm_state, data.client.window(),
-                       add, otk.Property_atoms().net_wm_state_above)
-    
-def state_below(data, add=StateAdd):
-    """Toggles, adds or removes the 'below' state on a window.
-       The second paramater should one of: StateRemove, StateAdd, or
-       StateToggle."""
-    if not data.client: return
-    ob.send_client_msg(otk.display.screenInfo(data.screen).rootWindow(),
-                       otk.Property_atoms().net_wm_state, data.client.window(),
-                       add, otk.Property_atoms().net_wm_state_below)
-    
-def state_shaded(data, add=StateAdd):
-    """Toggles, adds or removes the 'shaded' state on a window.
-       The second paramater should one of: StateRemove, StateAdd, or
-       StateToggle."""
-    if not data.client: return
-    ob.send_client_msg(otk.display.screenInfo(data.screen).rootWindow(),
-                       otk.Property_atoms().net_wm_state, data.client.window(),
-                       add, otk.Property_atoms().net_wm_state_shaded)
-
-def state_skip_taskbar(data, add=StateAdd):
-    """Toggles, adds or removes the 'skip_taskbar' state on a window.
-       The second paramater should one of: StateRemove, StateAdd, or
-       StateToggle."""
-    if not data.client: return
-    ob.send_client_msg(otk.display.screenInfo(data.screen).rootWindow(),
-                       otk.Property_atoms().net_wm_state, data.client.window(),
-                       add, otk.Property_atoms().net_wm_state_skip_taskbar)
-    
-def state_skip_pager(data, add=StateAdd):
-    """Toggles, adds or removes the 'skip_pager' state on a window.
-       The second paramater should one of: StateRemove, StateAdd, or
-       StateToggle."""
-    if not data.client: return
-    ob.send_client_msg(otk.display.screenInfo(data.screen).rootWindow(),
-                       otk.Property_atoms().net_wm_state, data.client.window(),
-                       add, otk.Property_atoms().net_wm_state_skip_pager)
-    
 def iconify(data):
     """Iconifies the window on which the event occured"""
     if not data.client: return
-    ob.send_client_msg(otk.display.screenInfo(data.screen).rootWindow(),
-                       otk.Property_atoms().wm_change_state,
-                       data.client.window(), 3) # IconicState
+    data.client.iconify(1)
     
 def restore(data):
     """Un-iconifies the window on which the event occured, but does not focus
        if. If you want to focus the window too, it is recommended that you
        use the activate() function."""
     if not data.client: return
-    ob.send_client_msg(otk.display.screenInfo(data.screen).rootWindow(),
-                       otk.Property_atoms().wm_change_state,
-                       data.client.window(), 1) # NormalState
+    data.client.iconify(0)
     
 def close(data):
     """Closes the window on which the event occured"""
     if not data.client: return
-    ob.send_client_msg(otk.display.screenInfo(data.screen).rootWindow(),
-                       otk.Property_atoms().net_close_window,
-                       data.client.window(), 0)
+    data.client.close()
 
 def focus(data):
     """Focuses the window on which the event occured"""
@@ -85,37 +30,98 @@ def focus(data):
         return
     data.client.focus()
 
-def restart(data, other = ""):
-    """Restarts openbox, optionally starting another window manager."""
-    ob.openbox.restart(other)
-
 def raise_win(data):
     """Raises the window on which the event occured"""
     if not data.client: return
-    ob.openbox.screen(data.screen).raiseWindow(data.client)
+    data.client.raiseWindow()
 
 def lower_win(data):
     """Lowers the window on which the event occured"""
     if not data.client: return
-    ob.openbox.screen(data.screen).lowerWindow(data.client)
+    data.client.lowerWindow()
+
+def toggle_maximize(data):
+    """Toggles the maximized status of the window on which the event occured"""
+    if not data.client: return
+    data.client.maximize(not (data.client.maxHorz() or data.client.maxVert()))
+
+def toggle_maximize_horz(data):
+    """Toggles the horizontal maximized status of the window on which the event
+       occured"""
+    if not data.client: return
+    data.client.maximizeHorizontal(not data.client.maxHorz())
+
+def toggle_maximize_vert(data):
+    """Toggles the vertical maximized status of the window on which the event
+       occured"""
+    if not data.client: return
+    data.client.maximizeVertical(not data.client.maxVert())
+
+def maximize(data):
+    """Maximizes the window on which the event occured"""
+    if not data.client: return
+    data.client.maximize(1)
+
+def maximize_horz(data):
+    """Horizontally maximizes the window on which the event occured"""
+    if not data.client: return
+    data.client.maximizeHorizontal(1)
+
+def maximize_vert(data):
+    """Vertically maximizes the window on which the event occured"""
+    if not data.client: return
+    data.client.maximizeVertical(1)
+
+def unmaximize(data):
+    """Unmaximizes the window on which the event occured"""
+    if not data.client: return
+    data.client.maximize(0)
+
+def unmaximize_horz(data):
+    """Horizontally unmaximizes the window on which the event occured"""
+    if not data.client: return
+    data.client.maximizeHorizontal(0)
+
+def unmaximize_vert(data):
+    """Vertically unmaximizes the window on which the event occured"""
+    if not data.client: return
+    data.client.maximizeVertical(0)
 
 def toggle_shade(data):
     """Toggles the shade status of the window on which the event occured"""
-    state_shaded(data, StateToggle)
+    if not data.client: return
+    data.client.shade(not data.client.shaded())
 
 def shade(data):
     """Shades the window on which the event occured"""
-    state_shaded(data, StateAdd)
+    if not data.client: return
+    data.client.shade(1)
 
 def unshade(data):
     """Unshades the window on which the event occured"""
-    state_shaded(data, StateRemove)
+    if not data.client: return
+    data.client.shade(0)
 
 def change_desktop(data, num):
     """Switches to a specified desktop"""
-    root = otk.display.screenInfo(data.screen).rootWindow()
-    ob.send_client_msg(root, otk.Property_atoms().net_current_desktop,
-                       root, num)
+    ob.openbox.screen(data.screen).changeDesktop(num)
+
+def show_desktop(data, show=1):
+    """Shows and focuses the desktop, hiding any client windows. Optionally,
+       if show is zero, this will hide the desktop, leaving show-desktop
+       mode."""
+    ob.openbox.screen(data.screen).showDesktop(show)
+
+def hide_desktop(data):
+    """Hides the desktop, re-showing the client windows. Leaves show-desktop
+       mode."""
+    show_desktop(data, 0)
+
+def toggle_show_desktop(data):
+    """Requests the Openbox to show the desktop, hiding the client windows, or
+       redisplay the clients."""
+    screen = ob.openbox.screen(data.screen)
+    screen.showDesktop(not screen.showingDesktop())
 
 def next_desktop(data, no_wrap=0):
     """Switches to the next desktop, optionally (by default) cycling around to
@@ -141,12 +147,74 @@ def prev_desktop(data, no_wrap=0):
         d = n - 1
     change_desktop(data, d)
 
+def up_desktop(data, num=1):
+    """Switches to the desktop vertically above the current one. This is based
+       on the desktop layout chosen by an EWMH compliant pager. Optionally, num
+       can be specified to move more than one row at a time."""
+    screen = ob.openbox.screen(data.screen)
+    d = screen.desktop()
+    n = screen.numDesktops()
+    l = screen.desktopLayout()
+
+    target = d - num * l.columns
+    if target < 0:
+        target += l.rows * l.columns
+    while target >= n:
+        target -= l.columns
+    change_desktop(data, target)
+
+def down_desktop(data, num=1):
+    """Switches to the desktop vertically below the current one. This is based
+       on the desktop layout chosen by an EWMH compliant pager. Optionally, num
+       can be specified to move more than one row at a time."""
+    screen = ob.openbox.screen(data.screen)
+    d = screen.desktop()
+    n = screen.numDesktops()
+    l = screen.desktopLayout()
+
+    target = d + num * l.columns
+    if target >= n:
+        target -= l.rows * l.columns
+    while target < 0:
+        target += l.columns
+    change_desktop(data, target)
+
+def left_desktop(data, num=1):
+    """Switches to the desktop horizotally left of the current one. This is
+       based on the desktop layout chosen by an EWMH compliant pager.
+       Optionally, num can be specified to move more than one column at a
+       time."""
+    screen = ob.openbox.screen(data.screen)
+    d = screen.desktop()
+    n = screen.numDesktops()
+    l = screen.desktopLayout()
+
+    rowstart = d - d % l.columns
+    target = d - num
+    while target < rowstart:
+        target += l.columns
+    change_desktop(data, target)
+
+def right_desktop(data, num=1):
+    """Switches to the desktop horizotally right of the current one. This is
+       based on the desktop layout chosen by an EWMH compliant pager.
+       Optionally, num can be specified to move more than one column at a
+       time."""
+    screen = ob.openbox.screen(data.screen)
+    d = screen.desktop()
+    n = screen.numDesktops()
+    l = screen.desktopLayout()
+
+    rowstart = d - d % l.columns
+    target = d + num
+    while target >= rowstart + l.columns:
+        target -= l.columns
+    change_desktop(data, target)
+
 def send_to_desktop(data, num):
     """Sends a client to a specified desktop"""
     if not data.client: return
-    ob.send_client_msg(otk.display.screenInfo(data.screen).rootWindow(),
-                       otk.Property_atoms().net_wm_desktop,
-                       data.client.window(),num)
+    data.client.setDesktop(num)
 
 def toggle_all_desktops(data):
     """Toggles between sending a client to all desktops and to the current
@@ -194,4 +262,23 @@ def send_to_prev_desktop(data, no_wrap=0, follow=1):
     if follow:
         change_desktop(data, d)
 
+def restart(data=0, other = ""):
+    """Restarts Openbox, optionally starting another window manager."""
+    ob.openbox.restart(other)
+
+def exit(data=0):
+    """Exits Openbox."""
+    ob.openbox.shutdown()
+
+export_functions = iconify, restore, close, focus, raise_win, lower_win, \
+                   toggle_maximize, toggle_maximize_horz, \
+                   toggle_maximize_vert, maximize, maximize_horz, \
+                   maximize_vert, unmaximize, unmaximize_horz, \
+                   unmaximize_vert, toggle_shade, shade, unshade, \
+                   change_desktop, show_desktop, hide_desktop, \
+                   toggle_show_desktop, next_desktop, prev_desktop, \
+                   up_desktop, down_desktop, left_desktop, right_desktop, \
+                   send_to_desktop, toggle_all_desktops, send_to_all_desktops,\
+                   send_to_next_desktop, send_to_prev_desktop, restart, exit
+
 print "Loaded callbacks.py"
This page took 0.026834 seconds and 4 git commands to generate.