Module: TT::GUI::ControlEvents
- Included in:
- Control
- Defined in:
- TT_Lib2/gui.rb
Overview
Defined Under Namespace
Modules: ControlEventDefinitions
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
27 28 29 30 31 32 33 |
# File 'TT_Lib2/gui.rb', line 27 def self.included( base ) # Hash table of valid events for the class. # > Key: (Symbol) # > Value: (Symbol) base.instance_variable_set( '@control_events', {} ) base.extend( ControlEventDefinitions ) end |