Sha256: cb19a7366364ecdc535c453668cb6f16dac9310bd762655744c5606fc0735549
Contents?: true
Size: 734 Bytes
Versions: 5
Compression:
Stored size: 734 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!] } end end end
Version data entries
5 entries across 5 versions & 1 rubygems