mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
49 lines
1.7 KiB
C++
49 lines
1.7 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) 1999 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
#ifndef nsICSSImportRule_h___
|
|
#define nsICSSImportRule_h___
|
|
|
|
#include "nslayout.h"
|
|
#include "nsICSSRule.h"
|
|
//#include "nsString.h"
|
|
|
|
class nsIAtom;
|
|
class nsIURI;
|
|
|
|
// IID for the nsICSSImportRule interface {33824a60-1a09-11d3-805a-006008159b5a}
|
|
#define NS_ICSS_IMPORT_RULE_IID \
|
|
{0x33824a60, 0x1a09, 0x11d3, {0x80, 0x5a, 0x00, 0x60, 0x08, 0x15, 0x9b, 0x5a}}
|
|
|
|
class nsICSSImportRule : public nsICSSRule {
|
|
public:
|
|
static const nsIID& GetIID() { static nsIID iid = NS_ICSS_IMPORT_RULE_IID; return iid; }
|
|
|
|
NS_IMETHOD SetURLSpec(const nsString& aURLSpec) = 0;
|
|
NS_IMETHOD GetURLSpec(nsString& aURLSpec) const = 0;
|
|
|
|
NS_IMETHOD SetMedia(const nsString& aMedia) = 0;
|
|
NS_IMETHOD GetMedia(nsString& aMedia) const = 0;
|
|
};
|
|
|
|
extern NS_HTML nsresult
|
|
NS_NewCSSImportRule(nsICSSImportRule** aInstancePtrResult,
|
|
const nsString& aURLSpec,
|
|
const nsString& aMedia);
|
|
|
|
#endif /* nsICSSImportRule_h___ */
|