Sha256: 9673acc5902a4615116cadaeaa68ffe67ea63f13446be88d32bc05994f85e9f0
Contents?: true
Size: 736 Bytes
Versions: 6
Compression:
Stored size: 736 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
6 entries across 6 versions & 1 rubygems