mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
95 lines
3.9 KiB
Plaintext
95 lines
3.9 KiB
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "domstubs.idl"
|
|
#include "nsISupports.idl"
|
|
#include "nsIMobileMessageDatabaseService.idl"
|
|
|
|
[scriptable, function, uuid(92986322-8d56-11e2-8816-73a531c493c2)]
|
|
interface nsIRilMobileMessageDatabaseCallback : nsISupports
|
|
{
|
|
/**
|
|
* |aDomMessage|: the nsIDOMMoz{Mms,Sms}Message
|
|
*/
|
|
void notify(in nsresult aRv, in nsISupports aDomMessage);
|
|
};
|
|
|
|
[scriptable, function, uuid(2be52603-5885-412c-9225-f78a78f1bbbd)]
|
|
interface nsIRilMobileMessageDatabaseRecordCallback : nsISupports
|
|
{
|
|
/**
|
|
* |aMessageRecord| Object: the mobile-message database record
|
|
*/
|
|
void notify(in nsresult aRv, in jsval aMessageRecord);
|
|
};
|
|
|
|
[scriptable, uuid(0ead3154-542d-4e2c-a624-9e3cec504758)]
|
|
interface nsIRilMobileMessageDatabaseService : nsIMobileMessageDatabaseService
|
|
{
|
|
/**
|
|
* |aMessage| Object: should contain the following properties for internal use:
|
|
* - |type| DOMString: "sms" or "mms"
|
|
* - |sender| DOMString: the phone number of sender
|
|
* - |timestamp| Number: the timestamp of received message
|
|
*
|
|
* - If |type| == "sms", we also need:
|
|
* - |messageClass| DOMString: the message class of received message
|
|
*
|
|
* - If |type| == "mms", we also need:
|
|
* - |delivery| DOMString: the delivery state of received message
|
|
* - |deliveryStatus| DOMString Array: the delivery status of received message
|
|
* - |receivers| DOMString Array: the phone numbers of receivers
|
|
* - |transactionId| DOMString: the transaction ID from MMS pdu header.
|
|
*
|
|
* Note: |deliveryStatus| should only contain single string to specify
|
|
* the delivery status of MMS message for the phone owner self.
|
|
*/
|
|
long saveReceivedMessage(in jsval aMessage,
|
|
[optional] in nsIRilMobileMessageDatabaseCallback aCallback);
|
|
|
|
/**
|
|
* |aMessage| Object: should contain the following properties for internal use:
|
|
* - |type| DOMString: "sms" or "mms"
|
|
* - |timestamp| Number: the timestamp of sending message
|
|
* - |deliveryStatusRequested| Bool: true when the delivery report is requested.
|
|
*
|
|
* - If |type| == "sms", we also need:
|
|
* - |receiver| DOMString: the phone number of receiver
|
|
*
|
|
* - If |type| == "mms", we also need:
|
|
* - |receivers| DOMString Array: the phone numbers of receivers
|
|
*/
|
|
long saveSendingMessage(in jsval aMessage,
|
|
[optional] in nsIRilMobileMessageDatabaseCallback aCallback);
|
|
|
|
/**
|
|
* |aMessageId| Number: the message's DB record ID.
|
|
* |aReceiver| DOMString: the phone number of receiver (for MMS; can be null).
|
|
* |aDelivery| DOMString: the new delivery value to update (can be null).
|
|
* |aDeliveryStatus| DOMString: the new delivery status to update (can be null).
|
|
* |aCallback| nsIRilMobileMessageDatabaseCallback: an optional callback.
|
|
*/
|
|
void setMessageDelivery(in long aMessageId,
|
|
in DOMString aReceiver,
|
|
in DOMString aDelivery,
|
|
in DOMString aDeliveryStatus,
|
|
[optional] in nsIRilMobileMessageDatabaseCallback aCallback);
|
|
|
|
/**
|
|
* |aMessageId| Number: the message's DB record ID.
|
|
* |aCallback| nsIRilMobileMessageDatabaseCallback: a callback which takes
|
|
* result flag and message record as parameters.
|
|
*/
|
|
void getMessageRecordById(in long aMessageId,
|
|
in nsIRilMobileMessageDatabaseRecordCallback aCallback);
|
|
|
|
/**
|
|
* |aTransactionId| DOMString: the transaction ID of MMS pdu.
|
|
* |aCallback| nsIRilMobileMessageDatabaseCallback: a callback which takes
|
|
* result flag and message record as parameters.
|
|
*/
|
|
void getMessageRecordByTransactionId(in DOMString aTransactionId,
|
|
in nsIRilMobileMessageDatabaseRecordCallback aCallback);
|
|
};
|