2012-05-21 11:12:37 +00: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/. */
|
|
|
|
|
2006-11-15 11:08:14 +00:00
|
|
|
#import "mozAccessible.h"
|
|
|
|
|
2012-05-31 08:04:41 +00:00
|
|
|
#import "HyperTextAccessible.h"
|
2006-11-15 11:08:14 +00: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-18 02:01:44 +00:00
|
|
|
mozilla::a11y::HyperTextAccessible* mGeckoTextAccessible; // strong
|
2006-11-15 11:08:14 +00:00
|
|
|
nsIAccessibleEditableText *mGeckoEditableTextAccessible; // strong
|
|
|
|
}
|
|
|
|
@end
|
2012-06-29 21:12:16 +00:00
|
|
|
|
|
|
|
@interface mozTextLeafAccessible : mozAccessible
|
|
|
|
{
|
|
|
|
}
|
|
|
|
@end
|