Blame atk/atkhyperlinkimpl.h

Packit Service ef73c4
/* ATK -  Accessibility Toolkit
Packit Service ef73c4
 * Copyright 2001 Sun Microsystems Inc.
Packit Service ef73c4
 *
Packit Service ef73c4
 * This library is free software; you can redistribute it and/or
Packit Service ef73c4
 * modify it under the terms of the GNU Library General Public
Packit Service ef73c4
 * License as published by the Free Software Foundation; either
Packit Service ef73c4
 * version 2 of the License, or (at your option) any later version.
Packit Service ef73c4
 *
Packit Service ef73c4
 * This library is distributed in the hope that it will be useful,
Packit Service ef73c4
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service ef73c4
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service ef73c4
 * Library General Public License for more details.
Packit Service ef73c4
 *
Packit Service ef73c4
 * You should have received a copy of the GNU Library General Public
Packit Service ef73c4
 * License along with this library; if not, write to the
Packit Service ef73c4
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit Service ef73c4
 * Boston, MA 02111-1307, USA.
Packit Service ef73c4
 */
Packit Service ef73c4
Packit Service ef73c4
#ifndef __ATK_HYPERLINK_IMPL_H__
Packit Service ef73c4
#define __ATK_HYPERLINK_IMPL_H__
Packit Service ef73c4
Packit Service ef73c4
#if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
Packit Service ef73c4
#error "Only <atk/atk.h> can be included directly."
Packit Service ef73c4
#endif
Packit Service ef73c4
Packit Service ef73c4
#include <atk/atkobject.h>
Packit Service ef73c4
#include <atk/atkhyperlink.h>
Packit Service ef73c4
Packit Service ef73c4
G_BEGIN_DECLS
Packit Service ef73c4
Packit Service ef73c4
#define ATK_TYPE_HYPERLINK_IMPL          (atk_hyperlink_impl_get_type ())
Packit Service ef73c4
#define ATK_IS_HYPERLINK_IMPL(obj)       G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_HYPERLINK_IMPL)
Packit Service ef73c4
#define ATK_HYPERLINK_IMPL(obj)             G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_HYPERLINK_IMPL, AtkHyperlinkImpl)
Packit Service ef73c4
#define ATK_HYPERLINK_IMPL_GET_IFACE(obj)   G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_HYPERLINK_IMPL, AtkHyperlinkImplIface)
Packit Service ef73c4
Packit Service ef73c4
#ifndef _TYPEDEF_ATK_HYPERLINK_IMPL_
Packit Service ef73c4
#define _TYPEDEF_ATK_HYPERLINK_IMPL__
Packit Service ef73c4
Packit Service ef73c4
/**
Packit Service ef73c4
 * AtkHyperlinkImpl:
Packit Service ef73c4
 *
Packit Service ef73c4
 * A queryable interface which allows AtkHyperlink instances
Packit Service ef73c4
 * associated with an AtkObject to be obtained.  AtkHyperlinkImpl
Packit Service ef73c4
 * corresponds to AT-SPI's Hyperlink interface, and differs from
Packit Service ef73c4
 * AtkHyperlink in that AtkHyperlink is an object type, rather than an
Packit Service ef73c4
 * interface, and thus cannot be directly queried. FTW
Packit Service ef73c4
 */
Packit Service ef73c4
typedef struct _AtkHyperlinkImpl AtkHyperlinkImpl;
Packit Service ef73c4
#endif
Packit Service ef73c4
typedef struct _AtkHyperlinkImplIface AtkHyperlinkImplIface;
Packit Service ef73c4
Packit Service ef73c4
struct _AtkHyperlinkImplIface
Packit Service ef73c4
{
Packit Service ef73c4
  GTypeInterface parent;
Packit Service ef73c4
    
Packit Service ef73c4
  AtkHyperlink*  (* get_hyperlink) (AtkHyperlinkImpl *impl);
Packit Service ef73c4
};
Packit Service ef73c4
Packit Service ef73c4
ATK_AVAILABLE_IN_ALL
Packit Service ef73c4
GType            atk_hyperlink_impl_get_type (void);
Packit Service ef73c4
Packit Service ef73c4
ATK_AVAILABLE_IN_ALL
Packit Service ef73c4
AtkHyperlink    *atk_hyperlink_impl_get_hyperlink (AtkHyperlinkImpl *impl);
Packit Service ef73c4
Packit Service ef73c4
G_END_DECLS
Packit Service ef73c4
Packit Service ef73c4
#endif /* __ATK_HYPERLINK_IMPL_H__ */