Sha256: b041eeacb0ced2e5f569641867c58e3720face9b0dd8d6141c49cbd988dfb665
Contents?: true
Size: 1.14 KB
Versions: 20
Compression:
Stored size: 1.14 KB
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. ### # wxRuby3 wxWidgets interface director ### require_relative './window' module WXRuby3 class Director class WizardPage < Window def setup super if spec.module_name == 'wxWizardPage' spec.ignore 'wxWizardPage::wxWizardPage(wxWizard * ,const wxBitmapBundle &)' elsif spec.module_name == 'wxWizardPageSimple' spec.ignore 'wxWizardPageSimple::Chain(wxWizardPageSimple *, wxWizardPageSimple *)' # overrides not documented in XML docs spec.extend_interface 'wxWizardPageSimple', 'virtual wxWizardPage * GetNext() const', 'virtual wxWizardPage * GetPrev() const' end spec.do_not_generate(:variables, :enums, :defines, :functions) # handled; can be suppressed spec.suppress_warning(473, "#{spec.module_name}::GetNext", "#{spec.module_name}::GetPrev") end end # class WizardPage end # class Director end # module WXRuby3
Version data entries
20 entries across 20 versions & 1 rubygems