Sha256: bcff2a4d00166c8488ed8b9cf1c218201b7f2ab5375260cc741ed9b39988c1c2

Contents?: true

Size: 1.2 KB

Versions: 178

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?(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

178 entries across 170 versions & 3 rubygems

Version Path
gtk4-4.2.5 lib/gtk4/spin-button.rb
gtk3-4.2.5 lib/gtk3/spin-button.rb
gtk4-4.2.4 lib/gtk4/spin-button.rb
gtk3-4.2.4 lib/gtk3/spin-button.rb
gtk4-4.2.3 lib/gtk4/spin-button.rb
gtk3-4.2.3 lib/gtk3/spin-button.rb
gtk4-4.2.2 lib/gtk4/spin-button.rb
gtk3-4.2.2 lib/gtk3/spin-button.rb
gtk4-4.2.1 lib/gtk4/spin-button.rb
gtk3-4.2.1 lib/gtk3/spin-button.rb
gtk4-4.2.0 lib/gtk4/spin-button.rb
gtk3-4.2.0 lib/gtk3/spin-button.rb
gtk4-4.1.9 lib/gtk4/spin-button.rb
gtk3-4.1.9 lib/gtk3/spin-button.rb
gtk4-4.1.8 lib/gtk4/spin-button.rb
gtk3-4.1.8 lib/gtk3/spin-button.rb
gtk4-4.1.7 lib/gtk4/spin-button.rb
gtk3-4.1.7 lib/gtk3/spin-button.rb
gtk4-4.1.6 lib/gtk4/spin-button.rb
gtk3-4.1.6 lib/gtk3/spin-button.rb