Sha256: 3f8f0d62db6afd4ad1fbde088127b33fe266d563b0979de5cb1da85eda830c36

Contents?: true

Size: 775 Bytes

Versions: 7

Compression:

Stored size: 775 Bytes

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

# Base class for providing context-sensitive help. The main definition
# is in SWIG/C++

class Wx::HelpProvider
  class << self
    # We need to protect the currently set HelpProvider from GC as it is a
    # SWIG Director; it can't be reaped and re-wrapped later. The
    # easiest way is to make the currently set one an instance variable
    # of this class
    wx_set = instance_method :set
    define_method(:set) do | help_provider |
      wx_set.bind(self).call(help_provider)
      @__hp__ = help_provider
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wxruby3-0.9.7-x64-mingw-ucrt lib/wx/core/helpprovider.rb
wxruby3-0.9.5-x64-mingw-ucrt lib/wx/core/helpprovider.rb
wxruby3-0.9.4-x64-mingw-ucrt lib/wx/core/helpprovider.rb
wxruby3-0.9.3-x64-mingw-ucrt lib/wx/core/helpprovider.rb
wxruby3-0.9.2-x64-mingw-ucrt lib/wx/core/helpprovider.rb
wxruby3-0.9.1-x64-mingw-ucrt lib/wx/core/helpprovider.rb
wxruby3-0.9.0-x64-mingw-ucrt lib/wx/core/helpprovider.rb