2011-04-27 17:42:27 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2011-05-28 02:37:24 +04:00
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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/. */
|
2003-05-06 06:23:50 +04:00
|
|
|
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsMaiHyperlink.h"
|
2015-04-23 01:31:19 +03:00
|
|
|
#include "mozilla/a11y/ProxyAccessible.h"
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2012-11-18 06:01:44 +04:00
|
|
|
using namespace mozilla::a11y;
|
|
|
|
|
2003-05-06 06:23:50 +04:00
|
|
|
/* MaiAtkHyperlink */
|
|
|
|
|
|
|
|
#define MAI_TYPE_ATK_HYPERLINK (mai_atk_hyperlink_get_type ())
|
|
|
|
#define MAI_ATK_HYPERLINK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj),\
|
|
|
|
MAI_TYPE_ATK_HYPERLINK, MaiAtkHyperlink))
|
|
|
|
#define MAI_ATK_HYPERLINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass),\
|
|
|
|
MAI_TYPE_ATK_HYPERLINK, MaiAtkHyperlinkClass))
|
|
|
|
#define MAI_IS_ATK_HYPERLINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj),\
|
|
|
|
MAI_TYPE_ATK_HYPERLINK))
|
|
|
|
#define MAI_IS_ATK_HYPERLINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),\
|
|
|
|
MAI_TYPE_ATK_HYPERLINK))
|
|
|
|
#define MAI_ATK_HYPERLINK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj),\
|
|
|
|
MAI_TYPE_ATK_HYPERLINK, MaiAtkHyperlinkClass))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This MaiAtkHyperlink is a thin wrapper, in the MAI namespace,
|
|
|
|
* for AtkHyperlink
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct MaiAtkHyperlink
|
|
|
|
{
|
|
|
|
AtkHyperlink parent;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The MaiHyperlink whose properties and features are exported via this
|
|
|
|
* hyperlink instance.
|
|
|
|
*/
|
|
|
|
MaiHyperlink *maiHyperlink;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MaiAtkHyperlinkClass
|
|
|
|
{
|
|
|
|
AtkHyperlinkClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType mai_atk_hyperlink_get_type(void);
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* callbacks for AtkHyperlink */
|
|
|
|
static void classInitCB(AtkHyperlinkClass *aClass);
|
|
|
|
static void finalizeCB(GObject *aObj);
|
|
|
|
|
|
|
|
/* callbacks for AtkHyperlink virtual functions */
|
|
|
|
static gchar *getUriCB(AtkHyperlink *aLink, gint aLinkIndex);
|
|
|
|
static AtkObject *getObjectCB(AtkHyperlink *aLink, gint aLinkIndex);
|
|
|
|
static gint getEndIndexCB(AtkHyperlink *aLink);
|
|
|
|
static gint getStartIndexCB(AtkHyperlink *aLink);
|
|
|
|
static gboolean isValidCB(AtkHyperlink *aLink);
|
|
|
|
static gint getAnchorCountCB(AtkHyperlink *aLink);
|
|
|
|
G_END_DECLS
|
|
|
|
|
2013-04-03 04:33:43 +04:00
|
|
|
static gpointer parent_class = nullptr;
|
2015-04-23 01:31:19 +03:00
|
|
|
|
|
|
|
static MaiHyperlink*
|
|
|
|
GetMaiHyperlink(AtkHyperlink *aHyperlink)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(MAI_IS_ATK_HYPERLINK(aHyperlink), nullptr);
|
|
|
|
MaiHyperlink * maiHyperlink =
|
|
|
|
MAI_ATK_HYPERLINK(aHyperlink)->maiHyperlink;
|
|
|
|
NS_ENSURE_TRUE(maiHyperlink != nullptr, nullptr);
|
|
|
|
NS_ENSURE_TRUE(maiHyperlink->GetAtkHyperlink() == aHyperlink, nullptr);
|
|
|
|
return maiHyperlink;
|
|
|
|
}
|
2003-05-06 06:23:50 +04:00
|
|
|
|
|
|
|
GType
|
|
|
|
mai_atk_hyperlink_get_type(void)
|
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
|
|
|
|
if (!type) {
|
|
|
|
static const GTypeInfo tinfo = {
|
|
|
|
sizeof(MaiAtkHyperlinkClass),
|
2013-04-03 04:33:43 +04:00
|
|
|
(GBaseInitFunc)nullptr,
|
|
|
|
(GBaseFinalizeFunc)nullptr,
|
2003-05-06 06:23:50 +04:00
|
|
|
(GClassInitFunc)classInitCB,
|
2013-04-03 04:33:43 +04:00
|
|
|
(GClassFinalizeFunc)nullptr,
|
|
|
|
nullptr, /* class data */
|
2003-05-06 06:23:50 +04:00
|
|
|
sizeof(MaiAtkHyperlink), /* instance size */
|
|
|
|
0, /* nb preallocs */
|
2013-04-03 04:33:43 +04:00
|
|
|
(GInstanceInitFunc)nullptr,
|
|
|
|
nullptr /* value table */
|
2003-05-06 06:23:50 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
type = g_type_register_static(ATK_TYPE_HYPERLINK,
|
|
|
|
"MaiAtkHyperlink",
|
|
|
|
&tinfo, GTypeFlags(0));
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
2016-01-19 15:20:23 +03:00
|
|
|
MaiHyperlink::MaiHyperlink(AccessibleOrProxy aHyperLink) :
|
2010-09-01 07:26:13 +04:00
|
|
|
mHyperlink(aHyperLink),
|
2012-07-30 18:20:58 +04:00
|
|
|
mMaiAtkHyperlink(nullptr)
|
2003-05-06 06:23:50 +04:00
|
|
|
{
|
|
|
|
mMaiAtkHyperlink =
|
2007-07-08 11:08:04 +04:00
|
|
|
reinterpret_cast<AtkHyperlink *>
|
2013-04-03 04:33:43 +04:00
|
|
|
(g_object_new(mai_atk_hyperlink_get_type(), nullptr));
|
2003-05-06 06:23:50 +04:00
|
|
|
NS_ASSERTION(mMaiAtkHyperlink, "OUT OF MEMORY");
|
2015-04-07 22:56:28 +03:00
|
|
|
if (!mMaiAtkHyperlink)
|
|
|
|
return;
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2015-04-07 22:39:39 +03:00
|
|
|
MAI_ATK_HYPERLINK(mMaiAtkHyperlink)->maiHyperlink = this;
|
2015-04-07 22:56:28 +03:00
|
|
|
}
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2015-04-07 22:56:28 +03:00
|
|
|
MaiHyperlink::~MaiHyperlink()
|
|
|
|
{
|
|
|
|
if (mMaiAtkHyperlink) {
|
|
|
|
MAI_ATK_HYPERLINK(mMaiAtkHyperlink)->maiHyperlink = nullptr;
|
|
|
|
g_object_unref(mMaiAtkHyperlink);
|
|
|
|
}
|
2003-05-06 06:23:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* static functions for ATK callbacks */
|
|
|
|
|
|
|
|
void
|
|
|
|
classInitCB(AtkHyperlinkClass *aClass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS(aClass);
|
|
|
|
|
|
|
|
parent_class = g_type_class_peek_parent(aClass);
|
|
|
|
|
|
|
|
aClass->get_uri = getUriCB;
|
|
|
|
aClass->get_object = getObjectCB;
|
|
|
|
aClass->get_end_index = getEndIndexCB;
|
|
|
|
aClass->get_start_index = getStartIndexCB;
|
|
|
|
aClass->is_valid = isValidCB;
|
|
|
|
aClass->get_n_anchors = getAnchorCountCB;
|
|
|
|
|
|
|
|
gobject_class->finalize = finalizeCB;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
finalizeCB(GObject *aObj)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(MAI_IS_ATK_HYPERLINK(aObj), "Invalid MaiAtkHyperlink");
|
|
|
|
if (!MAI_IS_ATK_HYPERLINK(aObj))
|
|
|
|
return;
|
|
|
|
|
2007-05-29 10:41:14 +04:00
|
|
|
MaiAtkHyperlink *maiAtkHyperlink = MAI_ATK_HYPERLINK(aObj);
|
2012-07-30 18:20:58 +04:00
|
|
|
maiAtkHyperlink->maiHyperlink = nullptr;
|
2003-05-06 06:23:50 +04:00
|
|
|
|
|
|
|
/* call parent finalize function */
|
|
|
|
if (G_OBJECT_CLASS (parent_class)->finalize)
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize(aObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar *
|
|
|
|
getUriCB(AtkHyperlink *aLink, gint aLinkIndex)
|
|
|
|
{
|
2015-04-23 01:31:19 +03:00
|
|
|
MaiHyperlink* maiLink = GetMaiHyperlink(aLink);
|
|
|
|
if (!maiLink)
|
|
|
|
return nullptr;
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2015-04-23 01:31:19 +03:00
|
|
|
nsAutoCString cautoStr;
|
|
|
|
if (Accessible* hyperlink = maiLink->GetAccHyperlink()) {
|
2011-06-14 07:56:42 +04:00
|
|
|
nsCOMPtr<nsIURI> uri = hyperlink->AnchorURIAt(aLinkIndex);
|
2010-09-01 07:26:13 +04:00
|
|
|
if (!uri)
|
2015-04-23 01:31:19 +03:00
|
|
|
return nullptr;
|
2010-09-01 07:26:13 +04:00
|
|
|
|
|
|
|
nsresult rv = uri->GetSpec(cautoStr);
|
2012-07-30 18:20:58 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2008-03-30 07:36:12 +04:00
|
|
|
return g_strdup(cautoStr.get());
|
2015-04-23 01:31:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool valid;
|
|
|
|
maiLink->Proxy()->AnchorURIAt(aLinkIndex, cautoStr, &valid);
|
|
|
|
if (!valid)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return g_strdup(cautoStr.get());
|
2003-05-06 06:23:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
AtkObject *
|
|
|
|
getObjectCB(AtkHyperlink *aLink, gint aLinkIndex)
|
|
|
|
{
|
2015-04-23 01:31:19 +03:00
|
|
|
MaiHyperlink* maiLink = GetMaiHyperlink(aLink);
|
2016-08-31 14:55:37 +03:00
|
|
|
if (!maiLink) {
|
2015-04-23 01:31:19 +03:00
|
|
|
return nullptr;
|
2016-08-31 14:55:37 +03:00
|
|
|
}
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2016-08-31 14:55:37 +03:00
|
|
|
if (Accessible* hyperlink = maiLink->GetAccHyperlink()) {
|
|
|
|
Accessible* anchor = hyperlink->AnchorAt(aLinkIndex);
|
|
|
|
NS_ENSURE_TRUE(anchor, nullptr);
|
2007-06-04 13:39:15 +04:00
|
|
|
|
2016-08-31 14:55:37 +03:00
|
|
|
return AccessibleWrap::GetAtkObject(anchor);
|
|
|
|
}
|
2015-04-23 01:31:19 +03:00
|
|
|
|
2016-08-31 14:55:37 +03:00
|
|
|
ProxyAccessible* anchor = maiLink->Proxy()->AnchorAt(aLinkIndex);
|
|
|
|
return anchor ? GetWrapperFor(anchor) : nullptr;
|
2003-05-06 06:23:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getEndIndexCB(AtkHyperlink *aLink)
|
|
|
|
{
|
2015-04-23 01:31:19 +03:00
|
|
|
MaiHyperlink* maiLink = GetMaiHyperlink(aLink);
|
|
|
|
if (!maiLink)
|
|
|
|
return false;
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2015-04-23 01:31:19 +03:00
|
|
|
if (Accessible* hyperlink = maiLink->GetAccHyperlink())
|
2010-09-01 07:26:13 +04:00
|
|
|
return static_cast<gint>(hyperlink->EndOffset());
|
2015-04-23 01:31:19 +03:00
|
|
|
|
|
|
|
bool valid = false;
|
|
|
|
uint32_t endIdx = maiLink->Proxy()->EndOffset(&valid);
|
|
|
|
return valid ? static_cast<gint>(endIdx) : -1;
|
2003-05-06 06:23:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getStartIndexCB(AtkHyperlink *aLink)
|
|
|
|
{
|
2015-04-23 01:31:19 +03:00
|
|
|
MaiHyperlink* maiLink = GetMaiHyperlink(aLink);
|
2015-05-12 21:22:02 +03:00
|
|
|
if (!maiLink)
|
2015-04-23 01:31:19 +03:00
|
|
|
return -1;
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2015-04-23 01:31:19 +03:00
|
|
|
if (Accessible* hyperlink = maiLink->GetAccHyperlink())
|
2010-09-01 07:26:13 +04:00
|
|
|
return static_cast<gint>(hyperlink->StartOffset());
|
2015-04-23 01:31:19 +03:00
|
|
|
|
|
|
|
bool valid = false;
|
|
|
|
uint32_t startIdx = maiLink->Proxy()->StartOffset(&valid);
|
|
|
|
return valid ? static_cast<gint>(startIdx) : -1;
|
2003-05-06 06:23:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
isValidCB(AtkHyperlink *aLink)
|
|
|
|
{
|
2015-04-23 01:31:19 +03:00
|
|
|
MaiHyperlink* maiLink = GetMaiHyperlink(aLink);
|
|
|
|
if (!maiLink)
|
|
|
|
return false;
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2015-04-23 01:31:19 +03:00
|
|
|
if (Accessible* hyperlink = maiLink->GetAccHyperlink())
|
2011-06-22 09:43:25 +04:00
|
|
|
return static_cast<gboolean>(hyperlink->IsLinkValid());
|
2015-04-23 01:31:19 +03:00
|
|
|
|
|
|
|
return static_cast<gboolean>(maiLink->Proxy()->IsLinkValid());
|
2003-05-06 06:23:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getAnchorCountCB(AtkHyperlink *aLink)
|
|
|
|
{
|
2015-04-23 01:31:19 +03:00
|
|
|
MaiHyperlink* maiLink = GetMaiHyperlink(aLink);
|
|
|
|
if (!maiLink)
|
|
|
|
return -1;
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2015-04-23 01:31:19 +03:00
|
|
|
if (Accessible* hyperlink = maiLink->GetAccHyperlink())
|
2010-09-01 07:26:13 +04:00
|
|
|
return static_cast<gint>(hyperlink->AnchorCount());
|
2003-05-06 06:23:50 +04:00
|
|
|
|
2015-04-23 01:31:19 +03:00
|
|
|
bool valid = false;
|
|
|
|
uint32_t anchorCount = maiLink->Proxy()->AnchorCount(&valid);
|
|
|
|
return valid ? static_cast<gint>(anchorCount) : -1;
|
2003-05-06 06:23:50 +04:00
|
|
|
}
|