Sha256: 7a1f2ab444c63a7d99e4422d0b78b8a6817575b752f3b307651191e569fece3b
Contents?: true
Size: 758 Bytes
Versions: 8
Compression:
Stored size: 758 Bytes
Contents
# = WxSugar - Keyword Constructors Classes # Wx::HTML sub package for wxRuby3 # Copyright (c) M.J.N. Corino, The Netherlands # wxHtmlWindow - Control for displaying HTML Wx::define_keyword_ctors(Wx::HTML::HtmlWindow) do wx_ctor_params :id, :pos, :size, :style => Wx::HTML::HW_DEFAULT_STYLE wx_ctor_params :name => 'htmlWindow' end # wxHtmlListBox A listbox showing HTML content # wxListBox A list of strings for single or multiple selection Wx::define_keyword_ctors('ListBox') do wx_ctor_params :id, :pos, :size, :choices => [] wx_ctor_params :style wx_ctor_params :validator, :name => 'listBox' end Wx::define_keyword_ctors('HtmlListBox') do wx_ctor_params :id, :pos, :size, :style, :name => 'HtmlListBoxNameStr' end
Version data entries
8 entries across 8 versions & 1 rubygems