1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
* Copyright (C) 2011 Ruby-GNOME2 Project Team
* Copyright (C) 2002-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 "rbgtk3private.h"
static GtkAllocation *
gtk_allocation_copy(const GtkAllocation *alloc)
{
GtkAllocation *result = g_new (GtkAllocation, 1);
*result = *alloc;
return result;
}
GType
gtk_allocation_get_type(void)
{
static GType our_type = 0;
if (our_type == 0)
our_type = g_boxed_type_register_static ("GtkAllocation",
(GBoxedCopyFunc)gtk_allocation_copy,
(GBoxedFreeFunc)g_free);
return our_type;
}
#define RG_TARGET_NAMESPACE cAllocation
#define _SELF(r) (RVAL2GTKALLOCATION(r))
static VALUE
rg_initialize(VALUE self, VALUE x, VALUE y, VALUE width, VALUE height)
{
GtkAllocation allocation;
allocation.x = NUM2INT(x);
allocation.y = NUM2INT(y);
allocation.width = NUM2INT(width);
allocation.height = NUM2INT(height);
G_INITIALIZE(self, g_boxed_copy(GTK_TYPE_ALLOCATION, &allocation));
return Qnil;
}
static VALUE
rg_intersect(VALUE self, VALUE other)
{
GtkAllocation dest;
gboolean ret = gdk_rectangle_intersect(_SELF(self), _SELF(other), &dest);
return ret ? GTKALLOCATION2RVAL(&dest) : Qnil;
}
static VALUE
rg_union(VALUE self, VALUE other)
{
GtkAllocation dest;
gdk_rectangle_union(_SELF(self), _SELF(other), &dest);
return GTKALLOCATION2RVAL(&dest);
}
/* 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)
{
GtkAllocation* a = _SELF(self);
return rb_ary_new3(4, INT2FIX(a->x), INT2FIX(a->y),
INT2FIX(a->width), INT2FIX(a->height));
}
static VALUE
rg_to_rect(VALUE self)
{
return GDKRECTANGLE2RVAL(_SELF(self));
}
void
Init_gtk_allocation(VALUE mGtk)
{
VALUE RG_TARGET_NAMESPACE;
RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_ALLOCATION, "Allocation", mGtk);
RG_DEF_METHOD(initialize, 4);
RG_DEF_METHOD(intersect, 1);
RG_DEF_ALIAS("&", "intersect");
RG_DEF_METHOD(union, 1);
RG_DEF_ALIAS("|", "union");
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);
RG_DEF_METHOD(to_rect, 0);
}
|