Sha256: 4d9b090f237b07cd9548b65b17cef1d6d4779b6a1572eb1a5e63fb9f0d1830ac
Contents?: true
Size: 839 Bytes
Versions: 15
Compression:
Stored size: 839 Bytes
Contents
# frozen_string_literal: true 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/empty' require 'vedeu/buffers/view' require 'vedeu/buffers/buffer' require 'vedeu/buffers/null' require 'vedeu/buffers/repository' require 'vedeu/buffers/refresh' require 'vedeu/buffers/terminal'
Version data entries
15 entries across 15 versions & 1 rubygems