mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
74 lines
2.4 KiB
C++
74 lines
2.4 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
/* AUTO-GENERATED. DO NOT EDIT!!! */
|
|
|
|
#ifndef nsIDOMCSSRule_h__
|
|
#define nsIDOMCSSRule_h__
|
|
|
|
#include "nsISupports.h"
|
|
#include "nsString.h"
|
|
#include "nsIScriptContext.h"
|
|
|
|
class nsIDOMCSSStyleSheet;
|
|
|
|
#define NS_IDOMCSSRULE_IID \
|
|
{ 0xa6cf90c1, 0x15b3, 0x11d2, \
|
|
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} }
|
|
|
|
class nsIDOMCSSRule : public nsISupports {
|
|
public:
|
|
static const nsIID& GetIID() { static nsIID iid = NS_IDOMCSSRULE_IID; return iid; }
|
|
enum {
|
|
UNKNOWN_RULE = 0,
|
|
STYLE_RULE = 1,
|
|
IMPORT_RULE = 2,
|
|
MEDIA_RULE = 3,
|
|
FONT_FACE_RULE = 4,
|
|
PAGE_RULE = 5
|
|
};
|
|
|
|
NS_IMETHOD GetType(PRUint16* aType)=0;
|
|
|
|
NS_IMETHOD GetCssText(nsString& aCssText)=0;
|
|
NS_IMETHOD SetCssText(const nsString& aCssText)=0;
|
|
|
|
NS_IMETHOD GetSheet(nsIDOMCSSStyleSheet** aSheet)=0;
|
|
};
|
|
|
|
|
|
#define NS_DECL_IDOMCSSRULE \
|
|
NS_IMETHOD GetType(PRUint16* aType); \
|
|
NS_IMETHOD GetCssText(nsString& aCssText); \
|
|
NS_IMETHOD SetCssText(const nsString& aCssText); \
|
|
NS_IMETHOD GetSheet(nsIDOMCSSStyleSheet** aSheet); \
|
|
|
|
|
|
|
|
#define NS_FORWARD_IDOMCSSRULE(_to) \
|
|
NS_IMETHOD GetType(PRUint16* aType) { return _to GetType(aType); } \
|
|
NS_IMETHOD GetCssText(nsString& aCssText) { return _to GetCssText(aCssText); } \
|
|
NS_IMETHOD SetCssText(const nsString& aCssText) { return _to SetCssText(aCssText); } \
|
|
NS_IMETHOD GetSheet(nsIDOMCSSStyleSheet** aSheet) { return _to GetSheet(aSheet); } \
|
|
|
|
|
|
extern "C" NS_DOM nsresult NS_InitCSSRuleClass(nsIScriptContext *aContext, void **aPrototype);
|
|
|
|
extern "C" NS_DOM nsresult NS_NewScriptCSSRule(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn);
|
|
|
|
#endif // nsIDOMCSSRule_h__
|