Class: OpenHAB::DSL::Sitemaps::ButtonBuilder
- Inherits:
-
WidgetBuilder
- Object
- WidgetBuilder
- OpenHAB::DSL::Sitemaps::ButtonBuilder
- Defined in:
- lib/openhab/dsl/sitemaps/builder.rb
Overview
Builds a ‘Button` element
This element can only exist within a ‘Buttongrid` element.
Instance Attribute Summary collapse
-
#click ⇒ String, Command
The command to send when the button is pressed.
-
#column ⇒ Integer
The column in which the button is placed.
-
#release ⇒ String, ...
The command to send when the button is released.
-
#row ⇒ Integer
The row in which the button is placed.
-
#stateless ⇒ true, ...
writeonly
Whether the button is stateless.
Attributes inherited from WidgetBuilder
#icon, #icon_colors, #item, #label, #label_colors, #static_icon, #value_colors, #visibilities
Instance Method Summary collapse
-
#stateless? ⇒ true, ...
Whether the button is stateless.
Methods inherited from WidgetBuilder
#icon_color, #label_color, #value_color, #visibility
Methods included from Core::EntityLookup
#items, #method_missing, #things
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class OpenHAB::Core::EntityLookup
Instance Attribute Details
#click ⇒ String, Command
The command to send when the button is pressed
753 754 755 |
# File 'lib/openhab/dsl/sitemaps/builder.rb', line 753 def click @click end |
#column ⇒ Integer
The column in which the button is placed
749 750 751 |
# File 'lib/openhab/dsl/sitemaps/builder.rb', line 749 def column @column end |
#release ⇒ String, ...
The command to send when the button is released
757 758 759 |
# File 'lib/openhab/dsl/sitemaps/builder.rb', line 757 def release @release end |
#row ⇒ Integer
The row in which the button is placed
745 746 747 |
# File 'lib/openhab/dsl/sitemaps/builder.rb', line 745 def row @row end |
#stateless=(value) ⇒ true, ... (writeonly)
Whether the button is stateless
761 762 763 |
# File 'lib/openhab/dsl/sitemaps/builder.rb', line 761 def stateless=(value) @stateless = value end |
Instance Method Details
#stateless? ⇒ true, ...
Whether the button is stateless
796 797 798 |
# File 'lib/openhab/dsl/sitemaps/builder.rb', line 796 def stateless? @stateless end |