Sha256: ac9131d83b2f271be3c05d945af0b009f4c32da5e39f65df374966e681818535
Contents?: true
Size: 751 Bytes
Versions: 15
Compression:
Stored size: 751 Bytes
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /********************************************************** rbgtkfontselection.c - $Author: mutoh $ $Date: 2003/02/22 18:01:09 $ Copyright (C) 2002,2003 Ruby-GNOME2 Project Team Copyright (C) 2001 Neil Conway <neilconway@rogers.com> **********************************************************/ #include "global.h" static VALUE fs_initialize(self) VALUE self; { RBGTK_INITIALIZE(self, gtk_font_selection_new()); return Qnil; } void Init_gtk_font_selection() { VALUE gFontSelection = G_DEF_CLASS(GTK_TYPE_FONT_SELECTION, "FontSelection", mGtk); rb_define_method(gFontSelection, "initialize", fs_initialize, 0); rb_undef_method(gFontSelection, "font"); }
Version data entries
15 entries across 15 versions & 1 rubygems