| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- # The PEP 484 type hints stub file for the QtTextToSpeech module.
- #
- # Generated by SIP 6.15.3
- #
- # Copyright (c) 2026 Riverbank Computing Limited <info@riverbankcomputing.com>
- #
- # This file is part of PyQt6.
- #
- # This file may be used under the terms of the GNU General Public License
- # version 3.0 as published by the Free Software Foundation and appearing in
- # the file LICENSE included in the packaging of this file. Please review the
- # following information to ensure the GNU General Public License version 3.0
- # requirements will be met: http://www.gnu.org/copyleft/gpl.html.
- #
- # If you do not wish to use this file under the terms of the GPL version 3.0
- # then you may purchase a commercial license. For more information contact
- # info@riverbankcomputing.com.
- #
- # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- import collections, re, typing, enum
- try:
- from warnings import deprecated
- except ImportError:
- pass
- import PyQt6.sip
- from PyQt6 import QtCore
- # Support for QDate, QDateTime and QTime.
- import datetime
- # Convenient type aliases.
- PYQT_SIGNAL = typing.Union[QtCore.pyqtSignal, QtCore.pyqtBoundSignal]
- PYQT_SLOT = typing.Union[collections.abc.Callable[..., Any], QtCore.pyqtBoundSignal]
- class QTextToSpeech(QtCore.QObject):
- class Capability(enum.Enum):
- None_ = ... # type: QTextToSpeech.Capability
- Speak = ... # type: QTextToSpeech.Capability
- PauseResume = ... # type: QTextToSpeech.Capability
- WordByWordProgress = ... # type: QTextToSpeech.Capability
- Synthesize = ... # type: QTextToSpeech.Capability
- class State(enum.Enum):
- Ready = ... # type: QTextToSpeech.State
- Speaking = ... # type: QTextToSpeech.State
- Paused = ... # type: QTextToSpeech.State
- Error = ... # type: QTextToSpeech.State
- Synthesizing = ... # type: QTextToSpeech.State
- class ErrorReason(enum.Enum):
- NoError = ... # type: QTextToSpeech.ErrorReason
- Initialization = ... # type: QTextToSpeech.ErrorReason
- Configuration = ... # type: QTextToSpeech.ErrorReason
- Input = ... # type: QTextToSpeech.ErrorReason
- Playback = ... # type: QTextToSpeech.ErrorReason
- class BoundaryHint(enum.Enum):
- Default = ... # type: QTextToSpeech.BoundaryHint
- Immediate = ... # type: QTextToSpeech.BoundaryHint
- Word = ... # type: QTextToSpeech.BoundaryHint
- Sentence = ... # type: QTextToSpeech.BoundaryHint
- Utterance = ... # type: QTextToSpeech.BoundaryHint
- @typing.overload
- def __init__(self, engine: str|None, params: dict[str|None, typing.Any], parent: QtCore.QObject|None = ...) -> None: ...
- @typing.overload
- def __init__(self, parent: QtCore.QObject|None = ...) -> None: ...
- @typing.overload
- def __init__(self, engine: str|None, parent: QtCore.QObject|None = ...) -> None: ...
- aboutToSynthesize: typing.ClassVar[QtCore.pyqtSignal]
- sayingWord: typing.ClassVar[QtCore.pyqtSignal]
- def enqueue(self, text: str|None) -> int: ...
- def engineCapabilities(self) -> 'QTextToSpeech.Capability': ...
- errorOccurred: typing.ClassVar[QtCore.pyqtSignal]
- engineChanged: typing.ClassVar[QtCore.pyqtSignal]
- voiceChanged: typing.ClassVar[QtCore.pyqtSignal]
- volumeChanged: typing.ClassVar[QtCore.pyqtSignal]
- pitchChanged: typing.ClassVar[QtCore.pyqtSignal]
- rateChanged: typing.ClassVar[QtCore.pyqtSignal]
- localeChanged: typing.ClassVar[QtCore.pyqtSignal]
- stateChanged: typing.ClassVar[QtCore.pyqtSignal]
- def setVoice(self, voice: 'QVoice') -> None: ...
- def setVolume(self, volume: float) -> None: ...
- def setPitch(self, pitch: float) -> None: ...
- def setRate(self, rate: float) -> None: ...
- def setLocale(self, locale: QtCore.QLocale) -> None: ...
- def resume(self) -> None: ...
- def pause(self, boundaryHint: 'QTextToSpeech.BoundaryHint' = ...) -> None: ...
- def stop(self, boundaryHint: 'QTextToSpeech.BoundaryHint' = ...) -> None: ...
- def say(self, text: str|None) -> None: ...
- @staticmethod
- def availableEngines() -> list[str]: ...
- def volume(self) -> float: ...
- def pitch(self) -> float: ...
- def rate(self) -> float: ...
- def availableVoices(self) -> list['QVoice']: ...
- def voice(self) -> 'QVoice': ...
- def locale(self) -> QtCore.QLocale: ...
- def availableLocales(self) -> list[QtCore.QLocale]: ...
- def state(self) -> 'QTextToSpeech.State': ...
- def errorString(self) -> str: ...
- def errorReason(self) -> 'QTextToSpeech.ErrorReason': ...
- def engine(self) -> str: ...
- def setEngine(self, engine: str|None, params: dict[str|None, typing.Any] = ...) -> bool: ...
- class QVoice(PyQt6.sip.simplewrapper):
- class Age(enum.Enum):
- Child = ... # type: QVoice.Age
- Teenager = ... # type: QVoice.Age
- Adult = ... # type: QVoice.Age
- Senior = ... # type: QVoice.Age
- Other = ... # type: QVoice.Age
- class Gender(enum.Enum):
- Male = ... # type: QVoice.Gender
- Female = ... # type: QVoice.Gender
- Unknown = ... # type: QVoice.Gender
- @typing.overload
- def __init__(self) -> None: ...
- @typing.overload
- def __init__(self, other: 'QVoice') -> None: ...
- def __eq__(self, other: object): ...
- def __ne__(self, other: object): ...
- def language(self) -> QtCore.QLocale.Language: ...
- def locale(self) -> QtCore.QLocale: ...
- def swap(self, other: 'QVoice') -> None: ...
- @staticmethod
- def ageName(age: 'QVoice.Age') -> str: ...
- @staticmethod
- def genderName(gender: 'QVoice.Gender') -> str: ...
- def age(self) -> 'QVoice.Age': ...
- def gender(self) -> 'QVoice.Gender': ...
- def name(self) -> str: ...
|