This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
DUT2Curling/lib/ruby-gtk2-2.0.2/atk/ext/atk/rbatkrelation.c

103 lines
2.7 KiB
C

/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
* Copyright (C) 2011 Ruby-GNOME2 Project Team
* Copyright (C) 2003 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 cRelation
#define _SELF(s) (RVAL2ATKRELATION(s))
static VALUE
rg_s_type_register(G_GNUC_UNUSED VALUE self, VALUE name)
{
return ATKRELATIONTYPE2RVAL(atk_relation_type_register(RVAL2CSTR(name)));
}
struct rval2atkobjects_args {
VALUE ary;
long n;
AtkObject **result;
};
static VALUE
rval2atkobjects_body(VALUE value)
{
long i;
struct rval2atkobjects_args *args = (struct rval2atkobjects_args *)value;
for (i = 0; i < args->n; i++)
args->result[i] = RVAL2ATKOBJECT(RARRAY_PTR(args->ary)[i]);
return Qnil;
}
static G_GNUC_NORETURN VALUE
rval2atkobjects_rescue(VALUE value)
{
g_free(((struct rval2atkobjects_args *)value)->result);
rb_exc_raise(rb_errinfo());
}
static VALUE
rg_initialize(VALUE self, VALUE targets, VALUE rbrelationship)
{
AtkRelationType relationship = RVAL2ATKRELATIONTYPE(rbrelationship);
struct rval2atkobjects_args args;
AtkRelation *relation;
args.ary = rb_ary_to_ary(targets);
args.n = RARRAY_LEN(args.ary);
args.result = g_new(AtkObject *, args.n + 1);
rb_rescue(rval2atkobjects_body, (VALUE)&args,
rval2atkobjects_rescue, (VALUE)&args);
relation = atk_relation_new(args.result, args.n, relationship);
g_free(args.result);
G_INITIALIZE(self, relation);
return Qnil;
}
#if ATK_CHECK_VERSION(1,9,0)
static VALUE
rg_add_target(VALUE self, VALUE obj)
{
atk_relation_add_target(_SELF(self), RVAL2ATKOBJECT(obj));
return self;
}
#endif
void
Init_atk_relation(VALUE mAtk)
{
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(ATK_TYPE_RELATION, "Relation", mAtk);
RG_DEF_SMETHOD(type_register, 1);
RG_DEF_METHOD(initialize, 2);
#if ATK_CHECK_VERSION(1,9,0)
RG_DEF_METHOD(add_target, 1);
#endif
Init_atk_relation_type(RG_TARGET_NAMESPACE);
}