Changeset 2492
- Timestamp:
- 11/11/08 02:17:48 (8 weeks ago)
- Location:
- trunk
- Files:
-
- 7 modified
-
. (modified) (3 props)
-
source/synthDriverHandler.py (modified) (2 diffs)
-
source/synthDrivers/audiologic.py (modified) (1 diff)
-
source/synthDrivers/display.py (modified) (1 diff)
-
source/synthDrivers/espeak.py (modified) (1 diff)
-
source/synthDrivers/sapi4.py (modified) (1 diff)
-
source/synthDrivers/sapi5.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property bzr:revision-info
-
old new 1 timestamp: 2008-11-1 0 18:38:09.641000032 +01002 committer: Peter Vágner <peter.v@datagate.sk>1 timestamp: 2008-11-11 13:00:33.200999975 +1100 2 committer: James Teh <jamie@jantrid.net> 3 3 properties: 4 4 branch-nick: main 5 rebase-of: jamie@jantrid.net-20081111020033-bkc6t5rofs9rod6x
-
- Property bzr:revision-id:v3-list-QlpoOTFBWSZTWbrL2vUAAB1VgAAQABCAQDrrnqAgAFCgaaGRkxBoTIJ6mmaNRwhndFAoNhZjh_YY4a01fOg1ulgNNC2UrzPdXXEnDpX8XckU4UJC6y9r1A..
-
old new 261 261 2289 peter.v@datagate.sk-20081110172116-imlbd3zcrmpf47nm 262 262 2290 peter.v@datagate.sk-20081110173809-ursuetu2mfiec6t3 263 2291 jamie@jantrid.net-20081111020033-pzhx3l8q2rvmerlv
-
- Property bzr:file-ids
-
old new 1 source/locale/cs/LC_MESSAGES/nvda.po 792@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Flocale%2Fcs%2FLC_MESSAGES%2Fnvda.po 2 source/locale/pt_BR/LC_MESSAGES/nvda.po 514@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Flocale%2Fpt_BR%2FLC_MESSAGES%2Fnvda.po 3 source/locale/sk/LC_MESSAGES/nvda.po 600@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Flocale%2Fsk%2FLC_MESSAGES%2Fnvda.po 1 source/synthDriverHandler.py 97@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2FsynthDriverHandler.py 2 source/synthDrivers/audiologic.py audiologic.py-20080701031200-sjkq3p9snm96sxhq-2 3 source/synthDrivers/display.py 1310@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2FsynthDrivers%2Fdisplay.py 4 source/synthDrivers/espeak.py 612@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2FsynthDrivers%2Fespeak.py 5 source/synthDrivers/sapi4.py sapi4.py-20081105062308-fz5mgli5iso5vcdq-2 6 source/synthDrivers/sapi5.py 94@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2FsynthDrivers%2Fsapi5.py
-
- Property bzr:revision-info
-
trunk/source/synthDriverHandler.py
r2482 r2492 48 48 name='espeak' 49 49 try: 50 newSynth=__import__(name,globals(),None,[]).SynthDriver ()50 newSynth=__import__(name,globals(),None,[]).SynthDriver 51 51 if _curSynth and _curSynth.name == newSynth.name: 52 52 _curSynth.cancel() 53 53 _curSynth.terminate() 54 54 _curSynth = None 55 newSynth .initialize()55 newSynth=newSynth() 56 56 updatedConfig=config.updateSynthConfig(name) 57 57 if not updatedConfig: … … 170 170 """ 171 171 172 173 172 def terminate(self): 174 173 """Terminate this synth driver. -
trunk/source/synthDrivers/audiologic.py
r2482 r2492 34 34 return False 35 35 36 def initialize(self):36 def __init__(self): 37 37 try: 38 38 _audiologic.TtsOpen() -
trunk/source/synthDrivers/display.py
r2255 r2492 35 35 return True 36 36 37 def initialize(self):37 def __init__(self): 38 38 self.frame = None 39 39 try: -
trunk/source/synthDrivers/espeak.py
r2482 r2492 26 26 return True 27 27 28 def initialize(self):28 def __init__(self): 29 29 _espeak.initialize() 30 30 lang=languageHandler.getLanguage() -
trunk/source/synthDrivers/sapi4.py
r2484 r2492 57 57 return enginesList 58 58 59 def initialize(self):59 def __init__(self): 60 60 self.lastIndex=None 61 61 self._bufSink=SynthDriverBufSink(self) -
trunk/source/synthDrivers/sapi5.py
r2482 r2492 40 40 return False 41 41 42 def initialize(self):42 def __init__(self): 43 43 self.tts = comtypes.client.CreateObject(COM_CLASS) 44 44 self._pitch=50

NVDA is supported by