Sha256: 014945894ef648521e00db74452894fd0ccf3212e8f20b9f4a3319c08d7fc87f

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

###
# wxRuby3 wxWidgets interface director
# Copyright (c) M.J.N. Corino, The Netherlands
###

module WXRuby3

  class Director

    class HtmlCell < Director

      include Typemap::HtmlCell

      def setup
        super
        spec.items << 'wxHtmlLinkInfo' << 'wxHtmlContainerCell' << 'htmldefs.h'
        # the classes here are internal and for reference only
        # should never be derived from or instantiated in (Ruby) user code
        spec.disable_proxies
        spec.make_abstract 'wxHtmlCell'
        spec.make_abstract 'wxHtmlLinkInfo'
        spec.make_abstract 'wxHtmlContainerCell'
        spec.gc_as_untracked 'wxHtmlLinkInfo' # no tracking
        spec.ignore 'wxHtmlCell::Find'
        # not useful for wxRuby as we do not support customizing these
        spec.ignore 'wxHtmlCell::AdjustPagebreak',
                    'wxHtmlCell::Draw',
                    'wxHtmlCell::DrawInvisible',
                    'wxHtmlCell::Layout',
                    'wxHtmlCell::ProcessMouseClick'
      end
    end # class HtmlCell

  end # class Director

end # module WXRuby3

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wxruby3-0.9.0.pre.rc.3 rakelib/lib/director/html_cell.rb
wxruby3-0.9.0.pre.rc.2 rakelib/lib/director/html_cell.rb
wxruby3-0.9.0.pre.rc.1 rakelib/lib/director/html_cell.rb