mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
167 lines
6.7 KiB
Plaintext
167 lines
6.7 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* 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) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* John Bandhauer <jband@netscape.com>
|
|
*/
|
|
|
|
/* The long avoided variant support for xpcom. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
%{ C++
|
|
#include "nsString.h" // needed for AString -> nsAReadableString, unfortunately
|
|
%}
|
|
|
|
[scriptable,uuid(4d12e540-83d7-11d5-90ed-0010a4e73d9a)]
|
|
interface nsIDataType : nsISupports
|
|
{
|
|
// These MUST match the declarations in xpt_struct.h.
|
|
// Otherwise the world is likely to explode.
|
|
// From xpt_struct.h ...
|
|
const PRUint16 TYPE_INT8 = 0; // TD_INT8 = 0,
|
|
const PRUint16 TYPE_INT16 = 1; // TD_INT16 = 1,
|
|
const PRUint16 TYPE_INT32 = 2; // TD_INT32 = 2,
|
|
const PRUint16 TYPE_INT64 = 3; // TD_INT64 = 3,
|
|
const PRUint16 TYPE_UINT8 = 4; // TD_UINT8 = 4,
|
|
const PRUint16 TYPE_UINT16 = 5; // TD_UINT16 = 5,
|
|
const PRUint16 TYPE_UINT32 = 6; // TD_UINT32 = 6,
|
|
const PRUint16 TYPE_UINT64 = 7; // TD_UINT64 = 7,
|
|
const PRUint16 TYPE_FLOAT = 8; // TD_FLOAT = 8,
|
|
const PRUint16 TYPE_DOUBLE = 9; // TD_DOUBLE = 9,
|
|
const PRUint16 TYPE_BOOL = 10; // TD_BOOL = 10,
|
|
const PRUint16 TYPE_CHAR = 11; // TD_CHAR = 11,
|
|
const PRUint16 TYPE_WCHAR = 12; // TD_WCHAR = 12,
|
|
const PRUint16 TYPE_VOID = 13; // TD_VOID = 13,
|
|
const PRUint16 TYPE_ID = 14; // TD_PNSIID = 14,
|
|
const PRUint16 TYPE_ASTRING = 15; // TD_DOMSTRING = 15,
|
|
const PRUint16 TYPE_CHAR_STR = 16; // TD_PSTRING = 16,
|
|
const PRUint16 TYPE_WCHAR_STR = 17; // TD_PWSTRING = 17,
|
|
const PRUint16 TYPE_INTERFACE = 18; // TD_INTERFACE_TYPE = 18,
|
|
const PRUint16 TYPE_INTERFACE_IS = 19; // TD_INTERFACE_IS_TYPE = 19,
|
|
const PRUint16 TYPE_ARRAY = 20; // TD_ARRAY = 20,
|
|
const PRUint16 TYPE_STRING_SIZE_IS = 21; // TD_PSTRING_SIZE_IS = 21,
|
|
const PRUint16 TYPE_WSTRING_SIZE_IS = 22; // TD_PWSTRING_SIZE_IS = 22
|
|
|
|
const PRUint16 TYPE_EMPTY = 255;
|
|
};
|
|
|
|
|
|
/**
|
|
* XPConnect has magic to transparently convert between nsIVariant and JS types.
|
|
* We mark the interface [scriptable] so that JS can use methods
|
|
* that refer to this interface. But we mark all the methods and attributes
|
|
* [noscript] since any nsIVariant object will be automatically converted to a
|
|
* JS type anyway.
|
|
*/
|
|
|
|
[scriptable, uuid(6c9eb060-8c6a-11d5-90f3-0010a4e73d9a)]
|
|
interface nsIVariant : nsISupports
|
|
{
|
|
[noscript] readonly attribute PRUint16 dataType;
|
|
|
|
[noscript] PRUint8 getAsInt8();
|
|
[noscript] PRInt16 getAsInt16();
|
|
[noscript] PRInt32 getAsInt32();
|
|
[noscript] PRInt64 getAsInt64();
|
|
[noscript] PRUint8 getAsUint8();
|
|
[noscript] PRUint16 getAsUint16();
|
|
[noscript] PRUint32 getAsUint32();
|
|
[noscript] PRUint64 getAsUint64();
|
|
[noscript] float getAsFloat();
|
|
[noscript] double getAsDouble();
|
|
[noscript] PRBool getAsBool();
|
|
[noscript] char getAsChar();
|
|
[noscript] wchar getAsWChar();
|
|
[notxpcom] nsresult getAsID(out nsID retval);
|
|
[noscript] AString getAsAString();
|
|
[noscript] string getAsString();
|
|
[noscript] wstring getAsWString();
|
|
[noscript] nsISupports getAsISupports();
|
|
|
|
[noscript] void getAsInterface(out nsIIDPtr iid,
|
|
[iid_is(iid), retval] out nsQIResult iface);
|
|
|
|
[notxpcom] nsresult getAsArray(out PRUint16 type, out nsIID iid,
|
|
out PRUint32 count, out voidPtr ptr);
|
|
|
|
[noscript] void getAsStringWithSize(out PRUint32 size,
|
|
[size_is(size), retval] out string str);
|
|
|
|
[noscript] void getAsWStringWithSize(out PRUint32 size,
|
|
[size_is(size), retval] out wstring str);
|
|
};
|
|
|
|
/**
|
|
* An object that implements nsIVariant may or may NOT also implement this
|
|
* nsIWritableVariant.
|
|
*
|
|
* If the 'writable' attribute is false then attempts to call any of the 'set'
|
|
* methods can be expected to fail. Setting the 'writable' attribute may or
|
|
* may not succeed.
|
|
*
|
|
*/
|
|
|
|
[scriptable, uuid(5586a590-8c82-11d5-90f3-0010a4e73d9a)]
|
|
interface nsIWritableVariant : nsIVariant
|
|
{
|
|
attribute PRBool writable;
|
|
|
|
void setAsInt8(in PRUint8 aValue);
|
|
void setAsInt16(in PRInt16 aValue);
|
|
void setAsInt32(in PRInt32 aValue);
|
|
void setAsInt64(in PRInt64 aValue);
|
|
void setAsUint8(in PRUint8 aValue);
|
|
void setAsUint16(in PRUint16 aValue);
|
|
void setAsUint32(in PRUint32 aValue);
|
|
void setAsUint64(in PRUint64 aValue);
|
|
void setAsFloat(in float aValue);
|
|
void setAsDouble(in double aValue);
|
|
void setAsBool(in PRBool aValue);
|
|
void setAsChar(in char aValue);
|
|
void setAsWChar(in wchar aValue);
|
|
void setAsID(in nsIDRef aValue);
|
|
void setAsAString(in AString aValue);
|
|
void setAsString(in string aValue);
|
|
void setAsWString(in wstring aValue);
|
|
void setAsISupports(in nsISupports aValue);
|
|
|
|
void setAsInterface(in nsIIDRef iid,
|
|
[iid_is(iid)] in nsQIResult iface);
|
|
|
|
[noscript] void setAsArray(in PRUint16 type, in nsIIDPtr iid,
|
|
in PRUint32 count, in voidPtr ptr);
|
|
|
|
void setAsStringWithSize(in PRUint32 size,
|
|
[size_is(size)] in string str);
|
|
|
|
void setAsWStringWithSize(in PRUint32 size,
|
|
[size_is(size)] in wstring str);
|
|
|
|
void setAsVoid();
|
|
void setAsEmpty();
|
|
|
|
void setFromVariant(in nsIVariant aValue);
|
|
};
|
|
|
|
%{C++
|
|
// The contractID for the generic implementation built in to xpcom.
|
|
#define NS_VARIANT_CONTRACTID "@mozilla.org/variant;1"
|
|
%}
|