Sha256: dff1e4f4917835cfca08e681d0ac0639e056f7614b05b90e501dc033519f5ca8

Contents?: true

Size: 1.08 KB

Versions: 4

Compression:

Stored size: 1.08 KB

Contents

#!/usr/bin/env ruby

# frozen_string_literal: true

require 'bundler/setup'
require 'vedeu'

# An example application to demonstrate 'Hello World'.
#
# If you have cloned this repository from GitHub, you can run this example:
#
#     ./test/support/examples/hello_world.rb
#
class HelloWorldApp

  Vedeu.bind(:_initialize_) { Vedeu.trigger(:_refresh_) }

  # Be aware that running an application with profiling enabled will affect
  # performance.
  Vedeu.configure do
    debug!
    log '/tmp/vedeu_hello_world.log'
    # profile!
  end

  Vedeu.interface 'messages' do
    background '#000000'
    foreground '#00ff00'
    geometry do
      align(:middle, :centre, 20, 5)
    end
    keymap do
      key('q') { Vedeu.exit }
    end
  end

  Vedeu.renders do
    view 'messages' do
      lines do
        line do
          centre 'Hello World!', width: 20
        end
        line
        line do
          centre "Press 'q' to exit.", width: 20
        end
      end
    end
  end

  def self.start(argv = ARGV)
    Vedeu::Launcher.execute!(argv)
  end

end # HelloWorldApp

HelloWorldApp.start(ARGV)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vedeu-0.8.15 test/support/examples/hello_world.rb
vedeu-0.8.14 test/support/examples/hello_world.rb
vedeu-0.8.13 test/support/examples/hello_world.rb
vedeu-0.8.12 test/support/examples/hello_world.rb