From 80c487809858b74783a00e05cc8164edf4b1307c Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Thu, 23 Mar 2017 12:11:20 -0400 Subject: Cleanup some xfa/fxfa code. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This CL moves the .h files to have names corresponding to the contained classes. The .cpp files are moved alongside the .h files. Any extra classes in the .h files have been split into their own files. Change-Id: I14b4efc02417f0df946500e87b6c502e77020db8 Reviewed-on: https://pdfium-review.googlesource.com/3160 Reviewed-by: Tom Sepez Reviewed-by: Nicolás Peña Commit-Queue: dsinclair --- xfa/fxfa/cxfa_widgetacciterator.cpp | 56 +++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 xfa/fxfa/cxfa_widgetacciterator.cpp (limited to 'xfa/fxfa/cxfa_widgetacciterator.cpp') diff --git a/xfa/fxfa/cxfa_widgetacciterator.cpp b/xfa/fxfa/cxfa_widgetacciterator.cpp new file mode 100644 index 0000000000..721b65692f --- /dev/null +++ b/xfa/fxfa/cxfa_widgetacciterator.cpp @@ -0,0 +1,56 @@ +// 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_widgetacciterator.h" + +#include "xfa/fxfa/cxfa_widgetacc.h" + +CXFA_WidgetAccIterator::CXFA_WidgetAccIterator(CXFA_Node* pTravelRoot) + : m_ContentIterator(pTravelRoot), m_pCurWidgetAcc(nullptr) {} + +CXFA_WidgetAccIterator::~CXFA_WidgetAccIterator() {} + +void CXFA_WidgetAccIterator::Reset() { + m_pCurWidgetAcc = nullptr; + m_ContentIterator.Reset(); +} + +CXFA_WidgetAcc* CXFA_WidgetAccIterator::MoveToFirst() { + return nullptr; +} + +CXFA_WidgetAcc* CXFA_WidgetAccIterator::MoveToLast() { + return nullptr; +} + +CXFA_WidgetAcc* CXFA_WidgetAccIterator::MoveToNext() { + CXFA_Node* pItem = m_pCurWidgetAcc ? m_ContentIterator.MoveToNext() + : m_ContentIterator.GetCurrent(); + while (pItem) { + m_pCurWidgetAcc = static_cast(pItem->GetWidgetData()); + if (m_pCurWidgetAcc) + return m_pCurWidgetAcc; + pItem = m_ContentIterator.MoveToNext(); + } + return nullptr; +} + +CXFA_WidgetAcc* CXFA_WidgetAccIterator::MoveToPrevious() { + return nullptr; +} + +CXFA_WidgetAcc* CXFA_WidgetAccIterator::GetCurrentWidgetAcc() { + return nullptr; +} + +bool CXFA_WidgetAccIterator::SetCurrentWidgetAcc(CXFA_WidgetAcc* hWidget) { + return false; +} + +void CXFA_WidgetAccIterator::SkipTree() { + m_ContentIterator.SkipChildrenAndMoveToNext(); + m_pCurWidgetAcc = nullptr; +} -- cgit v1.2.3