X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=scripts%2Fhistoryplacement.py;h=815b31cbd8319fc39bbd4d0ea54283c618347566;hb=59ef3022a4ce0a23e6d54f7d73a2aa77721e9cc9;hp=48755819b07840278dcfdb534ddfcbf7eb561e14;hpb=41a03629c9f166f7a1b427ed1634b44c6c38da6e;p=chaz%2Fopenbox diff --git a/scripts/historyplacement.py b/scripts/historyplacement.py index 48755819..815b31cb 100644 --- a/scripts/historyplacement.py +++ b/scripts/historyplacement.py @@ -6,21 +6,36 @@ import windowplacement # fallback routines ############################################################################## -### Options for the historyplacement module: ### -### ### -# fallback - The window placement algorithm that will be used when history ### -### placement does not have a place for the window. ### -fallback = windowplacement.random ### -# ignore_requested_positions - When true, the history algorithm will ### -### attempt to place windows even when they ### -### request a position (like XMMS). ### -ignore_requested_positions = 0 ### -### ### -# filename - The name of the file where history data will be stored. The ### -### number of the screen is appended onto this filename. ### -filename = 'historydb' ### -### ### +### Options for the historyplacement module (Options in the ### +### windowplacement module also apply!) ### ############################################################################## +IGNORE_REQUESTED_POSITIONS = 0 +"""When true, the placement algorithm will attempt to place windows even + when they request a position (like XMMS). Note this only applies to + normal windows, not to special cases like desktops and docks.""" +FALLBACK = windowplacement.random +"""The window placement algorithm that will be used when history placement + does not have a place for the window.""" +CONFIRM_CALLBACK = 0 +"""Set this to a function to have the function called before attempting to + place a window via history. If the function returns a non-zero, then an + attempt will be made to place the window. If it returns zero, the + fallback method will be directly applied instead.""" +FILENAME = 'historydb' +"""The name of the file where history data will be stored. The number of + the screen is appended onto this filename.""" +############################################################################## + +def place(data): + """Place a window usingthe history placement algorithm.""" + _place(data) + +########################################################################### +########################################################################### + +########################################################################### +### Internal stuff, should not be accessed outside the module. ### +########################################################################### import otk import ob @@ -45,7 +60,7 @@ class _state: def _load(data): global _data - file = open(os.environ['HOME']+'/.openbox/'+filename+"."+str(data.screen), + file = open(os.environ['HOME']+'/.openbox/'+FILENAME+"."+str(data.screen), 'r') if file: # read data @@ -60,15 +75,13 @@ def _load(data): _data.append([]) _data[data.screen].append(state) - except ValueError: - pass - except IndexError: - pass + except ValueError: pass + except IndexError: pass file.close() def _save(data): global _data - file = open(os.environ['HOME']+'/.openbox/'+filename+"."+str(data.screen), + file = open(os.environ['HOME']+'/.openbox/'+FILENAME+"."+str(data.screen), 'w') if file: while len(_data)-1 < data.screen: @@ -98,23 +111,29 @@ def _find(screen, state): _data.append([]) return _find(screen, state) # try again -def place(data): +def _place(data): global _data if data.client: - if not ignore_requested_positions: + if not (IGNORE_REQUESTED_POSITIONS and data.client.normal()): if data.client.positionRequested(): return state = _create_state(data) - print "looking for : " + state.appname + " : " + state.appclass + \ - " : " + state.role - - i = _find(data.screen, state) - if i >= 0: - coords = _data[data.screen][i] - print "Found in history ("+str(coords.x)+","+str(coords.y)+")" - data.client.move(coords.x, coords.y) - else: - print "No match in history" - if fallback: fallback(data) + try: + if not CONFIRM_CALLBACK or CONFIRM_CALLBACK(data): + print "looking for : " + state.appname + " : " + \ + state.appclass + " : " + state.role + + i = _find(data.screen, state) + if i >= 0: + coords = _data[data.screen][i] + print "Found in history ("+str(coords.x)+","+\ + str(coords.y)+")" + data.client.move(coords.x, coords.y) + return + else: + print "No match in history" + except TypeError: + pass + if FALLBACK: FALLBACK(data) def _save_window(data): global _data