Sha256: 064d1cee31f2b2789155776c26d09a47c723e04aef206cad830b5b5c285a3600

Contents?: true

Size: 1.9 KB

Versions: 93

Compression:

Stored size: 1.9 KB

Contents

/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
 *  Copyright (C) 2011  Ruby-GNOME2 Project Team
 *  Copyright (C) 2003,2004 Masao Mutoh
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *  MA  02110-1301  USA
 */

#include "rbatkprivate.h"

#define RG_TARGET_NAMESPACE cHyperlink
#define _SELF(s) (RVAL2ATKHYPERLINK(s))

static VALUE
rg_get_uri(VALUE self, VALUE i)
{
    return CSTR2RVAL(atk_hyperlink_get_uri(_SELF(self), NUM2INT(i)));
}

static VALUE
rg_get_object(VALUE self, VALUE i)
{
    return GOBJ2RVAL(atk_hyperlink_get_object(_SELF(self), NUM2INT(i)));
}

static VALUE
rg_valid_p(VALUE self)
{
    return CBOOL2RVAL(atk_hyperlink_is_valid(_SELF(self)));
}

#ifdef HAVE_ATK_HYPERLINK_IS_INLINE
static VALUE
rg_inline_p(VALUE self)
{
    return CBOOL2RVAL(atk_hyperlink_is_inline(_SELF(self)));
}
#endif

static VALUE
rg_n_anchors(VALUE self)
{
    return INT2NUM(atk_hyperlink_get_n_anchors(_SELF(self)));
}

void
Init_atk_hyperlink(VALUE mAtk)
{
    VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(ATK_TYPE_HYPERLINK, "Hyperlink", mAtk);

    RG_DEF_METHOD(get_uri, 1);
    RG_DEF_METHOD(get_object, 1);
    RG_DEF_METHOD_P(valid, 0);
#ifdef HAVE_ATK_HYPERLINK_IS_INLINE
    RG_DEF_METHOD_P(inline, 0);
#endif
    RG_DEF_METHOD(n_anchors, 0);
}

Version data entries

93 entries across 93 versions & 1 rubygems

Version Path
atk-3.1.1-x64-mingw32 ext/atk/rbatkhyperlink.c
atk-3.1.1-x86-mingw32 ext/atk/rbatkhyperlink.c
atk-3.1.1 ext/atk/rbatkhyperlink.c
atk-3.1.0-x64-mingw32 ext/atk/rbatkhyperlink.c
atk-3.1.0-x86-mingw32 ext/atk/rbatkhyperlink.c
atk-3.1.0 ext/atk/rbatkhyperlink.c
atk-3.0.9-x64-mingw32 ext/atk/rbatkhyperlink.c
atk-3.0.9-x86-mingw32 ext/atk/rbatkhyperlink.c
atk-3.0.9 ext/atk/rbatkhyperlink.c
atk-3.0.8-x86-mingw32 ext/atk/rbatkhyperlink.c
atk-3.0.8-x64-mingw32 ext/atk/rbatkhyperlink.c
atk-3.0.8 ext/atk/rbatkhyperlink.c
atk-3.0.7-x64-mingw32 ext/atk/rbatkhyperlink.c
atk-3.0.7-x86-mingw32 ext/atk/rbatkhyperlink.c
atk-3.0.7 ext/atk/rbatkhyperlink.c
atk-3.0.6-x64-mingw32 ext/atk/rbatkhyperlink.c
atk-3.0.6-x86-mingw32 ext/atk/rbatkhyperlink.c
atk-3.0.6 ext/atk/rbatkhyperlink.c
atk-3.0.5-x86-mingw32 ext/atk/rbatkhyperlink.c
atk-3.0.5-x64-mingw32 ext/atk/rbatkhyperlink.c