2007-05-24 06:26:54 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:expandtab:shiftwidth=2:tabstop=2:
|
|
|
|
*/
|
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-05-24 06:26:54 -07:00
|
|
|
|
|
|
|
#ifndef _NS_ACCESSIBLE_RELATION_WRAP_H
|
|
|
|
#define _NS_ACCESSIBLE_RELATION_WRAP_H
|
|
|
|
|
2012-05-28 18:18:45 -07:00
|
|
|
#include "Accessible.h"
|
2013-10-19 11:19:50 -07:00
|
|
|
#include "IUnknownImpl.h"
|
2011-08-09 18:44:00 -07:00
|
|
|
|
2013-10-22 16:55:27 -07:00
|
|
|
#include <utility>
|
2011-08-09 18:44:00 -07:00
|
|
|
#include "nsTArray.h"
|
2007-05-24 06:26:54 -07:00
|
|
|
|
2011-08-09 18:44:00 -07:00
|
|
|
#include "AccessibleRelation.h"
|
2007-05-24 06:26:54 -07:00
|
|
|
|
2012-06-10 15:18:31 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace a11y {
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class ia2AccessibleRelation final : public IAccessibleRelation
|
2007-05-24 06:26:54 -07:00
|
|
|
{
|
|
|
|
public:
|
2013-10-19 11:19:50 -07:00
|
|
|
ia2AccessibleRelation(RelationType aType, Relation* aRel);
|
2007-05-24 06:26:54 -07:00
|
|
|
|
2015-02-09 08:57:23 -08:00
|
|
|
ia2AccessibleRelation(RelationType aType,
|
|
|
|
nsTArray<nsRefPtr<Accessible>>&& aTargets) :
|
|
|
|
mType(aType), mTargets(Move(aTargets)) {}
|
|
|
|
|
2007-05-24 06:26:54 -07:00
|
|
|
// IUnknown
|
2013-10-19 11:19:50 -07:00
|
|
|
DECL_IUNKNOWN
|
2007-05-24 06:26:54 -07:00
|
|
|
|
|
|
|
// IAccessibleRelation
|
|
|
|
virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_relationType(
|
|
|
|
/* [retval][out] */ BSTR *relationType);
|
|
|
|
|
|
|
|
virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_localizedRelationType(
|
|
|
|
/* [retval][out] */ BSTR *localizedRelationType);
|
|
|
|
|
|
|
|
virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_nTargets(
|
|
|
|
/* [retval][out] */ long *nTargets);
|
|
|
|
|
|
|
|
virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_target(
|
|
|
|
/* [in] */ long targetIndex,
|
|
|
|
/* [retval][out] */ IUnknown **target);
|
|
|
|
|
|
|
|
virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_targets(
|
|
|
|
/* [in] */ long maxTargets,
|
|
|
|
/* [length_is][size_is][out] */ IUnknown **target,
|
|
|
|
/* [retval][out] */ long *nTargets);
|
|
|
|
|
2011-08-09 18:44:00 -07:00
|
|
|
inline bool HasTargets() const
|
|
|
|
{ return mTargets.Length(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
ia2AccessibleRelation();
|
|
|
|
ia2AccessibleRelation(const ia2AccessibleRelation&);
|
|
|
|
ia2AccessibleRelation& operator = (const ia2AccessibleRelation&);
|
|
|
|
|
2013-10-19 11:19:50 -07:00
|
|
|
RelationType mType;
|
2012-05-28 18:18:45 -07:00
|
|
|
nsTArray<nsRefPtr<Accessible> > mTargets;
|
2007-05-24 06:26:54 -07:00
|
|
|
};
|
|
|
|
|
2013-02-25 23:17:10 -08:00
|
|
|
|
|
|
|
/**
|
2013-10-22 16:55:27 -07:00
|
|
|
* Gecko to IAccessible2 relation types map.
|
2013-02-25 23:17:10 -08:00
|
|
|
*/
|
2013-10-22 16:55:27 -07:00
|
|
|
|
|
|
|
const WCHAR *const IA2_RELATION_NULL = L"";
|
|
|
|
|
|
|
|
#define RELATIONTYPE(geckoType, name, atkType, msaaType, ia2Type) \
|
|
|
|
std::pair<RelationType, const WCHAR *const>(RelationType::geckoType, ia2Type),
|
|
|
|
|
|
|
|
static const std::pair<RelationType, const WCHAR *const> sRelationTypePairs[] = {
|
|
|
|
#include "RelationTypeMap.h"
|
2013-02-25 23:17:10 -08:00
|
|
|
};
|
|
|
|
|
2013-10-22 16:55:27 -07:00
|
|
|
#undef RELATIONTYPE
|
|
|
|
|
2012-06-10 15:18:31 -07:00
|
|
|
} // namespace a11y
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2007-05-24 06:26:54 -07:00
|
|
|
#endif
|
|
|
|
|