Sha256: 64c39ff35c2dbc577b59f93fbc779d47b3462b1f33b799be0c5f32a0ce3f4df7
Contents?: true
Size: 811 Bytes
Versions: 16
Compression:
Stored size: 811 Bytes
Contents
# :stopdoc: # Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # :startdoc: module Wx class BusyInfo # @overload busy(message, parent=nil) # Shows busy info window with message, blocks event handling and calls the given block # passing the BusyInfo instance as argument. # @param [String] message # @param [Wx::Window,nil] parent # @yieldparam [Wx::BusyInfo] bi BusyInfo instance # @overload busy(busy_info) # Shows busy info window according to busy_info settings, blocks event handling and calls the given block # passing the BusyInfo instance as argument. # @param [Wx::BusyInfoFlags] busy_info # @yieldparam [Wx::BusyInfo] bi BusyInfo instance def self.busy(*args) end end end
Version data entries
16 entries across 16 versions & 1 rubygems