Sha256: 142f75e57f10768f041eec0b3c9a469a3e64f7696ed0fef275f96abc92600dc2
Contents?: true
Size: 1.2 KB
Versions: 8
Compression:
Stored size: 1.2 KB
Contents
# Copyright (C) 2014 Ruby-GNOME2 Project Team # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA module Gtk class SpinButton alias_method :initialize_raw, :initialize def initialize(arg0, arg1=nil, arg2=nil) if arg0.is_a?(Gtk::Adjustment) adjustment = arg0 climb_rate = arg1 || 0.0 digits = arg2 || 0 initialize_raw(adjustment, climb_rate, digits) else min = arg0 max = arg1 step = arg2 initialize_new_with_range(min, max, step) end end end end
Version data entries
8 entries across 8 versions & 1 rubygems