Method: LibyuiClient::App#progressbar

Defined in:
lib/libyui_client/app.rb

#progressbar(filter) ⇒ Widgets::Progressbar

Initializes new instance of Progressbar with the filter provided. Does not make request to libyui-rest-api.

Examples:

app.progressbar(id: 'id', label: 'label', class: 'YProgressBar')

Parameters:

  • filter (Hash)

    filter to find a widget

Returns:



112
113
114
# File 'lib/libyui_client/app.rb', line 112

def progressbar(filter)
  Widgets::Progressbar.new(@widget_controller, FilterExtractor.new(filter))
end