Sha256: f2763aacfd9fc614c12e87815ee93a15b686fdc9a2905180c4595c59a107c39d
Contents?: true
Size: 716 Bytes
Versions: 42
Compression:
Stored size: 716 Bytes
Contents
module Vedeu # The Buffer object represents the states of display for an # interface. The states are 'front', 'back' and 'previous'. # # [Back] -> [Front] -> [Previous] # # The content on the screen, or last output will always be the # 'Front' buffer. Content due to be displayed on next refresh will # come from the 'Back' buffer when available, otherwise from the # current 'Front' buffer. When new content is copied to the 'Front' # buffer, the current 'Front' buffer is also copied to the # 'Previous' buffer. # module Buffers end # Buffers end # Vedeu require 'vedeu/buffers/buffer' require 'vedeu/buffers/null' require 'vedeu/buffers/repository' require 'vedeu/buffers/refresh'
Version data entries
42 entries across 42 versions & 1 rubygems