Backed out changeset 496886cb30a5 (bug 1867152) for bc failures on browser_user_input...
[gecko.git] / layout / generic / nsIntervalSet.h
blob0d89357bd74b78e9f719b443b7d6af123d2153ee
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 // vim:cindent:ts=8:et:sw=4:
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* a set of ranges on a number-line */
9 #ifndef nsIntervalSet_h___
10 #define nsIntervalSet_h___
12 #include "nsCoord.h"
14 namespace mozilla {
15 class PresShell;
16 } // namespace mozilla
19 * A list-based class (hopefully tree-based when I get around to it)
20 * for representing a set of ranges on a number-line.
22 class nsIntervalSet {
23 public:
24 typedef nscoord coord_type;
26 explicit nsIntervalSet(mozilla::PresShell* aPresShell);
27 ~nsIntervalSet();
30 * Include the interval [aBegin, aEnd] in the set.
32 * Removal of intervals added is not supported because that would
33 * require keeping track of the individual intervals that were
34 * added (nsIntervalMap should do that). It would be simple to
35 * implement ExcludeInterval if anyone wants it, though.
37 void IncludeInterval(coord_type aBegin, coord_type aEnd);
40 * Are _some_ points in [aBegin, aEnd] contained within the set
41 * of intervals?
43 bool Intersects(coord_type aBegin, coord_type aEnd) const;
46 * Are _all_ points in [aBegin, aEnd] contained within the set
47 * of intervals?
49 bool Contains(coord_type aBegin, coord_type aEnd) const;
51 bool IsEmpty() const { return !mList; }
53 private:
54 class Interval {
55 public:
56 Interval(coord_type aBegin, coord_type aEnd)
57 : mBegin(aBegin), mEnd(aEnd), mPrev(nullptr), mNext(nullptr) {}
59 coord_type mBegin;
60 coord_type mEnd;
61 Interval* mPrev;
62 Interval* mNext;
65 void* AllocateInterval();
66 void FreeInterval(Interval* aInterval);
68 Interval* mList;
69 mozilla::PresShell* mPresShell;
72 #endif // !defined(nsIntervalSet_h___)