Sha256: 6ba7ce373cc5e53ec879f1da224c04953cd289edf99ece411b56139f5a558626
Contents?: true
Size: 853 Bytes
Versions: 6
Compression:
Stored size: 853 Bytes
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /************************************************ rbgtkhandlebox.c - $Author: ggc $ $Date: 2007/07/13 14:27:09 $ Copyright (C) 2002,2003 Ruby-GNOME2 Project Team Copyright (C) 1998-2000 Yukihiro Matsumoto, Daisuke Kanda, Hiroshi Igarashi ************************************************/ #include "global.h" static VALUE hb_initialize(VALUE self) { RBGTK_INITIALIZE(self, gtk_handle_box_new()); return Qnil; } void Init_gtk_handle_box() { VALUE gHandleBox = G_DEF_CLASS(GTK_TYPE_HANDLE_BOX, "HandleBox", mGtk); rb_define_method(gHandleBox, "initialize", hb_initialize, 0); rb_undef_method(gHandleBox, "shadow"); rb_undef_method(gHandleBox, "shadow="); rb_undef_method(gHandleBox, "set_shadow"); }
Version data entries
6 entries across 6 versions & 1 rubygems