Sha256: 378c4f578cfcbd72bb77207591d2a8670154eaae1b20eda84713b7b38a03c066

Contents?: true

Size: 896 Bytes

Versions: 3

Compression:

Stored size: 896 Bytes

Contents

###
# wxRuby3 wxWidgets interface director
# Copyright (c) M.J.N. Corino, The Netherlands
###

require_relative './ctrl_with_items'

module WXRuby3

  class Director

    class ListBox < ControlWithItems

      include Typemap::ArrayIntSelections

      def setup
        super
        setup_ctrl_with_items('wxListBox')
        spec.override_inheritance_chain('wxListBox',
                                        %w[wxControlWithItems
                                           wxControl
                                           wxWindow
                                           wxEvtHandler
                                           wxObject])
        spec.ignore('wxListBox::InsertItems(unsigned int,const wxString *,unsigned int)')
        spec.ignore('wxListBox::IsSorted') # provided by ControlWithItems
      end

    end # class ListBox

  end # class Director

end # module WXRuby3

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wxruby3-0.9.0.pre.rc.3 rakelib/lib/director/listbox.rb
wxruby3-0.9.0.pre.rc.2 rakelib/lib/director/listbox.rb
wxruby3-0.9.0.pre.rc.1 rakelib/lib/director/listbox.rb