eric6/ViewManager/ViewManager.py

changeset 7165
375c077ef7e2
parent 7026
fbb685ce95cc
child 7192
a22eee00b052
child 7214
f434af227a41
equal deleted inserted replaced
7164:6da6a0a5a448 7165:375c077ef7e2
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):

eric ide

mercurial