2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#import "mozAccessible.h"
|
|
|
|
|
2012-05-31 01:04:41 -07:00
|
|
|
#import "HyperTextAccessible.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
@interface mozTextAccessible : mozAccessible
|
|
|
|
{
|
|
|
|
// both of these are the same old mGeckoAccessible, but already
|
|
|
|
// QI'd for us, to the right type, for convenience.
|
2012-11-17 18:01:44 -08:00
|
|
|
mozilla::a11y::HyperTextAccessible* mGeckoTextAccessible; // strong
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIAccessibleEditableText *mGeckoEditableTextAccessible; // strong
|
|
|
|
}
|
|
|
|
@end
|
2012-06-29 14:12:16 -07:00
|
|
|
|
|
|
|
@interface mozTextLeafAccessible : mozAccessible
|
|
|
|
{
|
|
|
|
}
|
|
|
|
@end
|