Sha256: f56d8ac908d6e50ed33a2969990a7bb853d1c06623f06232429317cdd5985ee1
Contents?: true
Size: 758 Bytes
Versions: 9
Compression:
Stored size: 758 Bytes
Contents
### # wxRuby3 wxWidgets interface director # Copyright (c) M.J.N. Corino, The Netherlands ### require_relative './window' module WXRuby3 class Director class RibbonControl < Window def setup super # type mapping for GetArtProvider return ref spec.map 'wxRibbonArtProvider*' => 'Wx::RBN::RibbonArtProvider' do add_header_code 'extern VALUE wxRuby_WrapWxRibbonArtProviderInRuby(const wxRibbonArtProvider *wx_rap, int own);' # wrap (do not own) map_out code: '$result = wxRuby_WrapWxRibbonArtProviderInRuby($1, 0);' end spec.suppress_warning(473, 'wxRibbonControl::GetAncestorRibbonBar') end end # class RibbonControl end # class Director end # module WXRuby3
Version data entries
9 entries across 9 versions & 1 rubygems