/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* * Copyright (C) 2011 Ruby-GNOME2 Project Team * Copyright (C) 2004-2006 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 cRadioAction #define _SELF(self) (RVAL2GTKRADIOACTION(self)) static VALUE rg_initialize(int argc, VALUE *argv, VALUE self) { VALUE name, value, options, label, tooltip, stock_id, buffer; rb_scan_args(argc, argv, "21", &name, &value, &options); rbg_scan_options(options, "label", &label, "tooltip", &tooltip, "stock_id", &stock_id, NULL); G_INITIALIZE(self, gtk_radio_action_new(RVAL2CSTR(name), RVAL2CSTR_ACCEPT_NIL(label), RVAL2CSTR_ACCEPT_NIL(tooltip), RVAL2GLIBID_ACCEPT_NIL(stock_id, buffer), NUM2INT(value))); return Qnil; } static VALUE raction_get_group(VALUE self) { return GOBJGSLIST2RVAL(gtk_radio_action_get_group(_SELF(self))); } struct rbgtk_rval2gtkradioactiongslist_args { VALUE ary; long n; GSList *result; }; static VALUE rbgtk_rval2gtkradioactiongslist_body(VALUE value) { long i; struct rbgtk_rval2gtkradioactiongslist_args *args = (struct rbgtk_rval2gtkradioactiongslist_args *)value; for (i = 0; i < args->n; i++) args->result = g_slist_append(args->result, RVAL2GTKRADIOACTION(RARRAY_PTR(args->ary)[i])); return Qnil; } static G_GNUC_NORETURN VALUE rbgtk_rval2gtkradioactiongslist_rescue(VALUE value) { g_slist_free(((struct rbgtk_rval2gtkradioactiongslist_args *)value)->result); rb_exc_raise(rb_errinfo()); } static GSList * rbgtk_rval2gtkradioactiongslist(VALUE value) { struct rbgtk_rval2gtkradioactiongslist_args args; args.ary = rb_ary_to_ary(value); args.n = RARRAY_LEN(args.ary); args.result = NULL; rb_rescue(rbgtk_rval2gtkradioactiongslist_body, (VALUE)&args, rbgtk_rval2gtkradioactiongslist_rescue, (VALUE)&args); return args.result; } #define RVAL2GTKRADIOACTIONGSLIST(value) rbgtk_rval2gtkradioactiongslist(value) static VALUE raction_set_group(VALUE self, VALUE rbgroup) { GtkRadioAction *action = _SELF(self); /* TODO: This might leak. Use gtk_radio_action_join_group() in 3.0. */ if (TYPE(rbgroup) == T_ARRAY) gtk_radio_action_set_group(action, RVAL2GTKRADIOACTIONGSLIST(rbgroup)); else if (NIL_P(rbgroup)) gtk_radio_action_set_group(action, NULL); else gtk_radio_action_set_group(action, gtk_radio_action_get_group(RVAL2GTKRADIOACTION(rbgroup))); return self; } void Init_gtk_radio_action(VALUE mGtk) { VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_RADIO_ACTION, "RadioAction", mGtk); RG_DEF_METHOD(initialize, -1); G_REPLACE_GET_PROPERTY(RG_TARGET_NAMESPACE, "group", raction_get_group, 0); G_REPLACE_SET_PROPERTY(RG_TARGET_NAMESPACE, "group", raction_set_group, 1); }