Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Talk

This is mainly an experiment to see whether creating something similar to what tolk was would be worth it.
The API is expected to break frequently for now, so use at your own risk, if you do.

How does it work?

Talk makes use of a single concept, Driver which is a trait used to implement generic abstractions over screenreaders. You may find some examples in the examples folder

Example

use talk::Talk;

fn main() {
    // You can create a driver handle quite easily
    let nvda = Talk::nvda();
    let sapi = Talk::sapi();
    nvda.speak("Speaking from NVDA", false);
    sapi.speak("Speaking from sapi", false);
    // you can cheaply clone the driver handle to use in other threads as well
    // once all references to the handle are dropped
    // the background driver worker will clean up its resources
}

About

An experimental screen reader abstraction library, inspired from tolk

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages