eric6/ViewManager/ViewManager.py

branch
without_py2_and_pyqt4
changeset 7192
a22eee00b052
parent 7165
375c077ef7e2
child 7229
53054eb5b15a
equal deleted inserted replaced
7191:960850ec284c 7192:a22eee00b052
337 @return 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 return False
343
342 def canTile(self): 344 def canTile(self):
343 """ 345 """
344 Public method to signal if tiling of managed windows is available. 346 Public method to signal if tiling of managed windows is available.
345 347
346 @return flag indicating tiling of windows is available 348 @return flag indicating tiling of windows is available
347 @exception RuntimeError Not implemented 349 @exception RuntimeError Not implemented
348 """ 350 """
349 raise RuntimeError('Not implemented') 351 raise RuntimeError('Not implemented')
350 352
353 return False
354
351 def tile(self): 355 def tile(self):
352 """ 356 """
353 Public method to tile the managed windows. 357 Public method to tile the managed windows.
354 358
355 @exception RuntimeError Not implemented 359 @exception RuntimeError Not implemented
370 374
371 @return reference to the active editor 375 @return reference to the active editor
372 @exception RuntimeError Not implemented 376 @exception RuntimeError Not implemented
373 """ 377 """
374 raise RuntimeError('Not implemented') 378 raise RuntimeError('Not implemented')
379
380 return None # __IGNORE_WARNING_M831__
375 381
376 def _removeAllViews(self): 382 def _removeAllViews(self):
377 """ 383 """
378 Protected method to remove all views (i.e. windows). 384 Protected method to remove all views (i.e. windows).
379 385

eric ide

mercurial