summaryrefslogtreecommitdiffstats
path: root/doc/manual/en_US/Accessibility.xml
blob: 149a0090426561d5dc52d32baf022379cb94d1ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Copyright (C) 2006-2023 Oracle and/or its affiliates.

    This file is part of VirtualBox base platform packages, as
    available from https://www.virtualbox.org.

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation, in version 3 of the
    License.

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, see <https://www.gnu.org/licenses>.

    SPDX-License-Identifier: GPL-3.0-only
-->
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"[
<!ENTITY % all.entities SYSTEM "all-entities.ent">
%all.entities;
]>

<book>
  <bookinfo>
    <title>&VBOX_PRODUCT;</title>

    <subtitle>Accessibility Reference</subtitle>

    <edition>Version &VBOX_VERSION_STRING;</edition>

    <corpauthor>&VBOX_VENDOR;</corpauthor>

    <address>https://www.virtualbox.org</address>

    <copyright>
      <year>2016-&VBOX_C_YEAR;</year>

      <holder>&VBOX_VENDOR;</holder>
    </copyright>
  </bookinfo>

  <chapter>
    <title>Introduction</title>
    <para>
      Welcome to the <emphasis role="bold">VirtualBox Accessibility Support</emphasis> documentation! This document is primarily
      a reference to help people who are interested in our project accessibility support and will describe how to use VirtualBox
      user interface step-by-step. Since whole the application navigation will be explained here, this document will also be
      helpful for those who are not familiar with our product user interface and wish to learn more. It will be written in a bit
      excessive manner so that many obvious things will be explained too precisely to make it easier to understand by ear for a
      blind users. The document will be periodically updated with recent changes and test-cases allowing us to more strictly
      follow the required guidelines and make our product fully accessible.
    </para>
    <para>
      Our application is based on Qt5, a powerful cross-platform library which allows to visualize various user interface ideas
      the most flexible and native way. This also means that the library we use is responsible for many navigation and
      accessibility aspects (like fonts, size hints, colors, look&amp;feel patterns and many other things), but not for all of
      them. Nativity as one of the main ideas of the Qt-based application sometimes brings additional complexity because there is
      always at least one host which uses unique combination of fonts and colors which breaks accessibility support in an
      unpredictable way.
    </para>
    <para>
      Independently on platform we are supporting screen-reader applications which can communicate with Qt5 accessibility
      interface which supports Microsoft Active Accessibility (MSAA), OS X Accessibility, and the Unix/X11 AT-SPI standard.
    </para>
    <para>
      Our application user interface is able to be started in two modes:
      <itemizedlist>
        <listitem>
          <para>
            First of them is <emphasis role="bold">VirtualBox Manager</emphasis> user interface, the main application window
            which allows to manage and configure virtual machines and their groups. Besides that, this window provides user with
            access to various global and machine related tools allowing to administrate some of VirtualBox objects and their
            settings.
          </para>
        </listitem>
        <listitem>
          <para>
            Second application mode is <emphasis role="bold">Virtual Machine</emphasis> user interface, which allows to control
            virtual machine guest screens as separate application windows. Besides that, this interface allows to access some of
            machine tools and adjust guest screens up to your needs, by changing their resolution and toggling full-screen,
            seamless and scaled modes.
          </para>
        </listitem>
      </itemizedlist>
      But first of all we should start from the <emphasis role="bold">General Concept</emphasis> which is related to whole the
      GUI and summarizes the navigation and accessibility aspects we are using for whole application.
    </para>
  </chapter>

  <chapter>
    <title>General concept</title>
    <para>
      This chapter describes the general navigation and accessibility concept. We should note that not every detail of this
      concept is already implemented and not every widget in our project already follows that concept. There is still large work
      to be done in that regard. But in the end whole the project should correspond to this concept.
    </para>
    <para>
      In short, every application window of our project should be navigated using the following approaches:
      <itemizedlist>
        <listitem><para>Mouse Navigation</para></listitem>
        <listitem><para>Keyboard Navigation</para></listitem>
        <listitem><para>Screen-reader Navigation</para></listitem>
      </itemizedlist>
    </para>
    <sect1>
      <title>Mouse Navigation</title>
      <itemizedlist>
        <listitem>
          <para>
            Each interactable widget can be focused with mouse (if that is not restricted by underlying host OS).
          </para>
        </listitem>
        <listitem>
          <para>
            Each hovered interactable widget causes own tool-tip to appear.
          </para>
        </listitem>
        <listitem>
          <para>
            Each tool-tip is given either in imperative mood (ex. "Create new virtual machine") or in short form (ex. "New").
          </para>
        </listitem>
        <listitem>
          <para>
            Short tool-tip form is only used if context is obvious for a user.
          </para>
        </listitem>
        <listitem>
          <para>
            Tool-tip can contain shortcut mentioned in parentheses.
          </para>
        </listitem>
        <listitem>
          <para>
            Each hovered menu bar / toolbar action causes own status-tip to appear (if window have status-bar).
          </para>
        </listitem>
        <listitem>
          <para>
            Each status-tip is given in imperative mood only.
          </para>
        </listitem>
        <listitem>
          <para>
            TBD...
          </para>
        </listitem>
      </itemizedlist>
    </sect1>
    <sect1>
      <title>Keyboard Navigation</title>
      <itemizedlist>
        <listitem>
          <para>
            Each interactable widget can be focused with keyboard (if that is not restricted by underlying host OS).
          </para>
        </listitem>
        <listitem>
          <para>
            Focusing is possible through tabbing or mnemonic navigation.
          </para>
        </listitem>
        <listitem>
          <para>
            Each button and menu bar / toolbar action can be directly activated with keyboard.
          </para>
        </listitem>
        <listitem>
          <para>
            Activation is possible via shortcut or mnemonic.
          </para>
        </listitem>
        <listitem>
          <para>
            Each shortcut is configurable through application preferences.
          </para>
        </listitem>
        <listitem>
          <para>
            Mnemonic mentioned above is underlined alphanumeric character which is a part of widget label (if widget has label).
            Mnemonic being triggered in conjunction with the Alt key.
          </para>
        </listitem>
        <listitem>
          <para>
            Each mnemonic is unique within the visible part of current application window, there are no collisions.
          </para>
        </listitem>
        <listitem>
          <para>
            TBD...
          </para>
        </listitem>
      </itemizedlist>
    </sect1>
    <sect1>
      <title>Screen-reader Navigation</title>
      <itemizedlist>
        <listitem>
          <para>
            Each interactable widget can be focused with screen-reader cursor.
          </para>
        </listitem>
        <listitem>
          <para>
            Each focused widget have clear name (or full description) in native user language.
          </para>
        </listitem>
        <listitem>
          <para>
            Each button and menu bar / toolbar action can be directly activated through the screen-reader cursor functionality.
          </para>
        </listitem>
        <listitem>
          <para>
            Each complex widget which has children (like list, tree, table and similar) is represented as closed group which
            encapsulates it's children clearly.
          </para>
        </listitem>
        <listitem>
          <para>
            While navigating user is able to skip any group without forcing to be entered inside.
          </para>
        </listitem>
        <listitem>
          <para>
            Each group child can be a group itself with the same rules as above applicable.
          </para>
        </listitem>
        <listitem>
          <para>
            Each text-field can be directly edited through the screen-reader cursor functionality.
          </para>
        </listitem>
        <listitem>
          <para>
            TBD...
          </para>
        </listitem>
      </itemizedlist>
    </sect1>
  </chapter>
</book>
<!-- vim: set shiftwidth=2 tabstop=2 expandtab: -->