tor-browser

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

MOXMathAccessibles.h (1138B)


      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 MOXMathRootAccessible : mozAccessible
     11 
     12 // overrides
     13 - (id)moxMathRootRadicand;
     14 
     15 // overrides
     16 - (id)moxMathRootIndex;
     17 
     18 @end
     19 
     20 @interface MOXMathSquareRootAccessible : mozAccessible
     21 
     22 // overrides
     23 - (id)moxMathRootRadicand;
     24 
     25 @end
     26 
     27 @interface MOXMathFractionAccessible : mozAccessible
     28 
     29 // overrides
     30 - (id)moxMathFractionNumerator;
     31 
     32 // overrides
     33 - (id)moxMathFractionDenominator;
     34 
     35 // overrides
     36 - (NSNumber*)moxMathLineThickness;
     37 
     38 @end
     39 
     40 @interface MOXMathSubSupAccessible : mozAccessible
     41 
     42 // overrides
     43 - (id)moxMathBase;
     44 
     45 // overrides
     46 - (id)moxMathSubscript;
     47 
     48 // overrides
     49 - (id)moxMathSuperscript;
     50 
     51 @end
     52 
     53 @interface MOXMathUnderOverAccessible : mozAccessible
     54 
     55 // overrides
     56 - (id)moxMathBase;
     57 
     58 // overrides
     59 - (id)moxMathUnder;
     60 
     61 // overrides
     62 - (id)moxMathOver;
     63 
     64 @end