Sha256: d080db2c7005cbd2740f115d7da8f0a7648d73fc958bba9223a7872b72cb5d63
Contents?: true
Size: 1.05 KB
Versions: 7
Compression:
Stored size: 1.05 KB
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # # Some parts are # Copyright 2004-2007, wxRuby development team # released under the MIT-like wxRuby2 license # 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.push(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.unshift(art_prov) end wx_delete = instance_method(:delete) define_method(:delete) do | art_prov | wx_delete.bind(self).call(art_prov) @__art_provs.delete(art_prov) end end end
Version data entries
7 entries across 7 versions & 1 rubygems