gecko-dev/layout/generic/FrameChildList.h
Daniel Holbert 680815cd6e Bug 1412346 part 5: (automated patch) Switch a bunch of C++ files in layout to use our standard mode lines. r=jfkthame
This patch was generated automatically by the "modeline.py" script, available
here: https://github.com/amccreight/moz-source-tools/blob/master/modeline.py

For every file that is modified in this patch, the changes are as follows:
 (1) The patch changes the file to use the exact C++ mode lines from the
     Mozilla coding style guide, available here:
https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Coding_Style#Mode_Line

 (2) The patch deletes any blank lines between the mode line & the MPL
     boilerplate comment.

 (3) If the file previously had the mode lines and MPL boilerplate in a
     single contiguous C++ comment, then the patch splits them into
     separate C++ comments, to match the boilerplate in the coding style.

MozReview-Commit-ID: EuRsDue63tK

--HG--
extra : rebase_source : 3356d4b80ff6213935192e87cdbc9103fec6084c
2017-10-27 10:33:53 -07:00

127 lines
3.5 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 FrameChildList_h_
#define FrameChildList_h_
#include "nsFrameList.h"
#include "nsTArray.h"
class nsIFrame;
namespace mozilla {
namespace layout {
// enum FrameChildListID lives in nsFrameList.h to solve circular dependencies.
#ifdef DEBUG_FRAME_DUMP
extern const char* ChildListName(FrameChildListID aListID);
#endif
class FrameChildListIDs {
friend class FrameChildListIterator;
public:
FrameChildListIDs() : mIDs(0) {}
FrameChildListIDs(const FrameChildListIDs& aOther) : mIDs(aOther.mIDs) {}
MOZ_IMPLICIT FrameChildListIDs(FrameChildListID aListID) : mIDs(aListID) {}
FrameChildListIDs operator|(FrameChildListIDs aOther) const {
return FrameChildListIDs(mIDs | aOther.mIDs);
}
FrameChildListIDs& operator|=(FrameChildListIDs aOther) {
mIDs |= aOther.mIDs;
return *this;
}
bool operator==(FrameChildListIDs aOther) const {
return mIDs == aOther.mIDs;
}
bool operator!=(const FrameChildListIDs& aOther) const {
return !(*this == aOther);
}
bool Contains(FrameChildListIDs aOther) const {
return (mIDs & aOther.mIDs) == aOther.mIDs;
}
protected:
explicit FrameChildListIDs(uint32_t aIDs) : mIDs(aIDs) {}
uint32_t mIDs;
};
class FrameChildList {
public:
FrameChildList(const nsFrameList& aList, FrameChildListID aID)
: mList(aList), mID(aID) {}
nsFrameList mList;
FrameChildListID mID;
};
/**
* A class to iterate frame child lists.
*/
class MOZ_STACK_CLASS FrameChildListArrayIterator {
public:
explicit FrameChildListArrayIterator(const nsTArray<FrameChildList>& aLists)
: mLists(aLists), mCurrentIndex(0) {}
bool IsDone() const { return mCurrentIndex >= mLists.Length(); }
FrameChildListID CurrentID() const {
NS_ASSERTION(!IsDone(), "CurrentID(): iterator at end");
return mLists[mCurrentIndex].mID;
}
const nsFrameList& CurrentList() const {
NS_ASSERTION(!IsDone(), "CurrentList(): iterator at end");
return mLists[mCurrentIndex].mList;
}
void Next() {
NS_ASSERTION(!IsDone(), "Next(): iterator at end");
++mCurrentIndex;
}
protected:
const nsTArray<FrameChildList>& mLists;
uint32_t mCurrentIndex;
};
/**
* A class for retrieving a frame's child lists and iterate them.
*/
class MOZ_STACK_CLASS FrameChildListIterator
: public FrameChildListArrayIterator {
public:
explicit FrameChildListIterator(const nsIFrame* aFrame);
protected:
AutoTArray<FrameChildList,4> mLists;
};
inline mozilla::layout::FrameChildListIDs
operator|(mozilla::layout::FrameChildListID aLeftOp,
mozilla::layout::FrameChildListID aRightOp)
{
return mozilla::layout::FrameChildListIDs(aLeftOp) |
mozilla::layout::FrameChildListIDs(aRightOp);
}
inline mozilla::layout::FrameChildListIDs
operator|(mozilla::layout::FrameChildListID aLeftOp,
const mozilla::layout::FrameChildListIDs& aRightOp)
{
return mozilla::layout::FrameChildListIDs(aLeftOp) | aRightOp;
}
} // namespace layout
} // namespace mozilla
inline void nsFrameList::AppendIfNonempty(
nsTArray<mozilla::layout::FrameChildList>* aLists,
mozilla::layout::FrameChildListID aListID) const
{
if (NotEmpty()) {
aLists->AppendElement(mozilla::layout::FrameChildList(*this, aListID));
}
}
#endif /* !defined(FrameChildList_h_) */