2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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 05:56:38 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* a list of the recomputation that needs to be done in response to a
|
|
|
|
* style change
|
|
|
|
*/
|
|
|
|
|
1999-03-25 06:35:59 +00:00
|
|
|
#ifndef nsStyleChangeList_h___
|
|
|
|
#define nsStyleChangeList_h___
|
|
|
|
|
2011-12-16 19:42:07 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
1999-03-25 06:35:59 +00:00
|
|
|
#include "nsError.h"
|
2002-08-24 14:41:28 +00:00
|
|
|
#include "nsChangeHint.h"
|
|
|
|
|
1999-03-25 06:35:59 +00:00
|
|
|
class nsIFrame;
|
1999-10-02 04:26:53 +00:00
|
|
|
class nsIContent;
|
1999-03-25 06:35:59 +00:00
|
|
|
|
|
|
|
// XXX would all platforms support putting this inside the list?
|
|
|
|
struct nsStyleChangeData {
|
1999-10-02 04:26:53 +00:00
|
|
|
nsIFrame* mFrame;
|
|
|
|
nsIContent* mContent;
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint mHint;
|
1999-03-25 06:35:59 +00:00
|
|
|
};
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static const uint32_t kStyleChangeBufferSize = 10;
|
1999-03-25 06:35:59 +00:00
|
|
|
|
2008-03-15 09:01:18 +00:00
|
|
|
// Note: nsStyleChangeList owns a reference to
|
|
|
|
// nsIContent pointers in its list.
|
2001-10-23 01:37:21 +00:00
|
|
|
class nsStyleChangeList {
|
1999-03-25 06:35:59 +00:00
|
|
|
public:
|
2008-03-15 09:01:18 +00:00
|
|
|
nsStyleChangeList();
|
|
|
|
~nsStyleChangeList();
|
1999-03-25 06:35:59 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t Count(void) const {
|
1999-03-25 06:35:59 +00:00
|
|
|
return mCount;
|
|
|
|
}
|
|
|
|
|
2008-03-15 09:01:18 +00:00
|
|
|
/**
|
|
|
|
* Fills in pointers without reference counting.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult ChangeAt(int32_t aIndex, nsIFrame*& aFrame, nsIContent*& aContent,
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint& aHint) const;
|
1999-03-25 06:35:59 +00:00
|
|
|
|
2008-03-15 09:01:18 +00:00
|
|
|
/**
|
|
|
|
* Fills in a pointer to the list entry storage (no reference counting
|
|
|
|
* involved).
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult ChangeAt(int32_t aIndex, const nsStyleChangeData** aChangeData) const;
|
2003-01-20 01:07:03 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsresult AppendChange(nsIFrame* aFrame, nsIContent* aContent, nsChangeHint aHint);
|
1999-03-25 06:35:59 +00:00
|
|
|
|
1999-10-02 04:26:53 +00:00
|
|
|
void Clear(void);
|
1999-03-25 06:35:59 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
nsStyleChangeList& operator=(const nsStyleChangeList& aCopy);
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsStyleChangeList& aOther) const;
|
1999-03-25 06:35:59 +00:00
|
|
|
|
|
|
|
nsStyleChangeData* mArray;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mArraySize;
|
|
|
|
int32_t mCount;
|
1999-03-25 06:35:59 +00:00
|
|
|
nsStyleChangeData mBuffer[kStyleChangeBufferSize];
|
2008-03-15 09:01:18 +00:00
|
|
|
|
|
|
|
private:
|
2011-12-16 19:42:07 +00:00
|
|
|
nsStyleChangeList(const nsStyleChangeList&) MOZ_DELETE;
|
1999-03-25 06:35:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* nsStyleChangeList_h___ */
|