Sha256: 3f754ef0a241ebfca73a8906e13a74eb9b88f34f493601eb14194ed925c35f77
Contents?: true
Size: 720 Bytes
Versions: 12
Compression:
Stored size: 720 Bytes
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /************************************************ rbgtkcellrendererprogress.c - $Author: mutoh $ $Date: 2004/12/27 16:32:56 $ Copyright (C) 2004 Darren Willis ************************************************/ #include "global.h" #if GTK_CHECK_VERSION(2,6,0) static VALUE crprogress_initialize(VALUE self) { RBGTK_INITIALIZE(self, gtk_cell_renderer_progress_new()); return Qnil; } #endif void Init_gtk_cellrendererprogress() { #if GTK_CHECK_VERSION(2,6,0) VALUE renderer = G_DEF_CLASS(GTK_TYPE_CELL_RENDERER_PROGRESS, "CellRendererProgress", mGtk); rb_define_method(renderer, "initialize", crprogress_initialize, 0); #endif }
Version data entries
12 entries across 12 versions & 1 rubygems