Sha256: 4eaa90111478da7bc126e48d348136de9cb8deeac08930ca26dd322e1d00400d

Contents?: true

Size: 1.35 KB

Versions: 20

Compression:

Stored size: 1.35 KB

Contents

# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.

###
# wxRuby3 wxWidgets interface director
###

module WXRuby3

  class Director

    class HtmlCell < Director

      include Typemap::HtmlCell

      def setup
        super
        spec.items << 'wxHtmlLinkInfo' << 'wxHtmlContainerCell' << 'wxHtmlSelection' << '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',
                    'wxHtmlCell::GetMouseCursor',
                    'wxHtmlCell::GetMouseCursorAt'
        spec.ignore 'wxHtmlContainerCell::SetAlign',
                    'wxHtmlContainerCell::SetWidthFloat'
      end
    end # class HtmlCell

  end # class Director

end # module WXRuby3

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
wxruby3-1.5.0 rakelib/lib/director/html_cell.rb
wxruby3-1.4.2 rakelib/lib/director/html_cell.rb
wxruby3-1.4.1 rakelib/lib/director/html_cell.rb
wxruby3-1.4.0 rakelib/lib/director/html_cell.rb
wxruby3-1.3.1 rakelib/lib/director/html_cell.rb
wxruby3-1.3.0 rakelib/lib/director/html_cell.rb
wxruby3-1.2.1 rakelib/lib/director/html_cell.rb
wxruby3-1.2.0 rakelib/lib/director/html_cell.rb
wxruby3-1.1.2 rakelib/lib/director/html_cell.rb
wxruby3-1.1.1 rakelib/lib/director/html_cell.rb
wxruby3-1.1.0 rakelib/lib/director/html_cell.rb
wxruby3-1.0.1 rakelib/lib/director/html_cell.rb
wxruby3-0.9.8 rakelib/lib/director/html_cell.rb
wxruby3-0.9.7 rakelib/lib/director/html_cell.rb
wxruby3-0.9.5 rakelib/lib/director/html_cell.rb
wxruby3-0.9.4 rakelib/lib/director/html_cell.rb
wxruby3-0.9.3 rakelib/lib/director/html_cell.rb
wxruby3-0.9.2 rakelib/lib/director/html_cell.rb
wxruby3-0.9.1 rakelib/lib/director/html_cell.rb
wxruby3-0.9.0 rakelib/lib/director/html_cell.rb