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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ACCESSIBILITY_EVENTS_H_
#define CHROME_BROWSER_ACCESSIBILITY_EVENTS_H_
#include <string>
#include "base/values.h"
class AccessibilityControlInfo;
class NotificationType;
class Profile;
// Use the NotificationService to post the given accessibility
// notification type with AccessibilityControlInfo details to any
// listeners. Will not send if the profile's pause level is nonzero
// (using profile->PauseAccessibilityEvents).
void SendAccessibilityNotification(
NotificationType type, AccessibilityControlInfo* info);
// Abstract parent class for accessibility information about a control
// passed to event listeners.
class AccessibilityControlInfo {
public:
virtual ~AccessibilityControlInfo() { }
// Serialize this class as a DictionaryValue that can be converted to
// a JavaScript object.
virtual void SerializeToDict(DictionaryValue *dict) const;
Profile* profile() const { return profile_; }
const std::string& name() const { return name_; }
protected:
// The constructor can only be called by subclasses.
AccessibilityControlInfo(Profile* profile, std::string control_name)
: profile_(profile), name_(control_name) { }
// The profile this control belongs to.
Profile* profile_;
// The name of the control, like "OK" or "Password".
std::string name_;
};
// Accessibility information about a window passed to onWindowOpened
// and onWindowClosed event listeners.
class AccessibilityWindowInfo : public AccessibilityControlInfo {
public:
AccessibilityWindowInfo(Profile* profile, std::string window_name)
: AccessibilityControlInfo(profile, window_name) { }
virtual void SerializeToDict(DictionaryValue *dict) const;
};
// Accessibility information about a push button passed to onControlFocused
// and onControlAction event listeners.
class AccessibilityButtonInfo : public AccessibilityControlInfo {
public:
AccessibilityButtonInfo(Profile* profile, std::string button_name)
: AccessibilityControlInfo(profile, button_name) { }
virtual void SerializeToDict(DictionaryValue *dict) const;
};
// Accessibility information about a hyperlink passed to onControlFocused
// and onControlAction event listeners.
class AccessibilityLinkInfo : public AccessibilityControlInfo {
public:
AccessibilityLinkInfo(Profile* profile, std::string link_name)
: AccessibilityControlInfo(profile, link_name) { }
virtual void SerializeToDict(DictionaryValue *dict) const;
};
// Accessibility information about a radio button passed to onControlFocused
// and onControlAction event listeners.
class AccessibilityRadioButtonInfo : public AccessibilityControlInfo {
public:
AccessibilityRadioButtonInfo(Profile* profile,
std::string name,
bool checked,
int item_index,
int item_count)
: AccessibilityControlInfo(profile, name),
checked_(checked),
item_index_(item_index),
item_count_(item_count) {
}
virtual void SerializeToDict(DictionaryValue *dict) const;
void SetChecked(bool checked) { checked_ = checked; }
private:
bool checked_;
// The 0-based index of this radio button and number of buttons in the group.
int item_index_;
int item_count_;
};
// Accessibility information about a checkbox passed to onControlFocused
// and onControlAction event listeners.
class AccessibilityCheckboxInfo : public AccessibilityControlInfo {
public:
AccessibilityCheckboxInfo(Profile* profile,
std::string name,
bool checked)
: AccessibilityControlInfo(profile, name),
checked_(checked) {
}
virtual void SerializeToDict(DictionaryValue *dict) const;
void SetChecked(bool checked) { checked_ = checked; }
private:
bool checked_;
};
// Accessibility information about a tab passed to onControlFocused
// and onControlAction event listeners.
class AccessibilityTabInfo : public AccessibilityControlInfo {
public:
AccessibilityTabInfo(Profile* profile,
std::string tab_name,
int tab_index,
int tab_count)
: AccessibilityControlInfo(profile, tab_name),
tab_index_(tab_index),
tab_count_(tab_count) {
}
virtual void SerializeToDict(DictionaryValue *dict) const;
void SetTab(int tab_index, std::string tab_name) {
tab_index_ = tab_index;
name_ = tab_name;
}
private:
// The 0-based index of this tab and number of tabs in the group.
int tab_index_;
int tab_count_;
};
// Accessibility information about a combo box passed to onControlFocused
// and onControlAction event listeners.
class AccessibilityComboBoxInfo : public AccessibilityControlInfo {
public:
AccessibilityComboBoxInfo(Profile* profile,
std::string name,
std::string value,
int item_index,
int item_count)
: AccessibilityControlInfo(profile, name),
value_(value),
item_index_(item_index),
item_count_(item_count) {
}
virtual void SerializeToDict(DictionaryValue *dict) const;
void SetValue(int item_index, std::string value) {
item_index_ = item_index;
value_ = value;
}
private:
std::string value_;
// The 0-based index of the current item and the number of total items.
// If the value is not one of the drop-down options, |item_index_| should
// be -1.
int item_index_;
int item_count_;
};
// Accessibility information about a text box, passed to onControlFocused,
// onControlAction, and onTextChanged event listeners.
class AccessibilityTextBoxInfo : public AccessibilityControlInfo {
public:
AccessibilityTextBoxInfo(Profile* profile,
std::string name,
bool password)
: AccessibilityControlInfo(profile, name),
value_(""),
password_(password),
selection_start_(0),
selection_end_(0) {
}
virtual void SerializeToDict(DictionaryValue *dict) const;
void SetValue(std::string value, int selection_start, int selection_end) {
value_ = value;
selection_start_ = selection_start;
selection_end_ = selection_end;
}
private:
std::string value_;
bool password_;
int selection_start_;
int selection_end_;
};
// Accessibility information about a combo box passed to onControlFocused
// and onControlAction event listeners.
class AccessibilityListBoxInfo : public AccessibilityControlInfo {
public:
AccessibilityListBoxInfo(Profile* profile,
std::string name,
std::string value,
int item_index,
int item_count)
: AccessibilityControlInfo(profile, name),
value_(value),
item_index_(item_index),
item_count_(item_count) {
}
virtual void SerializeToDict(DictionaryValue *dict) const;
void SetValue(int item_index, std::string value) {
item_index_ = item_index;
value_ = value;
}
private:
std::string value_;
// The 0-based index of the current item and the number of total items.
// If the value is not one of the drop-down options, |item_index_| should
// be -1.
int item_index_;
int item_count_;
};
// Accessibility information about a menu; this class is used by
// onMenuOpened, onMenuClosed, and onControlFocused event listeners.
class AccessibilityMenuInfo : public AccessibilityControlInfo {
public:
AccessibilityMenuInfo(Profile* profile, std::string menu_name)
: AccessibilityControlInfo(profile, menu_name) { }
virtual void SerializeToDict(DictionaryValue *dict) const;
};
// Accessibility information about a menu item; this class is used by
// onControlFocused event listeners.
class AccessibilityMenuItemInfo : public AccessibilityControlInfo {
public:
AccessibilityMenuItemInfo(Profile* profile,
std::string name,
bool has_submenu,
int item_index,
int item_count)
: AccessibilityControlInfo(profile, name),
has_submenu_(has_submenu),
item_index_(item_index),
item_count_(item_count) {
}
virtual void SerializeToDict(DictionaryValue *dict) const;
private:
bool has_submenu_;
// The 0-based index of the current item and the number of total items.
int item_index_;
int item_count_;
};
#endif // CHROME_BROWSER_ACCESSIBILITY_EVENTS_H_
|