mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
53 lines
1.7 KiB
C++
53 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.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
#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___ */
|