Sha256: 897280375e5720bab7597412d0766598ed567938efac46d0e89f1c84f1af0a20
Contents?: true
Size: 739 Bytes
Versions: 21
Compression:
Stored size: 739 Bytes
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. ### # wxRuby3 wxWidgets interface director ### require_relative './event' module WXRuby3 class Director class SplitterEvent < Event def setup super # because of error in XML docs spec.ignore('wxSplitterEvent::GetOldSize', ignore_doc: false) # add these by hand here spec.extend_interface('wxSplitterEvent', 'int GetOldSize() const', 'int GetNewSize() const') spec.do_not_generate(:variables, :enums, :defines, :functions) end end # class SplitterEvent end # class Director end # module WXRuby3
Version data entries
21 entries across 21 versions & 1 rubygems