2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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"
|
|
|
|
|
2002-08-24 18:41:28 +04:00
|
|
|
#include "nsChangeHint.h"
|
2016-08-17 03:15:29 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2020-04-14 06:05:26 +03:00
|
|
|
#include "nsTArray.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::Clear;
|
|
|
|
using base_type::end;
|
|
|
|
using base_type::IsEmpty;
|
2017-03-03 09:51:39 +03:00
|
|
|
using base_type::Length;
|
|
|
|
using base_type::operator[];
|
2016-08-17 03:15:29 +03:00
|
|
|
|
2020-02-20 14:40:14 +03:00
|
|
|
MOZ_COUNTED_DEFAULT_CTOR(nsStyleChangeList)
|
|
|
|
MOZ_COUNTED_DTOR(nsStyleChangeList)
|
2016-08-17 03:15:29 +03:00
|
|
|
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) {
|
2018-02-21 11:32:28 +03:00
|
|
|
while (!IsEmpty() && LastElement().mContent == aContent) {
|
2018-03-13 16:51:33 +03:00
|
|
|
RemoveLastElement();
|
2017-03-04 01:42:51 +03:00
|
|
|
}
|
|
|
|
}
|
1999-03-25 09:35:59 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsStyleChangeList_h___ */
|