Sha256: 88d033b58f915bd798a7d1869f5746181250dfd096e5642afe03519b91070f5d

Contents?: true

Size: 1.88 KB

Versions: 49

Compression:

Stored size: 1.88 KB

Contents

# frozen_string_literal: true

module Cryptum
  # This plugin is used to Switch through Order Plan / Order History
  # Window Panes when the TAB Key is Pressed.
  module Event
    module Pane
      # Supported Method Parameters::
      # Cryptum::Event::Pane.switch(
      # )
      public_class_method def self.switch(opts = {})
        terminal_win = opts[:terminal_win]
        event_history = opts[:event_history]

        terminal_win.key_press_event.key_tab = false

        if event_history.order_plan_win_active
          event_history.order_plan_win_active = false
          event_history.order_execute_win_active = true
        else
          event_history.order_plan_win_active = true
          event_history.order_execute_win_active = false
        end
      rescue StandardError => e
        raise e
      end

      # Supported Method Parameters::
      # Cryptum::Event::Pane.toggle_details(
      # )
      public_class_method def self.toggle_details(opts = {})
        terminal_win = opts[:terminal_win]
        event_history = opts[:event_history]

        terminal_win.key_press_event.key_enter = false

        if event_history.order_plan_win_active
          if event_history.order_plan_details_win_active
            event_history.order_plan_details_win_active = false
          else
            event_history.order_plan_details_win_active = true
          end
        elsif event_history.order_execute_win_active
          if event_history.order_execute_details_win_active
            event_history.order_execute_details_win_active = false
          else
            event_history.order_execute_details_win_active = true
          end
        end
      rescue StandardError => e
        raise e
      end

      # Display Usage for this Module
      public_class_method def self.help
        puts "USAGE:
          #{self}.switch()
          #{self}.toggle_details()
        "
      end
    end
  end
end

Version data entries

49 entries across 49 versions & 1 rubygems

Version Path
cryptum-0.0.319 lib/cryptum/event/pane.rb
cryptum-0.0.318 lib/cryptum/event/pane.rb
cryptum-0.0.317 lib/cryptum/event/pane.rb
cryptum-0.0.316 lib/cryptum/event/pane.rb
cryptum-0.0.315 lib/cryptum/event/pane.rb
cryptum-0.0.314 lib/cryptum/event/pane.rb
cryptum-0.0.313 lib/cryptum/event/pane.rb
cryptum-0.0.312 lib/cryptum/event/pane.rb
cryptum-0.0.311 lib/cryptum/event/pane.rb
cryptum-0.0.310 lib/cryptum/event/pane.rb
cryptum-0.0.309 lib/cryptum/event/pane.rb
cryptum-0.0.308 lib/cryptum/event/pane.rb
cryptum-0.0.307 lib/cryptum/event/pane.rb
cryptum-0.0.306 lib/cryptum/event/pane.rb
cryptum-0.0.305 lib/cryptum/event/pane.rb
cryptum-0.0.304 lib/cryptum/event/pane.rb
cryptum-0.0.303 lib/cryptum/event/pane.rb
cryptum-0.0.302 lib/cryptum/event/pane.rb
cryptum-0.0.301 lib/cryptum/event/pane.rb
cryptum-0.0.300 lib/cryptum/event/pane.rb