414 |
414 |
415 @return Flag indicating successful deletion |
415 @return Flag indicating successful deletion |
416 """ |
416 """ |
417 return False |
417 return False |
418 |
418 |
|
419 def getSplitOrientation(self): |
|
420 """ |
|
421 Public method to get the orientation of the split view. |
|
422 |
|
423 @return orientation of the split (Qt.Horizontal or Qt.Vertical) |
|
424 """ |
|
425 return Qt.Vertical |
|
426 |
419 def setSplitOrientation(self, orientation): |
427 def setSplitOrientation(self, orientation): |
420 """ |
428 """ |
421 Public method used to set the orientation of the split view. |
429 Public method used to set the orientation of the split view. |
422 |
430 |
423 @param orientation orientation of the split |
431 @param orientation orientation of the split |
424 (Qt.Horizontal or Qt.Vertical) |
432 (Qt.Horizontal or Qt.Vertical) |
425 """ |
433 """ |
426 pass |
434 pass |
427 |
435 |
428 def nextSplit(self): |
436 def nextSplit(self): |
429 """ |
437 """ |