Class: ScreenOnAction
- Inherits:
-
ScreenAction
- Object
- MacroObject
- Action
- ScreenAction
- ScreenOnAction
- Defined in:
- lib/ruby-macrodroid/actions.rb
Overview
Category: Screen
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ ScreenOnAction
constructor
A new instance of ScreenOnAction.
- #to_s(colour: false, indent: 0) ⇒ Object (also: #to_summary)
Methods inherited from Action
Methods included from ObjectX
#action_to_object, #object_create, #varify
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ ScreenOnAction
Returns a new instance of ScreenOnAction.
2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 |
# File 'lib/ruby-macrodroid/actions.rb', line 2378 def initialize(h={}) = { pie_lock_screen: false, screen_off: true, screen_off_no_lock: false, screen_on_alternative: false } super(.merge h) end |
Instance Method Details
#to_s(colour: false, indent: 0) ⇒ Object Also known as: to_summary
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 |
# File 'lib/ruby-macrodroid/actions.rb', line 2391 def to_s(colour: false, indent: 0) state = @h[:screen_off] ? 'Off' : 'On' state += ' ' + 'No Lock (root only)' if @h[:screen_off_no_lock] #state += ' ' + '(Alternative)' if @h[:screen_on_alternative] @s = 'Screen ' + state super() end |