tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

mozHTMLAccessible.h (899B)


      1 /* clang-format off */
      2 /* -*- Mode: Objective-C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      3 /* clang-format on */
      4 /* This Source Code Form is subject to the terms of the Mozilla Public
      5 * License, v. 2.0. If a copy of the MPL was not distributed with this
      6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      7 
      8 #import "mozAccessible.h"
      9 
     10 @interface mozHeadingAccessible : mozAccessible
     11 
     12 // override
     13 - (NSString*)moxTitle;
     14 
     15 // override
     16 - (id)moxValue;
     17 
     18 @end
     19 
     20 @interface mozLinkAccessible : mozAccessible
     21 
     22 // override
     23 - (id)moxValue;
     24 
     25 // override
     26 - (NSString*)moxRole;
     27 
     28 // override
     29 - (NSURL*)moxURL;
     30 
     31 // override
     32 - (NSNumber*)moxVisited;
     33 
     34 // override
     35 - (NSArray*)moxLinkedUIElements;
     36 
     37 @end
     38 
     39 @interface MOXListItemAccessible : mozAccessible
     40 
     41 // override
     42 - (NSString*)moxTitle;
     43 
     44 @end
     45 
     46 @interface MOXLabelAccessible : mozAccessible
     47 
     48 // override
     49 - (NSString*)moxTitle;
     50 
     51 @end