Sha256: 88292a815e220d3e12431f114c73a30d145365b7157b21c01517148ecb77b069
Contents?: true
Size: 526 Bytes
Versions: 10
Compression:
Stored size: 526 Bytes
Contents
require 'clevic/swing/delegate' module Clevic class TextDelegate < Delegate # TODO check that VK_ENTER stops editing def init_component( cell_editor ) editor.text = edit_value editor.select_all end def editor @editor ||= javax.swing.JTextField.new.tap do |e| e.horizontal_alignment = field.swing_alignment end end def value editor.text end def minimal_edit editor.select_all end def needs_pre_selection? true end end end
Version data entries
10 entries across 10 versions & 1 rubygems