Re: [orca-list] IBus and Orca



Hello,

Upon reading the linked page again, it became apparent to me that indeed this program does provide braille input using a qwerty keyboard (as opposed to a specialized braille keyboard).  I think I managed to compile it now, but if someone could help me run it, that would be great.

Thanks!

Daniel

On Thu, Nov 27, 2014 at 2:10 AM, B. Henry <burt1iband gmail com> wrote:
Yes, from what I read it certinly does this, and appears to be very flexible in handling grade2 and even 3 braille and multiple languages.
Certainly there was a time in my life before I'd typed for years that writing with brailler key combinations would have gotten more text on to pages
faster
than a qwerty keyboard.
I mentioned braille devices because I'd also imagined typiing with the intention of keystrokes being directly saved as braille dots, Which I assume this
can also do, although I've not read everything to make sure that can be done.
It would be less than to have to translate from braille 6 dot arrays to letters and symbols  only to have to translate back to dots to print out a page
of paper braille...lol.
The excellent point is made how in languages with large alphabets braille can be an efficient way to type the many characters rather than having to use
multiple shift levels.
Again, congrats on what appears to be a very well thought out project.




On Wed, Nov 26, 2014 at 10:34:43PM +0100, Peter V?gner wrote:
>    Hello,
>    I don't know if I fully understand the scope of this project but my
>    first impression is that this is exactly what it does. It provides
>    alternate input method emulating braile style typewriter on a classic
>    keyboard.
>    Greetings
>    Peter
>    On 26.11.2014 at 20:46 Daniel Barich wrote:
>
>    If would be good to be able to type braille using the qwerty keyboard
>    in linux (eg sdfjkl keys).
>
>    On Wed, Nov 26, 2014 at 1:24 PM, B. Henry <[1]burt1iband gmail com>
>    wrote:
>
>      Congratulations on the project.
>      I don't have any braille devices, so for the moment typing braille
>      style would not benefit me, but this sounds very useful.
>      Regards,
>      --
>      B.H.
>      On Wed, Nov 26, 2014 at 06:15:43PM +0530, Nalin.x.Linux wrote:
>      >    Dear list,
>      >        We have developed a input system name IBus-Sharada-Braille
>      which
>      >    use six key combination of braille. Everything is fine except
>      that
>      >    orca is not announcing the insertion and deletion of string
>      having
>      >    length greater than one. I found that it can be enabled by
>      editing
>      >    onTextInsert,onTextDeletion functions in
>      orca/script/default.py. my
>      >    sample patch is attached at the end of this mail. This will
>      also
>      >    announce the cutting and pasting of text so i think we have to
>      limit
>      >    it with certain length. please let me know if there any other
>      >    obligation.
>      >    Read more about IBus-Sharada-Braille
>      >    : [1][2]http://ibus-sharada-braille.blogspot.in/
>      >    expecting your response Nalin.x.Linux
>      >    diff --git a/scripts/default.py b/scripts/default.py
>      >    index e0b17d3..daab534 100644
>      >    --- a/scripts/default.py
>      >    +++ b/scripts/default.py
>      >    @@ -2553,6 +2553,8 @@ class Script(script.Script):
>      >             # experiences.]]]
>      >             self.updateBraille(event.source)
>      >    +        msg = event.any_data + " Deleted";
>      >    +        self.speakMessage(msg)
>      >             # The any_data member of the event object has the
>      deleted text
>      >    in
>      >             # it - If the last key pressed was a backspace or
>      delete key,
>      >    @@ -2629,6 +2631,11 @@ class Script(script.Script):
>      >             self.updateBraille(event.source)
>      >    +        if(len(event.any_data) > 1):
>      >    +                      msg = event.any_data;
>      >    +                      self.speakMessage(msg)
>      >    +
>      >    +
>      >             # If the last input event was a keyboard event, check
>      to see
>      >    if
>      >             # the text for this event matches what the user typed.
>      If it
>      >    does,
>      >             # then don't speak it.
>      >    expecting your response Nalin.x.Linux
>      >    --
>      >    Free Software Free Society
>      >
>      > References
>      >
>      >    1. [2]http://ibus-sharada-braille.blogspot.in/
>      > _______________________________________________
>      > orca-list mailing list
>      > [3]orca-list gnome org
>      > [4]https://mail.gnome.org/mailman/listinfo/orca-list
>      > Visit [5]http://live.gnome.org/Orca for more information on Orca.
>      > The manual is at
>      [6]http://library.gnome.org/users/gnome-access-guide/nightly/ats-2.h
>      tml
>      > The FAQ is at
>      [7]http://live.gnome.org/Orca/FrequentlyAskedQuestions
>      > Log bugs and feature requests at [8]http://bugzilla.gnome.org
>      > Find out how to help at [9]http://live.gnome.org/Orca/HowCanIHelp
>      _______________________________________________
>      orca-list mailing list
>      [3]orca-list gnome org
>      [4]https://mail.gnome.org/mailman/listinfo/orca-list
>      Visit [5]http://live.gnome.org/Orca for more information on Orca.
>      The manual is at
>      [6]http://library.gnome.org/users/gnome-access-guide/nightly/ats-2.h
>      tml
>      The FAQ is at [7]http://live.gnome.org/Orca/FrequentlyAskedQuestions
>      Log bugs and feature requests at [8]http://bugzilla.gnome.org
>      Find out how to help at [9]http://live.gnome.org/Orca/HowCanIHelp
>
>    --
>    Daniel Barich
>    Adaptive Technology Consultant
>    Olin Library
>    Kenyon College
>    740-504-4935
>
> _______________________________________________
> orca-list mailing list
> [3]orca-list gnome org
> [4]https://mail.gnome.org/mailman/listinfo/orca-list
> Visit [5]http://live.gnome.org/Orca for more information on Orca.
> The manual is at [6]http://library.gnome.org/users/gnome-access-guide/nightly/at
> s-2.html
> The FAQ is at [7]http://live.gnome.org/Orca/FrequentlyAskedQuestions
> Log bugs and feature requests at [8]http://bugzilla.gnome.org
> Find out how to help at [9]http://live.gnome.org/Orca/HowCanIHelp
>
> References
>
>    1. mailto:burt1iband gmail com
>    2. http://ibus-sharada-braille.blogspot.in/
>    3. mailto:orca-list gnome org
>    4. https://mail.gnome.org/mailman/listinfo/orca-list
>    5. http://live.gnome.org/Orca
>    6. http://library.gnome.org/users/gnome-access-guide/nightly/ats-2.html
>    7. http://live.gnome.org/Orca/FrequentlyAskedQuestions
>    8. http://bugzilla.gnome.org/
>    9. http://live.gnome.org/Orca/HowCanIHelp

_______________________________________________
orca-list mailing list
orca-list gnome org
https://mail.gnome.org/mailman/listinfo/orca-list
Visit http://live.gnome.org/Orca for more information on Orca.
The manual is at http://library.gnome.org/users/gnome-access-guide/nightly/ats-2.html
The FAQ is at http://live.gnome.org/Orca/FrequentlyAskedQuestions
Log bugs and feature requests at http://bugzilla.gnome.org
Find out how to help at http://live.gnome.org/Orca/HowCanIHelp



--
Daniel Barich
Adaptive Technology Consultant
Olin Library
Kenyon College
740-504-4935


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]