2012-10-15 18:35:50 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef NSFRAMETRAVERSAL_H
|
|
|
|
#define NSFRAMETRAVERSAL_H
|
|
|
|
|
2013-05-14 16:33:23 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-10-15 18:35:50 +00:00
|
|
|
#include "nsIFrameTraversal.h"
|
|
|
|
|
2013-08-19 22:55:18 +00:00
|
|
|
class nsIFrame;
|
|
|
|
|
2012-10-15 18:35:50 +00:00
|
|
|
nsresult NS_NewFrameTraversal(nsIFrameEnumerator **aEnumerator,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsIFrame *aStart,
|
|
|
|
nsIteratorType aType,
|
|
|
|
bool aVisual,
|
|
|
|
bool aLockInScrollView,
|
2015-07-13 10:07:49 +00:00
|
|
|
bool aFollowOOFs,
|
|
|
|
bool aSkipPopupChecks);
|
2012-10-15 18:35:50 +00:00
|
|
|
|
|
|
|
nsresult NS_CreateFrameTraversal(nsIFrameTraversal** aResult);
|
|
|
|
|
|
|
|
class nsFrameTraversal : public nsIFrameTraversal
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsFrameTraversal();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
NS_IMETHOD NewFrameTraversal(nsIFrameEnumerator **aEnumerator,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsIFrame *aStart,
|
2012-10-25 18:44:37 +00:00
|
|
|
int32_t aType,
|
2012-10-15 18:35:50 +00:00
|
|
|
bool aVisual,
|
|
|
|
bool aLockInScrollView,
|
2015-07-13 10:07:49 +00:00
|
|
|
bool aFollowOOFs,
|
|
|
|
bool aSkipPopupChecks) override;
|
2014-06-23 22:40:01 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~nsFrameTraversal();
|
2012-10-15 18:35:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //NSFRAMETRAVERSAL_H
|