Class: RuGUI::FrameworkAdapters::BaseFrameworkAdapter::BaseMainController
- Inherits:
-
BaseController
- Object
- Base
- BaseController
- RuGUI::FrameworkAdapters::BaseFrameworkAdapter::BaseMainController
- Defined in:
- lib/rugui/framework_adapters/base_framework_adapter.rb
Overview
Adapts the BaseMainController methods specific for the framework.
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#quit ⇒ Object
Exits the application, freeing any resources used by the framework.
-
#refresh ⇒ Object
Refreshes the GUI application, running just one event loop.
-
#run ⇒ Object
Runs the application, starting anything the framework needs.
Methods inherited from BaseController
Methods inherited from Base
Constructor Details
This class inherits a constructor from RuGUI::FrameworkAdapters::BaseFrameworkAdapter::Base
Instance Method Details
#quit ⇒ Object
Exits the application, freeing any resources used by the framework.
33 34 |
# File 'lib/rugui/framework_adapters/base_framework_adapter.rb', line 33 def quit end |
#refresh ⇒ Object
Refreshes the GUI application, running just one event loop.
This method is mostly useful when writing tests. It shouldn’t be used in normal applications.
29 30 |
# File 'lib/rugui/framework_adapters/base_framework_adapter.rb', line 29 def refresh end |
#run ⇒ Object
Runs the application, starting anything the framework needs.
22 23 |
# File 'lib/rugui/framework_adapters/base_framework_adapter.rb', line 22 def run end |