Sha256: 08a69bf91bb42f28c293437dce19759f73acb6c48ad4373ffeac2f86df033723
Contents?: true
Size: 817 Bytes
Versions: 4
Compression:
Stored size: 817 Bytes
Contents
# Class which can supply icons and bitmaps class Wx::ArtProvider # Keep a note of supplied ArtProviders to prevent them being GC'd @__art_provs = [] class << self wx_push_back = instance_method(:push_back) define_method(:push_back) do | art_prov | wx_push_back.bind(self).call(art_prov) @__art_provs.unshift(art_prov) end wx_pop = instance_method(:pop) define_method(:pop) do wx_pop.bind(self).call @__art_provs.pop end wx_push = instance_method(:push) define_method(:push) do | art_prov | wx_push.bind(self).call(art_prov) @__art_provs.push(art_prov) end wx_delete = instance_method(:delete) define_method(:delete) do | art_prov | wx_push.bind(self).call(art_prov) @__art_provs.delete(art_prov) end end end
Version data entries
4 entries across 4 versions & 1 rubygems