Sha256: f9ce422e92d8ad8a9c4e230b784f8a9c20075253c508dceb20e46e7b80ecc1b6
Contents?: true
Size: 955 Bytes
Versions: 21
Compression:
Stored size: 955 Bytes
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. ### # wxRuby3 wxWidgets interface director ### 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
21 entries across 21 versions & 1 rubygems