Sha256: 983d8cc6f069afcd4a57108ea52c914830d9c8ee2892f0e57a16cab7c9ad5b07
Contents?: true
Size: 642 Bytes
Versions: 19
Compression:
Stored size: 642 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 './window' module WXRuby3 class Director class SplitterWindow < Window def setup spec.rename_for_ruby('Init' => 'wxSplitterWindow::Initialize') # this reimplemented window base method need to be properly wrapped but # is missing from the XML docs spec.extend_interface('wxSplitterWindow', 'virtual void OnInternalIdle()') super end end # class SplitterWindow end # class Director end # module WXRuby3
Version data entries
19 entries across 19 versions & 1 rubygems