Sha256: 93c39065f914f6cf95aa683e2be30ebc192f29a637c2b70c0338c4a259ff816a
Contents?: true
Size: 1.06 KB
Versions: 6
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_temporary '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
6 entries across 6 versions & 1 rubygems