| 1454 | } |
| 1455 | |
| 1456 | QList<QWidget*> PartStack::GetTabList(LayoutPart::Pointer part) |
| 1457 | { |
| 1458 | if (part != 0) |
| 1459 | { |
| 1460 | IPresentablePart::Pointer presentablePart = this->GetPresentablePart(part); |
| 1461 | StackPresentation::Pointer presentation = this->GetPresentation(); |
| 1462 | |
| 1463 | if (presentablePart != 0 && presentation != 0) |
| 1464 | { |
| 1465 | return presentation->GetTabList(presentablePart); |
| 1466 | } |
| 1467 | } |
| 1468 | |
| 1469 | return QList<QWidget*>(); |
| 1470 | } |
| 1471 | |
| 1472 | void PartStack::DragStart(IPresentablePart::Pointer beingDragged, QPoint& initialLocation, |
| 1473 | bool keyboard) |
nothing calls this directly
no test coverage detected