Sha256: c64e314d3851f1984a31d738e08072c9a5f8f19a2ded84bdedbe928c79a9746c
Contents?: true
Size: 795 Bytes
Versions: 1
Compression:
Stored size: 795 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' require 'vedeu/buffers/virtual_buffer' require 'vedeu/buffers/virtual_buffers'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.6.9 | lib/vedeu/buffers/all.rb |