2013-11-18 17:19:33 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_a11y_xpcAccessibleHyperText_h_
|
|
|
|
#define mozilla_a11y_xpcAccessibleHyperText_h_
|
|
|
|
|
|
|
|
#include "nsIAccessibleText.h"
|
|
|
|
#include "nsIAccessibleHyperText.h"
|
|
|
|
#include "nsIAccessibleEditableText.h"
|
|
|
|
|
2014-10-22 04:49:28 +04:00
|
|
|
#include "HyperTextAccessible.h"
|
|
|
|
#include "xpcAccessibleGeneric.h"
|
|
|
|
|
2013-11-18 17:19:33 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace a11y {
|
|
|
|
|
2014-10-22 04:49:28 +04:00
|
|
|
class xpcAccessibleHyperText : public xpcAccessibleGeneric,
|
|
|
|
public nsIAccessibleText,
|
2013-11-18 17:19:33 +04:00
|
|
|
public nsIAccessibleEditableText,
|
|
|
|
public nsIAccessibleHyperText
|
|
|
|
{
|
|
|
|
public:
|
2014-10-11 01:28:35 +04:00
|
|
|
explicit xpcAccessibleHyperText(Accessible* aIntl) :
|
|
|
|
xpcAccessibleGeneric(aIntl)
|
2014-10-22 04:49:28 +04:00
|
|
|
{
|
2016-01-19 16:43:08 +03:00
|
|
|
if (aIntl->IsHyperText() && aIntl->AsHyperText()->IsTextRole())
|
2014-10-22 04:49:28 +04:00
|
|
|
mSupportedIfaces |= eText;
|
|
|
|
}
|
|
|
|
|
2016-01-19 17:47:52 +03:00
|
|
|
xpcAccessibleHyperText(ProxyAccessible* aProxy, uint32_t aInterfaces) :
|
|
|
|
xpcAccessibleGeneric(aProxy, aInterfaces) { mSupportedIfaces |= eText; }
|
|
|
|
|
2014-10-22 04:49:28 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2013-11-18 17:19:33 +04:00
|
|
|
|
|
|
|
NS_DECL_NSIACCESSIBLETEXT
|
|
|
|
NS_DECL_NSIACCESSIBLEHYPERTEXT
|
|
|
|
NS_DECL_NSIACCESSIBLEEDITABLETEXT
|
|
|
|
|
2014-10-22 04:49:28 +04:00
|
|
|
protected:
|
|
|
|
virtual ~xpcAccessibleHyperText() {}
|
|
|
|
|
2013-11-18 17:19:33 +04:00
|
|
|
private:
|
2016-01-21 08:07:56 +03:00
|
|
|
HyperTextAccessible* Intl()
|
|
|
|
{
|
|
|
|
if (Accessible* acc = mIntl.AsAccessible()) {
|
|
|
|
return acc->AsHyperText();
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
2013-11-18 17:19:33 +04:00
|
|
|
|
2015-01-07 02:35:02 +03:00
|
|
|
xpcAccessibleHyperText(const xpcAccessibleHyperText&) = delete;
|
|
|
|
xpcAccessibleHyperText& operator =(const xpcAccessibleHyperText&) = delete;
|
2013-11-18 17:19:33 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace a11y
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_a11y_xpcAccessibleHyperText_h_
|