332 |
332 |
333 def canCascade(self): |
333 def canCascade(self): |
334 """ |
334 """ |
335 Public method to signal if cascading of managed windows is available. |
335 Public method to signal if cascading of managed windows is available. |
336 |
336 |
337 @ireturn flag indicating cascading of windows is available |
337 @return flag indicating cascading of windows is available |
338 @exception RuntimeError Not implemented |
338 @exception RuntimeError Not implemented |
339 """ |
339 """ |
340 raise RuntimeError('Not implemented') |
340 raise RuntimeError('Not implemented') |
341 |
341 |
342 def canTile(self): |
342 def canTile(self): |
343 """ |
343 """ |
344 Public method to signal if tiling of managed windows is available. |
344 Public method to signal if tiling of managed windows is available. |
345 |
345 |
346 @ireturn flag indicating tiling of windows is available |
346 @return flag indicating tiling of windows is available |
347 @exception RuntimeError Not implemented |
347 @exception RuntimeError Not implemented |
348 """ |
348 """ |
349 raise RuntimeError('Not implemented') |
349 raise RuntimeError('Not implemented') |
350 |
350 |
351 def tile(self): |
351 def tile(self): |
366 |
366 |
367 def activeWindow(self): |
367 def activeWindow(self): |
368 """ |
368 """ |
369 Public method to return the active (i.e. current) window. |
369 Public method to return the active (i.e. current) window. |
370 |
370 |
371 @ireturn reference to the active editor |
371 @return reference to the active editor |
372 @exception RuntimeError Not implemented |
372 @exception RuntimeError Not implemented |
373 """ |
373 """ |
374 raise RuntimeError('Not implemented') |
374 raise RuntimeError('Not implemented') |
375 |
375 |
376 def _removeAllViews(self): |
376 def _removeAllViews(self): |