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
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
* Copyright (C) 2011 Ruby-GNOME2 Project Team
* Copyright (C) 2002-2005 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"
#define RG_TARGET_NAMESPACE cCellRenderer
#define _SELF(s) (RVAL2GTKCELLRENDERER(s))
static VALUE
rg_get_preferred_size(VALUE self, VALUE widget)
{
GtkRequisition minimum_size, natural_size;
gtk_cell_renderer_get_preferred_size(_SELF(self),
RVAL2GTKWIDGET(widget),
&minimum_size, &natural_size);
return rb_ary_new3(2,
GTKREQUISITION2RVAL(&minimum_size),
GTKREQUISITION2RVAL(&natural_size));
}
/* TODO
static VALUE
rg_render(VALUE self, VALUE window, VALUE widget, VALUE background_area, VALUE cell_area, VALUE expose_area, VALUE flags)
{
gtk_cell_renderer_render(_SELF(self), RVAL2GDKWINDOW(window),
RVAL2GTKWIDGET(widget),
RVAL2GDKRECTANGLE(background_area),
RVAL2GDKRECTANGLE(cell_area),
RVAL2GDKRECTANGLE(expose_area),
RVAL2GTKCELLRENDERERSTATE(flags));
return self;
}
*/
static VALUE
rg_activate(VALUE self, VALUE event, VALUE widget, VALUE path, VALUE background_area, VALUE cell_area, VALUE flags)
{
gboolean ret =
gtk_cell_renderer_activate(_SELF(self), (GdkEvent*)RVAL2GEV(event),
RVAL2GTKWIDGET(widget),
RVAL2CSTR(path), RVAL2GDKRECTANGLE(background_area),
RVAL2GDKRECTANGLE(cell_area),
RVAL2GTKCELLRENDERERSTATE(flags));
return CBOOL2RVAL(ret);
}
static VALUE
rg_start_editing(VALUE self, VALUE event, VALUE widget, VALUE path, VALUE background_area, VALUE cell_area, VALUE flags)
{
GtkCellEditable* edit =
gtk_cell_renderer_start_editing(_SELF(self), (GdkEvent*)RVAL2GEV(event),
RVAL2GTKWIDGET(widget),
RVAL2CSTR(path), RVAL2GDKRECTANGLE(background_area),
RVAL2GDKRECTANGLE(cell_area),
RVAL2GTKCELLRENDERERSTATE(flags));
return edit ? GOBJ2RVAL(edit) : Qnil;
}
static VALUE
rg_stop_editing(VALUE self, VALUE canceled)
{
gtk_cell_renderer_stop_editing(_SELF(self), RVAL2CBOOL(canceled));
return self;
}
static VALUE
rg_fixed_size(VALUE self)
{
int width, height;
gtk_cell_renderer_get_fixed_size(_SELF(self), &width, &height);
return rb_ary_new3(2, INT2NUM(width), INT2NUM(height));
}
static VALUE
rg_set_fixed_size(VALUE self, VALUE width, VALUE height)
{
gtk_cell_renderer_set_fixed_size(_SELF(self), NUM2INT(width),
NUM2INT(height));
return self;
}
void
Init_gtk_cellrenderer(VALUE mGtk)
{
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_CELL_RENDERER, "CellRenderer", mGtk);
RG_DEF_METHOD(get_preferred_size, 1);
/* TODO
RG_DEF_METHOD(render, 6);
*/
RG_DEF_METHOD(activate, 6);
RG_DEF_METHOD(start_editing, 6);
RG_DEF_METHOD(stop_editing, 1);
RG_DEF_METHOD(fixed_size, 0);
RG_DEF_METHOD(set_fixed_size, 2);
G_DEF_CLASS(GTK_TYPE_CELL_RENDERER_STATE, "State", RG_TARGET_NAMESPACE);
G_DEF_CLASS(GTK_TYPE_CELL_RENDERER_MODE, "Mode", RG_TARGET_NAMESPACE);
}
|