| 420 | } |
| 421 | |
| 422 | void CADrawerController::setBackgroundView(CrossApp::CAView *var) |
| 423 | { |
| 424 | this->getView()->removeSubview(m_pBackgroundView); |
| 425 | m_pBackgroundView = var; |
| 426 | if (m_pBackgroundView) |
| 427 | { |
| 428 | m_pBackgroundView->setLayout(DLayoutFill); |
| 429 | this->getView()->insertSubview(m_pBackgroundView, -1); |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | CAView* CADrawerController::getBackgroundView() |
| 434 | { |
no test coverage detected