summaryrefslogtreecommitdiff
path: root/xfa/fxfa/cxfa_readynodeiterator.cpp
blob: 728d9d63779557375a947b61ed5732916eb7937f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2017 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com

#include "xfa/fxfa/cxfa_readynodeiterator.h"

#include "xfa/fxfa/parser/cxfa_node.h"

CXFA_ReadyNodeIterator::CXFA_ReadyNodeIterator(CXFA_Node* pTravelRoot)
    : m_ContentIterator(pTravelRoot) {}

CXFA_ReadyNodeIterator::~CXFA_ReadyNodeIterator() {}

CXFA_Node* CXFA_ReadyNodeIterator::MoveToNext() {
  CXFA_Node* pItem = m_pCurNode ? m_ContentIterator.MoveToNext()
                                : m_ContentIterator.GetCurrent();
  while (pItem) {
    m_pCurNode = pItem->IsWidgetReady() ? pItem : nullptr;
    if (m_pCurNode)
      return m_pCurNode.Get();
    pItem = m_ContentIterator.MoveToNext();
  }
  return nullptr;
}

void CXFA_ReadyNodeIterator::SkipTree() {
  m_ContentIterator.SkipChildrenAndMoveToNext();
  m_pCurNode = nullptr;
}