Home | History | Annotate | Download | only in win

Lines Matching full:accessibility

82 String WebCore::AXWebAreaText() { return String(LPCTSTR_UI_STRING("web area", "accessibility role description for web area")); }
83 String WebCore::AXLinkText() { return String(LPCTSTR_UI_STRING("link", "accessibility role description for link")); }
84 String WebCore::AXListMarkerText() { return String(LPCTSTR_UI_STRING("list marker", "accessibility role description for list marker")); }
85 String WebCore::AXImageMapText() { return String(LPCTSTR_UI_STRING("image map", "accessibility role description for image map")); }
86 String WebCore::AXHeadingText() { return String(LPCTSTR_UI_STRING("heading", "accessibility role description for headings")); }
89 String WebCore::AXButtonActionVerb() { return String(LPCTSTR_UI_STRING("press", "Verb stating the action that will occur when a button is pressed, as used by accessibility")); }
90 String WebCore::AXRadioButtonActionVerb() { return String(LPCTSTR_UI_STRING("select", "Verb stating the action that will occur when a radio button is clicked, as used by accessibility")); }
91 String WebCore::AXTextFieldActionVerb() { return String(LPCTSTR_UI_STRING("activate", "Verb stating the action that will occur when a text field is selected, as used by accessibility")); }
92 String WebCore::AXCheckedCheckBoxActionVerb() { return String(LPCTSTR_UI_STRING("uncheck", "Verb stating the action that will occur when a checked checkbox is clicked, as used by accessibility")); }
93 String WebCore::AXUncheckedCheckBoxActionVerb() { return String(LPCTSTR_UI_STRING("check", "Verb stating the action that will occur when an unchecked checkbox is clicked, as used by accessibility")); }
94 String WebCore::AXLinkActionVerb() { return String(LPCTSTR_UI_STRING("jump", "Verb stating the action that will occur when a link is clicked, as used by accessibility")); }
95 String WebCore::AXMenuListActionVerb() { return String(LPCTSTR_UI_STRING("open", "Verb stating the action that will occur when a select element is clicked, as used by accessibility")); }
96 String WebCore::AXMenuListPopupActionVerb() { return String(LPCTSTR_UI_STRING("press", "Verb stating the action that will occur when a select element's popup list is clicked, as used by accessibility")); }
126 return String(LPCTSTR_UI_STRING("audio element controller", "accessibility role description for audio element controller"));
128 return String(LPCTSTR_UI_STRING("video element controller", "accessibility role description for video element controller"));
130 return String(LPCTSTR_UI_STRING("mute", "accessibility role description for mute button"));
132 return String(LPCTSTR_UI_STRING("unmute", "accessibility role description for turn mute off button"));
134 return String(LPCTSTR_UI_STRING("play", "accessibility role description for play button"));
136 return String(LPCTSTR_UI_STRING("pause", "accessibility role description for pause button"));
138 return String(LPCTSTR_UI_STRING("movie time", "accessibility role description for timeline slider"));
140 return String(LPCTSTR_UI_STRING("timeline slider thumb", "accessibility role description for timeline thumb"));
142 return String(LPCTSTR_UI_STRING("back 30 seconds", "accessibility role description for seek back 30 seconds button"));
144 return String(LPCTSTR_UI_STRING("return to realtime", "accessibility role description for return to real time button"));
146 return String(LPCTSTR_UI_STRING("elapsed time", "accessibility role description for elapsed time display"));
148 return String(LPCTSTR_UI_STRING("remaining time", "accessibility role description for time remaining display"));
150 return String(LPCTSTR_UI_STRING("status", "accessibility role description for movie status"));
152 return String(LPCTSTR_UI_STRING("fullscreen", "accessibility role description for enter fullscreen button"));
154 return String(LPCTSTR_UI_STRING("fast forward", "accessibility role description for fast forward button"));
156 return String(LPCTSTR_UI_STRING("fast reverse", "accessibility role description for fast reverse button"));
158 return String(LPCTSTR_UI_STRING("show closed captions", "accessibility role description for show closed captions button"));
160 return String(LPCTSTR_UI_STRING("hide closed captions", "accessibility role description for hide closed captions button"));
169 return String(LPCTSTR_UI_STRING("audio element playback controls and status display", "accessibility role description for audio element controller"));
171 return String(LPCTSTR_UI_STRING("video element playback controls and status display", "accessibility role description for video element controller"));
173 return String(LPCTSTR_UI_STRING("mute audio tracks", "accessibility help text for mute button"));
175 return String(LPCTSTR_UI_STRING("unmute audio tracks", "accessibility help text for un mute button"));
177 return String(LPCTSTR_UI_STRING("begin playback", "accessibility help text for play button"));
179 accessibility help text for pause button"));
181 return String(LPCTSTR_UI_STRING("movie time scrubber", "accessibility help text for timeline slider"));
183 return String(LPCTSTR_UI_STRING("movie time scrubber thumb", "accessibility help text for timeline slider thumb"));
185 return String(LPCTSTR_UI_STRING("seek movie back 30 seconds", "accessibility help text for jump back 30 seconds button"));
187 return String(LPCTSTR_UI_STRING("return streaming movie to real time", "accessibility help text for return streaming movie to real time button"));
189 return String(LPCTSTR_UI_STRING("current movie time in seconds", "accessibility help text for elapsed time display"));
191 return String(LPCTSTR_UI_STRING("number of seconds of movie remaining", "accessibility help text for remaining time display"));
193 return String(LPCTSTR_UI_STRING("current movie status", "accessibility help text for movie status display"));
195 return String(LPCTSTR_UI_STRING("seek quickly back", "accessibility help text for fast rewind button"));
197 return String(LPCTSTR_UI_STRING("seek quickly forward", "accessibility help text for fast forward button"));
199 return String(LPCTSTR_UI_STRING("Play movie in fullscreen mode", "accessibility help text for enter fullscreen button"));
201 return String(LPCTSTR_UI_STRING("start displaying closed captions", "accessibility help text for show closed captions button"));
203 return String(LPCTSTR_UI_STRING("stop displaying closed captions", "accessibility help text for hide closed captions button"));
212 return String(LPCTSTR_UI_STRING("indefinite time", "accessibility help text for an indefinite media controller time value"));
221 static RetainPtr<CFStringRef> format(AdoptCF, UI_STRING("%1$d days %2$d hours %3$d minutes %4$d seconds", "accessibility help text for media controller time value >= 1 day"));
227 static RetainPtr<CFStringRef> format(AdoptCF, UI_STRING("%1$d hours %2$d minutes %3$d seconds", "accessibility help text for media controller time value >= 60 minutes"));
233 static RetainPtr<CFStringRef> format(AdoptCF, UI_STRING("%1$d minutes %2$d seconds", "accessibility help text for media controller time value >= 60 seconds"));
238 static RetainPtr<CFStringRef> format(AdoptCF, UI_STRING("%1$d seconds", "accessibility help text for media controller time value < 60 seconds"));