mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
71 lines
2.2 KiB
Plaintext
71 lines
2.2 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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 "nsISupports.idl"
|
|
|
|
interface nsISpeechService;
|
|
|
|
[scriptable, builtinclass, uuid(53dcc868-4193-4c3c-a1d9-fe5a0a6af2fb)]
|
|
interface nsISynthVoiceRegistry : nsISupports
|
|
{
|
|
/**
|
|
* Register a speech synthesis voice.
|
|
*
|
|
* @param aService the service that provides this voice.
|
|
* @param aUri a unique identifier for this voice.
|
|
* @param aName human-readable name for this voice.
|
|
* @param aLang a BCP 47 language tag.
|
|
* @param aLocalService true if service does not require network.
|
|
*/
|
|
void addVoice(in nsISpeechService aService, in DOMString aUri,
|
|
in DOMString aName, in DOMString aLang,
|
|
in boolean aLocalService);
|
|
|
|
/**
|
|
* Remove a speech synthesis voice.
|
|
*
|
|
* @param aService the service that was used to add the voice.
|
|
* @param aUri a unique identifier of an existing voice.
|
|
*/
|
|
void removeVoice(in nsISpeechService aService, in DOMString aUri);
|
|
|
|
/**
|
|
* Set a voice as default.
|
|
*
|
|
* @param aUri a unique identifier of an existing voice.
|
|
* @param aIsDefault true if this voice should be toggled as default.
|
|
*/
|
|
void setDefaultVoice(in DOMString aUri, in boolean aIsDefault);
|
|
|
|
readonly attribute uint32_t voiceCount;
|
|
|
|
AString getVoice(in uint32_t aIndex);
|
|
|
|
bool isDefaultVoice(in DOMString aUri);
|
|
|
|
bool isLocalVoice(in DOMString aUri);
|
|
|
|
AString getVoiceLang(in DOMString aUri);
|
|
|
|
AString getVoiceName(in DOMString aUri);
|
|
};
|
|
|
|
%{C++
|
|
#define NS_SYNTHVOICEREGISTRY_CID \
|
|
{ /* {7090524d-5574-4492-a77f-d8d558ced59d} */ \
|
|
0x7090524d, \
|
|
0x5574, \
|
|
0x4492, \
|
|
{ 0xa7, 0x7f, 0xd8, 0xd5, 0x58, 0xce, 0xd5, 0x9d } \
|
|
}
|
|
|
|
#define NS_SYNTHVOICEREGISTRY_CONTRACTID \
|
|
"@mozilla.org/synth-voice-registry;1"
|
|
|
|
#define NS_SYNTHVOICEREGISTRY_CLASSNAME \
|
|
"Speech Synthesis Voice Registry"
|
|
|
|
%}
|