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/rbatktextrectangle.c

150 lines
3.6 KiB
C

/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
* Copyright (C) 2011 Ruby-GNOME2 Project Team
* Copyright (C) 2004 Masao Mutoh
* Copyright (C) 2002,2003 Masao Mutoh
* Copyright (C) 1998-2000 Yukihiro Matsumoto,
* Daisuke Kanda,
* Hiroshi Igarashi
*
* 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"
#ifdef HAVE_ATK_TEXT_GET_BOUNDED_RANGES
#define RG_TARGET_NAMESPACE cTextRectangle
#define _SELF(r) (RVAL2ATKTEXTRECTANGLE(r))
/**********************************/
static AtkTextRectangle*
atk_text_rectangle_copy(const AtkTextRectangle* val)
{
AtkTextRectangle* new_val;
g_return_val_if_fail (val != NULL, NULL);
new_val = g_new(AtkTextRectangle, 1);
*new_val = *val;
return new_val;
}
GType
atk_text_rectangle_get_type(void)
{
static GType our_type = 0;
if (our_type == 0)
our_type = g_boxed_type_register_static ("AtkTextRectangle",
(GBoxedCopyFunc)atk_text_rectangle_copy,
(GBoxedFreeFunc)g_free);
return our_type;
}
/**********************************/
static VALUE
rg_initialize(VALUE self, VALUE x, VALUE y, VALUE width, VALUE height)
{
AtkTextRectangle rectangle;
rectangle.x = NUM2INT(x);
rectangle.y = NUM2INT(y);
rectangle.width = NUM2INT(width);
rectangle.height = NUM2INT(height);
G_INITIALIZE(self, g_boxed_copy(ATK_TYPE_TEXT_RECTANGLE, &rectangle));
return Qnil;
}
/* Struct accessors */
static VALUE
rg_x(VALUE self)
{
return INT2NUM(_SELF(self)->x);
}
static VALUE
rg_y(VALUE self)
{
return INT2NUM(_SELF(self)->y);
}
static VALUE
rg_width(VALUE self)
{
return INT2NUM(_SELF(self)->width);
}
static VALUE
rg_height(VALUE self)
{
return INT2NUM(_SELF(self)->height);
}
static VALUE
rg_set_x(VALUE self, VALUE x)
{
_SELF(self)->x = NUM2INT(x);
return self;
}
static VALUE
rg_set_y(VALUE self, VALUE y)
{
_SELF(self)->y = NUM2INT(y);
return self;
}
static VALUE
rg_set_width(VALUE self, VALUE width)
{
_SELF(self)->width = NUM2INT(width);
return self;
}
static VALUE
rg_set_height(VALUE self, VALUE height)
{
_SELF(self)->height = NUM2INT(height);
return self;
}
static VALUE
rg_to_a(VALUE self)
{
AtkTextRectangle* a = _SELF(self);
return rb_ary_new3(4, INT2FIX(a->x), INT2FIX(a->y),
INT2FIX(a->width), INT2FIX(a->height));
}
#endif
void
Init_atk_text_rectangle(VALUE mAtk)
{
#ifdef HAVE_ATK_TEXT_GET_BOUNDED_RANGES
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(ATK_TYPE_TEXT_RECTANGLE, "TextRectangle", mAtk);
RG_DEF_METHOD(initialize, 4);
RG_DEF_METHOD(x, 0);
RG_DEF_METHOD(y, 0);
RG_DEF_METHOD(width, 0);
RG_DEF_METHOD(height, 0);
RG_DEF_METHOD(set_x, 1);
RG_DEF_METHOD(set_y, 1);
RG_DEF_METHOD(set_width, 1);
RG_DEF_METHOD(set_height, 1);
RG_DEF_METHOD(to_a, 0);
#endif
}