2000-08-12 06:28:02 +00:00
|
|
|
#ifndef _nsIStyleRuleSupplier_h
|
|
|
|
#define _nsIStyleRuleSupplier_h
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsISupportsArray.h"
|
2001-11-10 23:51:45 +00:00
|
|
|
#include "nsIStyleRuleProcessor.h"
|
2000-08-12 06:28:02 +00:00
|
|
|
|
|
|
|
// {2D77A45B-4F3A-4203-A7D2-F4B84D0C1EE4}
|
|
|
|
#define NS_ISTYLERULESUPPLIER_IID \
|
|
|
|
{ 0x2d77a45b, 0x4f3a, 0x4203, { 0xa7, 0xd2, 0xf4, 0xb8, 0x4d, 0xc, 0x1e, 0xe4 } }
|
|
|
|
|
|
|
|
class nsIContent;
|
2004-01-07 22:30:53 +00:00
|
|
|
class nsStyleSet;
|
2000-08-12 06:28:02 +00:00
|
|
|
|
|
|
|
class nsIStyleRuleSupplier : public nsISupports {
|
|
|
|
public:
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(NS_ISTYLERULESUPPLIER_IID)
|
|
|
|
|
2004-01-07 22:30:53 +00:00
|
|
|
NS_IMETHOD WalkRules(nsStyleSet* aStyleSet,
|
|
|
|
nsIStyleRuleProcessor::EnumFunc aFunc,
|
2004-09-10 04:57:30 +00:00
|
|
|
RuleProcessorData* aData,
|
|
|
|
PRBool* aCutOffInheritance)=0;
|
2000-08-12 06:28:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _nsIStyleRuleSupplier_h */
|