Sha256: 8f3af9f4053e778184c887a37c3a22b40331f12b20e4b0b25676a8d8bf931bd8

Contents?: true

Size: 872 Bytes

Versions: 5

Compression:

Stored size: 872 Bytes

Contents

# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.

# Advanced User Interface Notebook - draggable panes etc

class Wx::AUI::AuiNotebook

  # Before wxWidgets 3.3 the AUI manager of this control would prevent
  # WindowDestroyEvent propagation so we 'patch' in a std event handler
  # that designates the event skipped.
  if Wx::WXWIDGETS_VERSION < '3.3'
    wx_initialize = instance_method :initialize
    define_method :initialize do |*args|
      wx_initialize.bind(self).call(*args)
      evt_window_destroy { |evt| evt.skip }
    end
  end

  # Convenience method for iterating pages
  def each_page
    if block_given?
      0.upto(get_page_count - 1) do | i |
        yield get_page(i)
      end
    else
      ::Enumerator.new { |y| each_page { |pg| y << pg } }
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wxruby3-0.9.7-x64-mingw-ucrt lib/wx/aui/auinotebook.rb
wxruby3-0.9.5-x64-mingw-ucrt lib/wx/aui/auinotebook.rb
wxruby3-0.9.4-x64-mingw-ucrt lib/wx/aui/auinotebook.rb
wxruby3-0.9.3-x64-mingw-ucrt lib/wx/aui/auinotebook.rb
wxruby3-0.9.2-x64-mingw-ucrt lib/wx/aui/auinotebook.rb