| 610 | } |
| 611 | |
| 612 | IViewLayout::Pointer PageLayout::GetViewLayout(const QString& viewId) |
| 613 | { |
| 614 | ViewLayoutRec::Pointer rec = this->GetViewLayoutRec(viewId, true); |
| 615 | if (rec == 0) |
| 616 | { |
| 617 | return IViewLayout::Pointer(nullptr); |
| 618 | } |
| 619 | return IViewLayout::Pointer(new ViewLayout(PageLayout::Pointer(this), rec)); |
| 620 | } |
| 621 | |
| 622 | QHash<QString, ViewLayoutRec::Pointer> PageLayout::GetIDtoViewLayoutRecMap() |
| 623 | { |