Sha256: 77ff0912c4a6677c4236e4ac3371b4a67feff3c9af6c59e7fdd2b07632c99143
Contents?: true
Size: 729 Bytes
Versions: 15
Compression:
Stored size: 729 Bytes
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /************************************************ rbgtkhbbox.c - $Author: mutoh $ $Date: 2003/02/01 16:46:23 $ Copyright (C) 2002,2003 Ruby-GNOME2 Project Team Copyright (C) 1998-2000 Yukihiro Matsumoto, Daisuke Kanda, Hiroshi Igarashi ************************************************/ #include "global.h" static VALUE hbbox_initialize(self) VALUE self; { RBGTK_INITIALIZE(self, gtk_hbutton_box_new()); return Qnil; } void Init_gtk_hbutton_box() { VALUE gHBBox = G_DEF_CLASS(GTK_TYPE_HBUTTON_BOX, "HButtonBox", mGtk); rb_define_method(gHBBox, "initialize", hbbox_initialize, 0); }
Version data entries
15 entries across 15 versions & 1 rubygems