mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
32 lines
940 B
C++
32 lines
940 B
C++
#ifndef _nsIPresState_h
|
|
#define _nsIPresState_h
|
|
|
|
#include "nsISupports.h"
|
|
#include "nsString.h"
|
|
|
|
// {98DABCE1-C9D7-11d3-BF87-00105A1B0627}
|
|
#define NS_IPRESSTATE_IID \
|
|
{ 0x98dabce1, 0xc9d7, 0x11d3, { 0xbf, 0x87, 0x0, 0x10, 0x5a, 0x1b, 0x6, 0x27 } }
|
|
|
|
class nsIPresState : public nsISupports {
|
|
public:
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IPRESSTATE_IID)
|
|
|
|
NS_IMETHOD GetStatePropertyAsSupports(const nsAReadableString& aName,
|
|
nsISupports** aResult) = 0;
|
|
NS_IMETHOD SetStatePropertyAsSupports(const nsAReadableString& aName,
|
|
nsISupports* aValue) = 0;
|
|
|
|
NS_IMETHOD GetStateProperty(const nsAReadableString& aName,
|
|
nsAWritableString& aResult) = 0;
|
|
NS_IMETHOD SetStateProperty(const nsAReadableString& aProperty,
|
|
const nsAReadableString& aValue) = 0;
|
|
|
|
NS_IMETHOD RemoveStateProperty(const nsAReadableString& aName) = 0;
|
|
};
|
|
|
|
extern nsresult
|
|
NS_NewPresState(nsIPresState** aResult);
|
|
|
|
#endif /* _nsIPresState_h */
|