Module: Tk::CoreExtensions::Integer

Defined in:
lib/ffi-tk/core_extensions.rb

Instance Method Summary collapse

Instance Method Details

#tcl_to_ruby(option, hints) ⇒ Object



133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/ffi-tk/core_extensions.rb', line 133

def tcl_to_ruby(option, hints)
  name = option.sub(/^-/, '').to_sym

  if type = hints[name]
    case type
    when :boolean
      Tk.boolean(self)
    else
      self
    end
  end
end

#to_booleanObject



146
147
148
# File 'lib/ffi-tk/core_extensions.rb', line 146

def to_boolean
  Tk.boolean(self)
end