Sha256: 18d4cba289bd00eb742bedb67edeb7edbbec25700271d5622d48e75022743c51
Contents?: true
Size: 756 Bytes
Versions: 22
Compression:
Stored size: 756 Bytes
Contents
require 'glimmer/swt/style_constantizable' module Glimmer module SWT # Proxy for org.eclipse.swt.SWT # # Follows the Proxy Design Pattern class SWTProxy include StyleConstantizable class << self JAVA_IMPORT = 'org.eclipse.swt.SWT' java_import JAVA_IMPORT def constant_java_import JAVA_IMPORT end def constant_source_class SWT end def constant_value_none SWT::NONE end def extra_styles EXTRA_STYLES end end EXTRA_STYLES = { NO_RESIZE: self[:shell_trim, :resize!, :max!], NO_SORT: -7, } end end end
Version data entries
22 entries across 22 versions & 1 rubygems