class Newt::CompactButton
Public Class Methods
new(p1, p2, p3)
click to toggle source
static VALUE rb_ext_CompactButton_new(VALUE self, VALUE left, VALUE top, VALUE text) { newtComponent co; INIT_GUARD(); co = newtCompactButton(NUM2INT(left), NUM2INT(top), StringValuePtr(text)); return Make_Widget(self, co); }