Sha256: 0a8a248eeea93e948031ec7498f3de05df0c0369194656a6d39db4c55d34571b

Contents?: true

Size: 873 Bytes

Versions: 8

Compression:

Stored size: 873 Bytes

Contents

# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.
# 
# Some parts are
# Copyright 2004-2007, wxRuby development team
# released under the MIT-like wxRuby2 license

# = WxSugar - Keyword Constructors Classes
# Wx::HTML sub package for wxRuby3


# 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
Wx::define_keyword_ctors(Wx::HTML::HtmlListBox) do
  wx_ctor_params :id, :pos, :size, :style, :name => 'HtmlListBox'
end

Wx::define_keyword_ctors(Wx::HTML::SimpleHtmlListBox) do
  wx_ctor_params :id, :pos, :size
  wx_ctor_params :choices => []
  wx_ctor_params :style, :validator, :name => 'SimpleHtmlListBox'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
wxruby3-0.9.8 lib/wx/html/keyword_defs.rb
wxruby3-0.9.7 lib/wx/html/keyword_defs.rb
wxruby3-0.9.5 lib/wx/html/keyword_defs.rb
wxruby3-0.9.4 lib/wx/html/keyword_defs.rb
wxruby3-0.9.3 lib/wx/html/keyword_defs.rb
wxruby3-0.9.2 lib/wx/html/keyword_defs.rb
wxruby3-0.9.1 lib/wx/html/keyword_defs.rb
wxruby3-0.9.0 lib/wx/html/keyword_defs.rb