void CXFA_FFTabOrderPageWidgetIterator::CreateSpaceOrderWidgetArray( std::vector<CXFA_FFWidget*>* WidgetArray) { CXFA_LayoutItemIterator sIterator; sIterator.Init(m_pPageView); auto pParam = pdfium::MakeUnique<CXFA_TabParam>(); bool bCurrentItem = false; bool bContentArea = false; OrderContainer(&sIterator, nullptr, pParam.get(), bCurrentItem, bContentArea); WidgetArray->insert(WidgetArray->end(), pParam->m_Children.begin(), pParam->m_Children.end()); sIterator.Reset(); bCurrentItem = false; bContentArea = false; pParam->m_Children.clear(); OrderContainer(&sIterator, nullptr, pParam.get(), bCurrentItem, bContentArea, true); WidgetArray->insert(WidgetArray->end(), pParam->m_Children.begin(), pParam->m_Children.end()); }
void CXFA_FFTabOrderPageWidgetIterator::CreateSpaceOrderWidgetArray( CXFA_WidgetArray& WidgetArray) { CXFA_LayoutItemIterator sIterator; sIterator.Init(m_pPageView); CXFA_TabParam* pParam = new CXFA_TabParam; FX_BOOL bCurrentItem = FALSE; FX_BOOL bContentArea = FALSE; OrderContainer(&sIterator, nullptr, pParam, bCurrentItem, bContentArea); if (pParam->m_Children.GetSize() > 0) { WidgetArray.Append(pParam->m_Children); } sIterator.Reset(); bCurrentItem = FALSE; bContentArea = FALSE; pParam->m_Children.RemoveAll(); OrderContainer(&sIterator, nullptr, pParam, bCurrentItem, bContentArea, TRUE); if (pParam->m_Children.GetSize() > 0) { WidgetArray.Append(pParam->m_Children); } delete pParam; }