2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2006-03-30 09:56:38 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* a list of the recomputation that needs to be done in response to a
|
|
|
|
* style change
|
|
|
|
*/
|
|
|
|
|
1999-03-25 09:35:59 +03:00
|
|
|
#ifndef nsStyleChangeList_h___
|
|
|
|
#define nsStyleChangeList_h___
|
|
|
|
|
2011-12-16 23:42:07 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2017-03-04 01:42:51 +03:00
|
|
|
#include "mozilla/StyleBackendType.h"
|
2011-12-16 23:42:07 +04:00
|
|
|
|
2002-08-24 18:41:28 +04:00
|
|
|
#include "nsChangeHint.h"
|
2016-08-17 03:15:29 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2002-08-24 18:41:28 +04:00
|
|
|
|
1999-03-25 09:35:59 +03:00
|
|
|
class nsIFrame;
|
1999-10-02 08:26:53 +04:00
|
|
|
class nsIContent;
|
1999-03-25 09:35:59 +03:00
|
|
|
|
2016-08-17 03:15:29 +03:00
|
|
|
struct nsStyleChangeData
|
|
|
|
{
|
|
|
|
nsIFrame* mFrame; // weak
|
|
|
|
nsCOMPtr<nsIContent> mContent;
|
2002-08-24 18:41:28 +04:00
|
|
|
nsChangeHint mHint;
|
1999-03-25 09:35:59 +03:00
|
|
|
};
|
|
|
|
|
2016-08-17 03:15:29 +03:00
|
|
|
class nsStyleChangeList : private AutoTArray<nsStyleChangeData, 10>
|
|
|
|
{
|
|
|
|
typedef AutoTArray<nsStyleChangeData, 10> base_type;
|
|
|
|
nsStyleChangeList(const nsStyleChangeList&) = delete;
|
1999-03-25 09:35:59 +03:00
|
|
|
|
|
|
|
public:
|
2016-08-17 03:15:29 +03:00
|
|
|
using base_type::begin;
|
|
|
|
using base_type::end;
|
|
|
|
using base_type::IsEmpty;
|
|
|
|
using base_type::Clear;
|
2017-03-03 09:51:39 +03:00
|
|
|
using base_type::Length;
|
|
|
|
using base_type::operator[];
|
2016-08-17 03:15:29 +03:00
|
|
|
|
2017-03-08 00:59:48 +03:00
|
|
|
explicit nsStyleChangeList(mozilla::StyleBackendType aType) :
|
2017-03-04 01:42:51 +03:00
|
|
|
mType(aType) { MOZ_COUNT_CTOR(nsStyleChangeList); }
|
2016-08-17 03:15:29 +03:00
|
|
|
~nsStyleChangeList() { MOZ_COUNT_DTOR(nsStyleChangeList); }
|
|
|
|
void AppendChange(nsIFrame* aFrame, nsIContent* aContent, nsChangeHint aHint);
|
2017-03-04 01:42:51 +03:00
|
|
|
|
|
|
|
// Starting from the end of the list, removes all changes until the list is
|
|
|
|
// empty or an element with |mContent != aContent| is found.
|
|
|
|
void PopChangesForContent(nsIContent* aContent)
|
|
|
|
{
|
|
|
|
while (Length() > 0) {
|
|
|
|
if (LastElement().mContent == aContent) {
|
|
|
|
RemoveElementAt(Length() - 1);
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsGecko() const { return mType == mozilla::StyleBackendType::Gecko; }
|
|
|
|
bool IsServo() const { return mType == mozilla::StyleBackendType::Servo; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
mozilla::StyleBackendType mType;
|
1999-03-25 09:35:59 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsStyleChangeList_h___ */
|