]> Dogcows Code - chaz/openbox/blobdiff - src/openbox.py
some intermediate stage. stacked focus cycling is very broken. dont try it. going...
[chaz/openbox] / src / openbox.py
index ea88e12a42a2a542b85bd5348323a633f662e604..42bc8b0a1529e20faa78035905df483dfcf54b1c 100644 (file)
@@ -45,7 +45,6 @@ class Display(_object):
         try:
             if self.thisown: destroy(self)
         except: pass
-    def gcCache(*args): return apply(_openbox.Display_gcCache,args)
     def screenInfo(*args): return apply(_openbox.Display_screenInfo,args)
     def findScreen(*args): return apply(_openbox.Display_findScreen,args)
     def renderControl(*args): return apply(_openbox.Display_renderControl,args)
@@ -56,6 +55,7 @@ class Display(_object):
     def xinerama(*args): return apply(_openbox.Display_xinerama,args)
     def numLockMask(*args): return apply(_openbox.Display_numLockMask,args)
     def scrollLockMask(*args): return apply(_openbox.Display_scrollLockMask,args)
+    def modifierMap(*args): return apply(_openbox.Display_modifierMap,args)
     def __mul__(*args): return apply(_openbox.Display___mul__,args)
     def grab(*args): return apply(_openbox.Display_grab,args)
     def ungrab(*args): return apply(_openbox.Display_ungrab,args)
@@ -780,6 +780,7 @@ class Client(EventHandler,):
     State_Toggle = _openbox.Client_State_Toggle
     event_mask = _openbox.Client_event_mask
     no_propagate_mask = _openbox.Client_no_propagate_mask
+    ICONIC_DESKTOP = _openbox.Client_ICONIC_DESKTOP
     __swig_setmethods__["ignore_unmaps"] = _openbox.Client_ignore_unmaps_set
     __swig_getmethods__["ignore_unmaps"] = _openbox.Client_ignore_unmaps_get
     if _newclass:ignore_unmaps = property(_openbox.Client_ignore_unmaps_get,_openbox.Client_ignore_unmaps_set)
@@ -825,6 +826,7 @@ class Client(EventHandler,):
     def unmapHandler(*args): return apply(_openbox.Client_unmapHandler,args)
     def destroyHandler(*args): return apply(_openbox.Client_destroyHandler,args)
     def reparentHandler(*args): return apply(_openbox.Client_reparentHandler,args)
+    def mapRequestHandler(*args): return apply(_openbox.Client_mapRequestHandler,args)
     def __init__(self): raise RuntimeError, "No constructor defined"
     def __repr__(self):
         return "<C Client instance at %s>" % (self.this,)
@@ -903,6 +905,9 @@ NUM_MOUSE_ACTION = _openbox.NUM_MOUSE_ACTION
 KC_Menu = _openbox.KC_Menu
 KC_All = _openbox.KC_All
 NUM_KEY_CONTEXT = _openbox.NUM_KEY_CONTEXT
+EventKeyPress = _openbox.EventKeyPress
+EventKeyRelease = _openbox.EventKeyRelease
+NUM_KEY_ACTION = _openbox.NUM_KEY_ACTION
 EventEnterWindow = _openbox.EventEnterWindow
 EventLeaveWindow = _openbox.EventLeaveWindow
 EventPlaceWindow = _openbox.EventPlaceWindow
@@ -912,6 +917,7 @@ EventStartup = _openbox.EventStartup
 EventShutdown = _openbox.EventShutdown
 EventFocus = _openbox.EventFocus
 EventBell = _openbox.EventBell
+EventUrgentWindow = _openbox.EventUrgentWindow
 NUM_EVENTS = _openbox.NUM_EVENTS
 class MouseData(_object):
     __swig_setmethods__ = {}
@@ -1026,6 +1032,9 @@ class KeyData(_object):
     __swig_setmethods__["key"] = _openbox.KeyData_key_set
     __swig_getmethods__["key"] = _openbox.KeyData_key_get
     if _newclass:key = property(_openbox.KeyData_key_get,_openbox.KeyData_key_set)
+    __swig_setmethods__["action"] = _openbox.KeyData_action_set
+    __swig_getmethods__["action"] = _openbox.KeyData_action_get
+    if _newclass:action = property(_openbox.KeyData_action_get,_openbox.KeyData_action_set)
     def __init__(self,*args):
         self.this = apply(_openbox.new_KeyData,args)
         self.thisown = 1
@@ -1043,6 +1052,10 @@ mbind = _openbox.mbind
 
 kbind = _openbox.kbind
 
+kgrab = _openbox.kgrab
+
+kungrab = _openbox.kungrab
+
 ebind = _openbox.ebind
 
 set_reset_key = _openbox.set_reset_key
This page took 0.024017 seconds and 4 git commands to generate.