Sha256: 720eafc2fe398f6fe585dbebd59c87d15c85da00762eade24f0ef35af557f4a5
Contents?: true
Size: 381 Bytes
Versions: 52
Compression:
Stored size: 381 Bytes
Contents
# Emulates the wxWidgets BusyCursor class, by providing a scope within # which a busy cursor will be shown class Wx::BusyCursor # Only one class method, optionally accepting a cursor that should be # shown, defaulting to an hour glass cursor. def self.busy(cursor = Wx::HOURGLASS_CURSOR) Wx::begin_busy_cursor(cursor) yield ensure Wx::end_busy_cursor end end
Version data entries
52 entries across 52 versions & 4 rubygems